Advertisement
heroku

Untitled

Dec 2nd, 2014
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.32 KB | None | 0 0
  1. $ cat /etc/fstab
  2. # /etc/fstab: static file system information.
  3. #
  4. # Use 'blkid' to print the universally unique identifier for a
  5. # device; this may be used with UUID= as a more robust way to name devices
  6. # that works even if disks are added and removed. See fstab(5).
  7. #
  8. # <file system> <mount point>   <type>  <options>       <dump>  <pass>
  9. proc            /proc           proc    nodev,noexec,nosuid 0       0
  10. /dev/mapper/ubuntu--vg-root /               ext4    errors=remount-ro 0       1
  11. # /boot was on /dev/sda1 during installation
  12. UUID=93924d6f-e087-44e2-aabc-288c9a89d859 /boot           ext2    defaults        0       2
  13. /dev/mapper/ubuntu--vg-swap_1 none            swap    sw              0       0
  14. /dev/sdb1 /home/ubuntu/new1 ext3 defaults 0 2
  15.  
  16. [ubuntu@ubuntu:~]$df -Th
  17. Filesystem                  Type      Size  Used Avail Use% Mounted on
  18. /dev/mapper/ubuntu--vg-root ext4      6.5G  5.6G  597M  91% /
  19. udev                        devtmpfs  494M  4.0K  494M   1% /dev
  20. tmpfs                       tmpfs     201M  332K  201M   1% /run
  21. none                        tmpfs     5.0M     0  5.0M   0% /run/lock
  22. none                        tmpfs     502M     0  502M   0% /run/shm
  23. /dev/sdb1                   ext3      7.9G  1.2G  6.4G  15% /home/ubuntu/new1
  24. /dev/sda1                   ext2      228M   27M  190M  13% /boot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement