AUFS-Creation
#!/bin/sh -e
#
# /etc/initramfs-tools/scripts/init-bottom/rootaufs
#
#
# Thank you Voyage Linux, http://voyage.hk/
# Env. variables used:
# ROOT : /dev/disk/by-uuid/nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn
# rootmnt : /root
if [ "$1" = "prereqs" ]; then
exit 0
fi
for x in $(cat /proc/cmdline); do
case "$x" in
aufs=*) aufs=${x#aufs=} ;;
esac
done
if [ "$aufs" != "tmpfs" ]; then
# Nothing to do
exit 0
fi
if ! modprobe -q aufs; then
echo "No aufs module, ABORT!"
exit 0
fi
# Make the mount points
mkdir /aufs /rw /ro
# Mount the temp file system and move the real root out of the way
mount -t tmpfs aufs-tmpfs /rw
mount --move ${rootmnt} /ro
mount -t aufs -o dirs=/rw:/ro=ro aufs /aufs
# Make mount points on aufs file system
mkdir -p /aufs/ro /aufs/rw
# Move the real root to /ro and tmpfs to /rw
mount --move /ro /aufs/ro
mount --move /rw /aufs/rw
# Construct a fake fstab for the tmpfs. Start with the original
# and remove the root entry; construct an entry for the the aufs root.
egrep -v ' / | swap |tmpfs' /aufs/ro/etc/fstab >/aufs/etc/fstab
ROOTENT=$(grep ${ROOT} /proc/mounts | awk '{printf "%s %s
", $3, $4}')
echo ${ROOT} /ro $ROOTENT 0 0 >>/aufs/etc/fstab
mount --move /aufs ${rootmnt}
exit 0
chmod 755 /etc/initramfs-tools/scripts/init-bottom/rootaufs
vim /etc/initramfs-tools/modules
add
aufs
to the last line
vim /etc/default/grub
add aufs=tmpfs
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash aufs=tmpfs"
uncomment recovery mode
GRUB_DISABLE_RECOVERY="true"
vim /etc/grub.d/00_header
edit timeout = 0 (from -1)
update files
invoke-rc.d apparmor stop
update-rc.d -f apparmor remove
apt-get purge apparmor
update-initramfs -u
update-grub
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
용감한 바로 가기 및 우분투 응용 프로그램안녕하세요 여러분, 이 기사에서는 모든 사이트에서 pwa를 생성하고 실행기 응용 프로그램으로 추가하는 방법을 설명하고 싶습니다. 일부 웹사이트는 PWA로 설치를 허용하지 않지만 유사한 애플리케이션을 원합니다. 1. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.