User Tools

Site Tools


bsd:notes:ufs_format

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
bsd:notes:ufs_format [2026/04/27 17:32] – [Format] Sean Rhonebsd:notes:ufs_format [2026/06/19 01:11] (current) Sean Rhone
Line 21: Line 21:
   geom disk list   geom disk list
  
-  mkdir -p '/mnt/NAS1' && mount -o 'async,autoro,noatime,noclusterr,noclusterw' -t 'ufs' -v '/dev/da0' '/mnt/NAS1'+  mkdir -p '/mnt/NAS1' && mount -o 'async,autoro,noatime' -t 'ufs' -v '/dev/da0' '/mnt/NAS1'
  
-  chown -R 'espionage724':'espionage724' '/mnt/NAS1'+  chown -R espionage724:espionage724 '/mnt/NAS1' 
 + 
 +  gio open '/mnt' 
 + 
 +====== fsck ====== 
 + 
 +  su - 
 + 
 +  umount '/mnt/NAS1' 
 + 
 +  fsck_ffs -f -r -z -y '/dev/da0' 
 + 
 +====== fstab ====== 
 + 
 +  su - 
 + 
 +  mkdir -p '/mnt/NAS1' && ee '/etc/fstab' 
 + 
 +<code> 
 +# 10TB NAS 
 +/dev/da0 /mnt/NAS1 ufs rw,noatime 0 2 
 + 
 +# End</code> 
 + 
 +  mount '/dev/da0' 
 + 
 +===== Permissions ===== 
 + 
 +  su 
 + 
 +  chown -R $USER:$USER '/mnt/NAS1' 
 + 
 +  chmod -R '0700' '/mnt/NAS1'
  
/usr/local/www/wiki/data/attic/bsd/notes/ufs_format.1777325554.txt.gz · Last modified: by Sean Rhone