mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2025-06-29 20:20:41 +00:00
Move system-wide scripts to systemwide folder from home
This commit is contained in:
parent
39c572c04a
commit
cf475c580e
3 changed files with 0 additions and 0 deletions
|
@ -1,28 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$EUID" -ne 0 ]; then
|
||||
echo "Must be ran as root"
|
||||
exit
|
||||
fi
|
||||
|
||||
# Make sure the partition is mounted according to fstab
|
||||
mount /mnt/arch
|
||||
|
||||
# Mount necessary directories for chroot to be possible
|
||||
mount --types proc /proc /mnt/arch/proc
|
||||
mount --rbind /sys /mnt/arch/sys
|
||||
mount --make-rslave /mnt/arch/sys
|
||||
mount --rbind /dev /mnt/arch/dev
|
||||
mount --make-rslave /mnt/arch/dev
|
||||
|
||||
# Chroot with bash shell
|
||||
chroot /mnt/arch /bin/bash
|
||||
|
||||
# Unmount recursively mounted directories
|
||||
umount -l /mnt/arch/dev{/shm,/pts,}
|
||||
umount -R /mnt/arch
|
||||
|
||||
# Remount partition accordingly to fstab
|
||||
# (the above umountings will unmount gentoo completely,
|
||||
# which means that remounting is necessary)
|
||||
mount /mnt/arch
|
Loading…
Add table
Add a link
Reference in a new issue