similar to: Need help in "repairing" the booting of my Linux 4 server

Displaying 20 results from an estimated 3000 matches similar to: "Need help in "repairing" the booting of my Linux 4 server"

2011 Apr 22
8
Patches to enable MTUs >1500 in el5.6 ready for testing.
Hi all, With help from others, I''ve been able to get Olaf''s patch for enabling MTUs >1500 for vifX.y and tapZ devices working. I''ve been able to boot dom0, launch domU and live-migrate without having the bridge''s MTU degrade at any time. Would the Xen RPM maintainers (and others) mind taking a look at the following patches? Kernel part:
2010 Nov 18
46
[HOWTO] Running Xen 4.0 host (dom0) with Redhat Enterprise Linux 6 (RHEL6)
Hello, If you''re interested in running Xen 4.0 hypervisor/dom0 on RHEL6, take a look at here: http://wiki.xen.org/xenwiki/RHEL6Xen4Tutorial It explains steps needed to rebuild Xen 4.0.1 src.rpm from Fedora on RHEL6, and how to fetch dom0 capable 2.6.32.x kernel from upstream git repository. It also shows how to get libvirt/virt-manager working with Xen on RHEL6. Hopefully it helps :)
2010 Nov 18
46
[HOWTO] Running Xen 4.0 host (dom0) with Redhat Enterprise Linux 6 (RHEL6)
Hello, If you''re interested in running Xen 4.0 hypervisor/dom0 on RHEL6, take a look at here: http://wiki.xen.org/xenwiki/RHEL6Xen4Tutorial It explains steps needed to rebuild Xen 4.0.1 src.rpm from Fedora on RHEL6, and how to fetch dom0 capable 2.6.32.x kernel from upstream git repository. It also shows how to get libvirt/virt-manager working with Xen on RHEL6. Hopefully it helps :)
2012 Jan 03
7
New Tutorial - RHCS + DRBD + KVM; 2-Node HA on EL6
Hi all, I'm happy to announce a new tutorial! https://alteeve.com/w/2-Node_Red_Hat_KVM_Cluster_Tutorial This tutorial walks a user through the entire process of building a 2-Node cluster for making KVM virtual machines highly available. It uses Red Hat Cluster services v3 and DRBD 8.3.12. It is written such that you can use entirely free or fully Red Hat supported environments.
2012 Jan 03
7
New Tutorial - RHCS + DRBD + KVM; 2-Node HA on EL6
Hi all, I'm happy to announce a new tutorial! https://alteeve.com/w/2-Node_Red_Hat_KVM_Cluster_Tutorial This tutorial walks a user through the entire process of building a 2-Node cluster for making KVM virtual machines highly available. It uses Red Hat Cluster services v3 and DRBD 8.3.12. It is written such that you can use entirely free or fully Red Hat supported environments.
2011 May 07
5
How to add a HD to a LVM
I have connected a HD that was a prior system drive (Centos 4.8) and I am not sure of the command line procedures to find out if it is recognized (I believe it is since it present in the GUI), delete all data on it and finally add it to the LVM. I would like to use it as a backup data drive. Todd -- Ariste Software Petaluma, CA 94952 http://www.aristesoftware.com
2011 Jun 01
8
Inter VM communication
Hi: I have two HVM domU ubuntu 10.04 Lts and Window XP running. I have assigned PCIe device to each of this domU. I would like to communicate these two VM. Can anyone give me some idea on how to do. I did some research on IVC but unable to get answer. Anything will be appreciated. Anju _______________________________________________ Xen-users mailing list
2009 Aug 14
1
Embed R, and provide a function to user scripts
Hello, I'm not sure how to go about this. Suppose I have a function SEXP boo(SEXP x){ //do something } Also, I have an executable which embeds R in itself. I would like to provide a R function to user code to call that calls 'boo' e.g ##user supplied expression that is given to me x<-1 boo(x) One way is to create a library with function boo that performs .Call to boo, but is
2017 Oct 25
1
Finding the entry point function in a LLVM IR
Thank You David and Mats for the reply, The reason I need to know that main is the entry point is as follows : I have a dead code elimination pass that removes the function call for boo. boo was initially called from the main function , but since the return in the main function has no dependency on boo, boo function call is removed. Now I want to remove the function definition of the functions
2008 May 29
2
creating library
Hi, I'm able to create a library with R CMD INSTALL cmd, etc... I'm just wondering.. is it possible that when the user says library(boo), it runs some initialization code? I have a dumb R file that is: print(2) boo <- function(x){} when I R CMD INSTALL the library, I'm able to see 2 in my unix console.. but when I do library(boo) in R afterwards.. I don't see
2010 Jun 22
3
OT: Recommendation for a good Internationalized terminal software
Hi all, We've got server-based application that runs on CentOS. Until now, most of our customer's end-users have accessed the application using either PuTTY or Teraterm. I was asked yesterday to try and find internationalized add ons or alternatives for our new Asian customers (Japan, Korea and China atm). I figured if anyone would be able to recommend terminal emulation
2002 Dec 05
1
writing to gzfile: segmentation fault (PR#2347)
Full_Name: Vadim Ogranovich Version: Version 1.6.0 (2002-10-01) OS: Red Hat 7.1 Submission from: (NULL) (209.99.241.1) The following sequence of commands crashes my R session. The first weirdness happens after the second command that appears not to change the "foo.gz" file, no error generated. > con <- gzfile("foo.gz", open="w"); cat("goo\n",
2009 Jun 22
2
negation in grep
Does anybody know how to negate a string in a grep command, i.e., what I need is to return only strings that do NOT contain a second string anywhere in the entire string. for txt <- c("boo","goo","doob","foo","boofoo") I need a grep command that returns strings with "oo" except when "b" is present anywhere. I know that
2011 Jun 13
2
Newbie Trying XEN with CENTOS 5.6 dom0
Hi All, After digging through the xen wiki, the recommendation I have found so far for first time virtualization testing of XEN is to use Centos. Do I get to choose which XEN hypervisor version I want to run?...e.g if I want the latest (XEN 4.1) At the moment I am using a liveCD - feeling my way around Linux environment (newbie here as well)... Any pointers to set me in the right direction
2007 Feb 13
2
Matrix manipulation
Hi, let's say I have this A = matrix(c(1, 2, 4), nrow=1) colnames(A)=c("YOO1", "YOO2", "YOO3") # ie # YOO1 YOO2 YOO3 #[1,] 1 2 4 HELLO <- NULL HELLO$YOO1="BOO" HELLO$YOO2="BOO" HELLO$YOO3="HOO" and I want a matrix that will sum my categorization.. how can I do it efficiently without any loop? #ie BOO HOO
2011 Mar 24
2
OT LVM question
I've got a situation here where my LVM is showing the following problem: Found duplicate PV xxxxxxxxxxxxxxxxxxxxxx: using /dev/sdb2 not /dev/sda2 Not sure what causes this and I really don't have a clue as to what the consequences are when seeing this or how to fix it. Google just confuses me with any suggestions. Can anyone offer any help, please? Steve Campbell
2010 Nov 16
3
upgrading Centos-Xen when version 6 comes along
I am curious what is the best way to upgrade my dom0 and domUs to V.6 (currently 5) when it releases. Any experience or docs on this? Dave -- "It is no measure of health to be well adjusted to a profoundly sick society." Krishnamurti
2010 Nov 22
4
Novell sale news?
Is anyone following the news of the Novell sale and some mysterious 'intellectual property assets' that were transferred to a holding company controlled by Microsoft? -- Les Mikesell lesmikesell at gmail.com
2011 Jan 19
2
Is there a difference between RHEL 6 and 5.6?
I have seen over the past few months subjects on RHEL 6 and RHEL 5.6 Are these two different builds for Centos to chase or one in the same?
2011 Mar 30
2
Too Much Traffic
I'm amazed at the postings. Many of the solutions to questions posted can be found on GOOGLE. Also UNIX, AIX, HP-UX, and Linux all come with man pages. o Before posting try reading the relevant man pages. o Research your issue with a search engine . -- Gene Brandt <brandtg at bellsouth.net> -------------- next part -------------- An HTML attachment was scrubbed... URL: