| View previous topic :: View next topic |
| Author |
Message |
bluesky Apprentice


Joined: 14 Aug 2002 Posts: 230 Location: USA
|
Posted: Thu Nov 21, 2002 1:19 am Post subject: mount filesystems |
|
|
# mount
/dev/hdb10 on / type ext2 (rw)
proc on /proc type proc (rw)
none on /dev type devfs (rw) -->(1)
tmpfs on /mnt/.init.d type tmpfs (rw,mode=0644,size=1024k)--> (2)
/dev/hdb11 on /usr type ext2 (rw)
/dev/hdb12 on /home type ext2 (rw)
/dev/hdb13 on /var type ext2 (rw)
Can somebody explain about (1) and )2) because they aren't in fstab? _________________ bluesky
"free as the wind" |
|
| Back to top |
|
 |
#! n00b

Joined: 20 Nov 2002 Posts: 11
|
Posted: Thu Nov 21, 2002 5:19 am Post subject: |
|
|
(1) is your devfs
(2) is your tmpfs
devfs is the device filesystem. Simply it's where all your devices are put, I think it's something to do with ease of access etc.
Here is a devfs FAQ!
tmpfs is the temporay filesystem used for mapping /tmp to virtual memory, I think this helps increase access speeds etc, I'm not sure.
That was a little information, I don't really know much about these, I'm sure some more knowledgable person will post any second now!  _________________ "...you might as well skip the Xmas celebration completely, and instead sit in front of your linux computer playing with the all-new-and-improved linux kernel version."
(By Linus Torvalds) |
|
| Back to top |
|
 |
zhenlin Veteran

Joined: 09 Nov 2002 Posts: 1361
|
Posted: Thu Nov 21, 2002 9:30 am Post subject: |
|
|
#2 is where gentoo keeps your runlevel information.
| Code: |
# ls /mnt/.init.d/
after before broken depcache envcache need options provide snapshot softlevel softscripts started use
|
Seen any of these words before? |
|
| Back to top |
|
 |
bluesky Apprentice


Joined: 14 Aug 2002 Posts: 230 Location: USA
|
Posted: Thu Nov 21, 2002 3:37 pm Post subject: re: devfs |
|
|
Should I mount devfs in the fstgab? if yes then how? _________________ bluesky
"free as the wind" |
|
| Back to top |
|
 |
pilla Administrator


Joined: 07 Aug 2002 Posts: 7184 Location: Pelotas, BR
|
Posted: Thu Nov 21, 2002 4:03 pm Post subject: Re: re: devfs |
|
|
No, you should not. Devfsd takes care of it for you.
| bluesky wrote: | | Should I mount devfs in the fstgab? if yes then how? |
|
|
| Back to top |
|
 |
|