This short article shows how to use a LiveCD to take over / repair an installed system. It can be used the same way as described in https://forums.opensuse.org/content/...vd-rescue.html , The procedure will: Boot from LiveCD, allow you to mount your existing openSUSE installation that does not work and execute fixes on it as if it was the active system.
- Download a LiveCD and burn it to disc or USB medium. Note: if you run 32bit openSUSE, use a 32bit LiveCD, if you run 64bit openSUSE, use a 64bit LIveCD.
- Boot the system from the CD / USB disk
- Open a terminal window, and invoke the following commands
Code:
su -
Next, mount the root partition, replace X by the character, # by the numeric of your the device entry that holds your root partition ( example " /dev/sda2 "
Code:
mount /dev/sdX# /mnt
Code:
mount --bind /dev /mnt/dev
Code:
chroot /mnt mount /proc mount /sys
See also https://forums.opensuse.org/content/...vd-rescue.html
Message