Last active
February 6, 2023 11:52
-
-
Save MahefaAbel/5e74241d64f5f2f4917311379cef632c to your computer and use it in GitHub Desktop.
Chroot Predator + Bootable manipulation Grub + Graphic Driver
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mount /dev/sdb5 /mnt | |
mount --bind /dev /mnt/dev | |
mount --bind /dev/pts /mnt/dev/pts | |
mount --bind /boot /mnt/boot | |
mount -t proc /proc /mnt/proc | |
mount -t sysfs /sys /mnt/sys | |
for dir in proc dev sys etc bin sbin var usr lib lib64 tmp; do | |
# mkdir /mnt/$dir && \ | |
mount --bind /$dir /mnt/$dir | |
done | |
chroot /mnt /bin/bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Graphics Drivers issue
Issue Symptom
nvidia-settings
Fixes
sudo update-initramfs -u
sudo apt install --reinstall nvidia-driver-525
Utils