Chroot: Difference between revisions

From VVCWiki
Jump to navigationJump to search
mNo edit summary
mNo edit summary
 
Line 9: Line 9:
chroot /mnt/sysimage
chroot /mnt/sysimage
</source>
</source>
[[Category:Linux]]

Latest revision as of 10:05, 20 February 2017

mkdir /mnt/sysimage
mount /dev/vg0/root /mnt/sysimage
mount /dev/vg0/var /mnt/sysimage/var
mount /dev/sda1 /mnt/sysimage/boot
mount -t proc none /mnt/sysimage/proc
mount --rbind /sys /mnt/sysimage/sys
mount --rbind /dev /mnt/sysimage/dev
chroot /mnt/sysimage