Swap-Partition unter NI
Swap-Partition unter NI
Hallo, ich habe auf einer anderen Partition im Multiboot das Image von Dboxoldie am laufen. Dabei habe ich die Swappartition mit eingerichtet. Kann diese auch unter NI mit eigebunden und genutzt werden, und wenn ja, wie? Danke ! Clausi
- Janus
- NI - VIP
- Beiträge: 1158
- Registriert: Di 12. Apr 2016, 19:41
- Box: HD1, Zee, Neo, Tank, HD51, Duo4K
- Has thanked: 5 times
- Been thanked: 5 times
Re: Swap-Partition unter NI
Script: /etc/init.d/mount-ext-var
In /etc/init.d
z.B. per
ln -sf mount-ext-var S60mount-ext-var
verlinken.
Code: Alles auswählen
#!/bin/sh
case $1 in
start)
# try to mount previously created separate flash var partition...
if [ ! -e /var/etc/.no_ext_var_mount ]; then
mkdir /swap
chmod 777 /swap
echo " try to mount /dev/mmcblk0p11 to /swap ..."
/bin/mount -t ext4 /dev/mmcblk0p11 /swap
else
echo " /var/etc/.no_ext_var_mount detected - not mounting separate flash var partition ..."
fi
;;
esac
z.B. per
ln -sf mount-ext-var S60mount-ext-var
verlinken.