Displaying 20 results from an estimated 56 matches for "rootdev".
Did you mean:
root_dev
2017 Jun 01
1
[PATCH] v2v: tell v2v the real root device to mkinitrd
From: Pino Toscano <ptoscano at redhat.com>
Complementary fix of commit 2d25872df3619a3077006ad0f91c029602db6780.
On SLES 11 SP4 with kdump enabled mkinitrd calls mkdumprd which calls
mkinitrd, but mkdumprd doesn't have any clue of the root device.
Call mkinitrd with rootdev environment variable to tell them all
what device to use as root.
Tested-By: C?dric Bosdonnat <cbosdonnat at suse.com>
---
v2v/convert_linux.ml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml
index f8dfa00d7..42a19947b 10064...
2016 Feb 18
2
CentOS 7, Xeon CPUs, not booting
This is happening on anything other than plain vanilla Dell servers. One
R730, with dual Tesla cards, one R420, with a fibre card for a RAID
device, it never switches root. All these systems have Xeons, not AMD
CPUs.
We've had this with every one of the 327 kernels. In addition, it seems to
happen also with the 229.20.1; the 229.14.1 has no such problem.
>From the rdsosreport:
starting
2004 Nov 18
0
implementing a "loop" using by(x,x$factor,FUN)
...n to help specify the initial parameter values passed to "likfit" to
ensure convergence.
Although not the most elegant solution, the code works ... I just want to
re-code it to avoid using the "for" loop.
Any help would be greatly appreciated.
This is what I've got ....
RootDev <- 600
splits <- NULL
for (cutpoint in cutpoints) {
LRGdata <- split(gdata, gdata[,4] <= cutpoint)
vgrmL <- variog(as.geodata(LRGdata$"TRUE"), covar.col=covcol))
vgrmR <- variog(as.geodata(LRGdata$"FALSE"), covar.col=covcol))
mlL<- likfit(as.g...
2016 Feb 18
0
CentOS 7, Xeon CPUs, not booting
...he rule would be
disk/by-label// -- with two trailing slashes, which (perhaps) gets
interpreted not as one slash (like cd might do) by as "/x2f".
That's the end of random thought #1.
The second is like it:
A local C7 machine has this root entry in /etc/fstab:
/dev/mapper/vg00-rootdev / xfs defaults 0 0
When I search my system logs for messages like the ones in your
original post, I see
systemd: Found device /dev/mapper/vg00-rootdev.
systemd: Starting File System Check on /dev/mapper/vg00-rootdev...
It's only after that's complete that I get device-specifi...
2016 Feb 18
2
CentOS 7, Xeon CPUs, not booting, [SOLVED], bug filed
...h two trailing slashes, which (perhaps) gets
> interpreted not as one slash (like cd might do) by as "/x2f".
>
> That's the end of random thought #1.
>
> The second is like it:
>
> A local C7 machine has this root entry in /etc/fstab:
>
> /dev/mapper/vg00-rootdev / xfs defaults 0 0
>
> When I search my system logs for messages like the ones in your
> original post, I see
>
> systemd: Found device /dev/mapper/vg00-rootdev.
> systemd: Starting File System Check on /dev/mapper/vg00-rootdev...
>
> It's only after that'...
2017 Jul 17
0
[PATCH] v2v: Don't hang when rebuilding SUSE kdump initrd (RHBZ#1465849).
The ‘vmware-uninstall-tools.pl’ script tries to rebuild the initrd.
On SUSE, if kdump initrd has been enabled, this hangs because the
‘mkdumprd’ doesn't know what root device to use. Fix that by setting
the ‘rootdev’ environment variable.
---
v2v/convert_linux.ml | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml
index c34bf3e91..2fa9bfa51 100644
--- a/v2v/convert_linux.ml
+++ b/v2v/convert_linux.ml
@@ -304,7 +304,12 @@ let rec convert (g : G....
2005 Oct 17
0
Centos 4.1 Boot Problem on ML570 with Compag 5300 Storage Array Raid Controller
...me error!
So I dug a little, and found that putting some comments
in /etc/rc.d/rc.sysinit would circumvent *the error* and allow the box
to boot.
Here are the lines - (around line 375)
if [ "${RHGB_STARTED}" != "0" -a -w /etc/rhgb/temp/rhgb-console ]; then
fsck -T -a $rootdev $fsckoptions > /etc/rhgb/temp/rhgb-console
else
initlog -c "fsck -T -a $rootdev $fsckoptions"
fi
Here are the grub.conf boot settings:
title CentOS (2.6.9-22.ELsmp)
root (hd0,0)
kernel /vmlinuz-2.6.9-22.ELsmp ro root=LABEL=/ rhgb quiet
initrd /initrd-2....
2007 Sep 15
9
Boot Problem with XEN 3.1.
Hi to all.
I''m installed XEN3.1 correctly but I''m some problem to start it. XEN
start but I received this message:
VFS: Cannot open root device "hda5" or unknown-block(0,0)
Please append a correct "root=" boot option
Kernel panic - not syncing: VFS: Unable to mount root fs on
unknown-block(0,0)
This is strange because my grub is configured like this:
2018 Nov 14
1
[PATCH] test-data: Allow tests to be run when Btrfs is not available.
...g = Sys::Guestfs->new ();
+$g->add_drive ("/dev/null");
+$g->launch ();
+my $btrfs_available = $g->feature_available (["btrfs"]);
+$g->close ();
+
+my @images;
+$g = Sys::Guestfs->new ();
my $bootdev;
@@ -122,7 +129,17 @@ EOF
init_lvm_root ('/dev/md/rootdev');
}
-elsif ($ENV{LAYOUT} eq 'btrfs') {
+elsif ($ENV{LAYOUT} eq 'btrfs' && !$btrfs_available) {
+ # Btrfs not available, create an empty image.
+ push (@images, "fedora-btrfs.img");
+
+ unlink ("fedora-btrfs.img");
+ open (my $img, '>...
2013 Feb 12
7
Remaining btrfs patches
[PATCH 1/7] mount: Add mount_vfs_nochroot
This is significantly reworked from before. umount is gone as
discussed, and variable motion is minimised.
[PATCH 2/7] btrfs: Update btrfs_subvolume_list to take
Already provisionally ACKed. Previous comment was that cleanup could
be tidier. I looked into creating a new cleanup function for fs_buf,
but it isn't possible (or simple, anyway) in this
2018 Oct 04
3
[PATCH 0/2] v2v: uninstall VMware tools on all Linux guests
Hi,
this patch series attempt to uninstall VMware tools on all the Linux
guests, and reduce the uninstallation time needed in some cases:
- v2v tries to workaround the slowest part of the tarball-installed
VMware tools
- v2v uninstalls the open source VMware tools (open-vm-tools)
Thanks,
Pino Toscano (2):
v2v: linux: remove open-vm-tools packages
v2v: linux: try to trick
2011 Nov 23
8
[PATCH 0/8] Add MD inspection support to libguestfs
This series fixes inspection in the case that fstab contains references to md
devices. I've made a few changes since the previous posting, which I've
summarised below.
[PATCH 1/8] build: Create an MD variant of the dummy Fedora image
I've double checked that no timestamp is required in the Makefile. The script
will not run a second time to build fedora-md2.img.
[PATCH 2/8] build:
2018 Oct 04
0
[PATCH 2/2] v2v: linux: try to trick vmware-uninstall-tools.pl
...locations "remove_answer RESTORE_RAMDISK_KERNELS\n";
+ g#write_append locations "remove_answer RESTORE_RAMDISK_ONECALL\n";
+ );
if family = `SUSE_family then
ignore (g#command [| "/usr/bin/env";
"rootdev=" ^ inspect.i_root;
--
2.17.1
2008 Aug 22
0
boot device != zfs root pool device : Is it possible?
I''d like to experiment with storing the boot archive
on a compact flash that emulates an IDE hard disk,
but then have the root pool on a 4-disk raidz set.
(I''m using OpenSolaris)
Anyone have suggestions on how to go about this?
Will I need to set rootdev in /etc/system to tell the
kernel the root device is different from the boot dev?
Then what about "update-archive" and friends?
They''ll need to know where to put the archive,
or get the boot device mounted on /boot or
whatever.
Ideas? Pointers?
Thanks,
Gordon
This message...
2006 Apr 11
1
mkrootdev utility
The attached patch breaks out the /dev/root device node creation from
do_mounts, placing it in it's own utility (called mkrootdev).
This is worthwhile, as certain setups will need the device node there
to run fstype and load a proper module (or other things).
No, it does not currently configure raid devices.... I didn't know if
that made sense in there or not....
Let me know what you think - most of the code is just ve...
2007 Aug 28
1
PV domain on NAS
Hi All,
Could anybody tell me the creating of pv domain on nas. I mean to say that
root file sytem should be at nas location.
Useful links will be most welcome.
Thanks,
Trilok
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2019 Jul 11
2
[PATCH v3 0/2] v2v: Copy static IP address information over for Windows guests
Patch v2 was here:
https://www.redhat.com/archives/libguestfs/2019-April/thread.html#00114
There's no change here except that I've rebased it against the latest
master branch and retested. There was a comment by Pino
(https://www.redhat.com/archives/libguestfs/2019-April/msg00117.html)
which isn't incorporated into this patch.
Rich.
2009 Jan 22
3
Failure to boot from zfs on Sun v880
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi.
I am trying to move the root volume from an existing svm mirror to a zfs
root. The machine is a Sun V880 (SPARC) running nv_96, with OBP version
4.22.34 which is AFAICT the latest.
The svm mirror was constructed as follows
/
d4 m 18GB d14
d14 s 35GB c1t0d0s0
d24 s 35GB c1t1d0s0
swap
d3
2014 Jan 16
0
[PATCH net-next v3 4/5] net-sysfs: add support for device-specific rx queue sysfs attributes
...dev, unsigned int txq)
}
EXPORT_SYMBOL(netif_set_real_num_tx_queues);
-#ifdef CONFIG_RPS
+#ifdef CONFIG_SYSFS
/**
* netif_set_real_num_rx_queues - set actual number of RX queues used
* @dev: Network device
@@ -5727,7 +5727,7 @@ void netif_stacked_transfer_operstate(const struct net_device *rootdev,
}
EXPORT_SYMBOL(netif_stacked_transfer_operstate);
-#ifdef CONFIG_RPS
+#ifdef CONFIG_SYSFS
static int netif_alloc_rx_queues(struct net_device *dev)
{
unsigned int i, count = dev->num_rx_queues;
@@ -6272,7 +6272,7 @@ struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,...
2014 Jan 16
0
[PATCH net-next v4 4/6] net-sysfs: add support for device-specific rx queue sysfs attributes
...dev, unsigned int txq)
}
EXPORT_SYMBOL(netif_set_real_num_tx_queues);
-#ifdef CONFIG_RPS
+#ifdef CONFIG_SYSFS
/**
* netif_set_real_num_rx_queues - set actual number of RX queues used
* @dev: Network device
@@ -5727,7 +5727,7 @@ void netif_stacked_transfer_operstate(const struct net_device *rootdev,
}
EXPORT_SYMBOL(netif_stacked_transfer_operstate);
-#ifdef CONFIG_RPS
+#ifdef CONFIG_SYSFS
static int netif_alloc_rx_queues(struct net_device *dev)
{
unsigned int i, count = dev->num_rx_queues;
@@ -6272,7 +6272,7 @@ struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,...