lis6502 pisze:To nie kod maszynowy, a ekran z make menuconfig. Jeśli nieczytelny:
Zaraz, zaraz jak tam wszedłeś? Po wpisaniu w konsoli tego?
Nie chce czegoś popsuć i wole sie upewnić.
lis6502 pisze:Dodaj do konfiguracji moduł, o którym piszę
Dodam jak się tam najpierw dostane. ]Jeśli mówisz o pięknym Knoppiksie spod terminala, to jak najbardziej możesz przeportować. Odpal z poziomu Knoppiksa fbgrab i wrzuć na forum ten obrazek z wyszczególnieniem o co Ci chodzi.[/quote]
Ha, dokładnie o to co tu widać (to z Wikipedii, bo szybciej):
http://upload.wikimedia.org/wikipedia/c ... ooting.png
Tylko mam Debiana i w ogóle Linuksa 1,5 miesiąca i nie łapie jeszcze wszystkiego jak co w nim działa więc jeśli można to prosze powoli i wyraźnie. ;-)
I ten "tmfps" montuje się u mnie chyba automagicznie przy startcie mimo, że /dev/shm jest niby pusty:
Kod: Zaznacz cały
root@debian:/home/kati# mount
/dev/sda8 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
fusectl on /sys/fs/fuse/connections type fusectl (rw)
/dev/sda7 on /boot type ext3 (rw)
/dev/sda9 on /home type ext3 (rw)
/dev/sda11 on /mnt/dysk type ext3 (rw)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
winnetou pisze:Katiusha, zapomniałaś o -t przy montowaniu czyli powinno być Kod:
mount -t tmpfs /dev/shm
Właśnie jak tak wpisze z "-t" to wyrzuca "help":
Kod: Zaznacz cały
root@debian:/home/kati# mount -t tmpfs /dev/shm
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
One can change the type of mount containing the directory dir:
mount --make-shared dir
mount --make-slave dir
mount --make-private dir
mount --make-unbindable dir
One can change the type of all the mounts in a mount subtree
containing the directory dir:
mount --make-rshared dir
mount --make-rslave dir
mount --make-rprivate dir
mount --make-runbindable dir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using -L label or by uuid, using -U uuid .
Other options: [-nfFrsvw] [-o options] [-p passwdfd].
For many more details, say man 8 mount .
root@debian:/home/kati#