You are not logged in.
Pages: 1
I'm looking at the /etc/fstab or /etc/mtab section in the scratchbook and there seems to be an error. Looks like ash is being called from the host. There is an oddly place forward slash one the next line as well as all of the lines in the Keyboard section.
Is this an error or am I misunderstand the code?
[c]# chroot . /bin/ash
/# ln -s /proc/mounts /etc/mtab[/c]
[c]/# mkdir /usr/share/kmap
/# /bin/busybox dumpkmap > /usr/share/kmap/fr_CH.kmap
/# exit[/c]
Offline
http://doc.slitaz.org/en:scratchbook:base-system
Previous steps build the root file system in the current working directory.
The shell interprets . as the current working directory.
To chroot into the root file system in the current directory and define the shell as /bin/ash
[c]chroot . /bin/ash[/c]
The command prompt in bold changes from # to /# in the chroot
# [c]chroot . /bin/ash[/c]
/# [c]ln -s /proc/mounts /etc/mtab[/c]
/# [c]mkdir /usr/share/kmap[/c]
/# [c]/bin/busybox dumpkmap > /usr/share/kmap/fr_CH.kmap[/c]
/# [c]exit[/c]
Offline
Pages: 1
[ Generated in 0.016 seconds, 7 queries executed - Memory usage: 1.53 MiB (Peak: 1.77 MiB) ]