[2024-feb-29] Sad news: Eric Layton aka Nocturnal Slacker aka vtel57 passed away on Feb 26th, shortly after hospitalization. He was one of our Wiki's most prominent admins. He will be missed.

Welcome to the Slackware Documentation Project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
slackbook:working_with_filesystems [2012/09/09 23:01 (UTC)] – [Sources] Updated the suthor names and tags mfillpotslackbook:working_with_filesystems [2012/09/12 21:34 (UTC)] – updated code block to syntax highlighting mfillpot
Line 164: Line 164:
  
  
-<code>+<code bash>
 darkstar:~# mount -t vfat /dev/hda4 /mnt/hd -o uid=alan darkstar:~# mount -t vfat /dev/hda4 /mnt/hd -o uid=alan
 </code> </code>
Line 179: Line 179:
  
  
-<code>+<code bash>
 darkstar:~# cat /etc/fstab darkstar:~# cat /etc/fstab
 /dev/hda1        /                reiserfs    defaults                 1 /dev/hda1        /                reiserfs    defaults                 1
Line 195: Line 195:
  
  
-<code>+<code bash>
 darkstar:~# mount /dev/cdrom darkstar:~# mount /dev/cdrom
 darkstar:~# mount /home darkstar:~# mount /home
Line 224: Line 224:
  
  
-<code>+<code bash>
 darkstar:~# chmod +x /etc/rc.d/rc.rpc darkstar:~# chmod +x /etc/rc.d/rc.rpc
 darkstar:~# /etc/rc.d/rc.rpc start darkstar:~# /etc/rc.d/rc.rpc start
Line 236: Line 236:
  
  
-<code>+<code bash>
 darkstar:~# mount -t nfs darkstar.example.com:/home /home darkstar:~# mount -t nfs darkstar.example.com:/home /home
 </code> </code>
Line 248: Line 248:
  
  
-<code>+<file>
 # See exports(5) for a description. # See exports(5) for a description.
 # This file contains a list of all directories exported to other computers. # This file contains a list of all directories exported to other computers.
Line 254: Line 254:
  
 /home/backup 192.168.1.0/24(sync,rw,no_root_squash) /home/backup 192.168.1.0/24(sync,rw,no_root_squash)
-</code>+</file>
  
  
Line 293: Line 293:
  
  
-<code>+<code bash>
 darkstar:~# mount -t cifs //darkstar/home /home -o username=alan,password=secret darkstar:~# mount -t cifs //darkstar/home /home -o username=alan,password=secret
 </code> </code>
Line 313: Line 313:
  
  
-<code>+<code bash>
 darkstar:~# echo "username=alan" > /etc/creds-home darkstar:~# echo "username=alan" > /etc/creds-home
 darkstar:~# echo "password=secret" >> /etc/creds-home darkstar:~# echo "password=secret" >> /etc/creds-home
Line 321: Line 321:
 ====== Chapter Navigation ====== ====== Chapter Navigation ======
  
-**Previous Chapter: [[slackbook:working_with_filesystems|Filesystem Permissions]]**+**Previous Chapter: [[slackbook:filesystem_permissions|Filesystem Permissions]]**
  
 **Next Chapter: [[slackbook:vi|vi]]** **Next Chapter: [[slackbook:vi|vi]]**
 ====== Sources ====== ====== Sources ======
 <!-- If you copy information from another source, then specify that source --> <!-- If you copy information from another source, then specify that source -->
- * Original source: [[http://www.slackbook.org/beta]] \\+  * Original source: [[http://www.slackbook.org/beta]] \\
 <!-- Authors are allowed to give credit to themselves! --> <!-- Authors are allowed to give credit to themselves! -->
- * Originally written by Alan Hicks, Chris Lumens, David Cantrell, Logan Johnson+  * Originally written by Alan Hicks, Chris Lumens, David Cantrell, Logan Johnson
 <!-- * Contrbutions by [[wiki:user:yyy | User Y]] --> <!-- * Contrbutions by [[wiki:user:yyy | User Y]] -->
  
 slackbook:working_with_filesystems ()