Advertisement
kmirza

how to reiserfs by kashif tajammul mirza

Apr 2nd, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. how to reiserfs
  2.  
  3.  
  4. reiserfs Your Linux partitions may very well be formatted as ReiserFS. Like Ext3, ReiserFS is a journaled filesystem, but it's much more advanced than Ext3. Many Linux distros (including SuSE) have started using ReiserFS as their default filesystem for Linux partitions.
  5. -----------------------------------------------------------------------------------
  6.  
  7. root@ubuntu:~# cat /etc/lsb-release
  8. DISTRIB_ID=Ubuntu
  9. DISTRIB_RELEASE=10.04
  10. DISTRIB_CODENAME=lucid
  11. DISTRIB_DESCRIPTION="Ubuntu 10.04.3 LTS"
  12.  
  13. -----------------------------------------------------------------------------------
  14.  
  15. # apt-get install reiserfsprogs
  16.  
  17. # mkfs.reiserfs /dev/sdb1
  18.  
  19.  
  20. # mkdir /cache8
  21. # mount /dev/sdb1 /cache8
  22.  
  23. # vi /etc/fstab
  24.  
  25.  
  26. /dev/sdb1 /cache8 /reiserfs defaults,noatime 0 2
  27.  
  28. in my case i am using reiserfs for squid cache dir
  29. #kmirza.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement