Advertisement
Guest User

Untitled

a guest
Apr 17th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.99 KB | None | 0 0
  1. # cat /etc/fstab
  2. proc            /proc           proc    nodev,noexec,nosuid 0       0
  3. /dev/mapper/pdc_bghdibacj5 /               ext4    errors=remount-ro 0       1
  4. /dev/mapper/pdc_bghdibacj1 /boot           ext4    defaults        0       2
  5. /dev/mapper/pdc_bghdibacj7 /home           ext4    defaults        0       2
  6. /dev/mapper/pdc_bghdibacj6 none            swap    sw              0       0
  7.  
  8. # mount -l
  9. /dev/mapper/pdc_bghdibacj5 on / type ext4 (rw,errors=remount-ro)
  10. proc on /proc type proc (rw,noexec,nosuid,nodev)
  11. sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
  12. fusectl on /sys/fs/fuse/connections type fusectl (rw)
  13. none on /sys/kernel/debug type debugfs (rw)
  14. none on /sys/kernel/security type securityfs (rw)
  15. udev on /dev type devtmpfs (rw,mode=0755)
  16. devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
  17. tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
  18. none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
  19. none on /run/shm type tmpfs (rw,nosuid,nodev)
  20. /dev/mapper/pdc_bghdibacj1 on /boot type ext4 (rw)
  21.  
  22. # dmraid -s
  23. *** Active Set
  24. name   : pdc_bghdibacj
  25. size   : 1953124992
  26. stride : 128
  27. type   : mirror
  28. status : ok
  29. subsets: 0
  30. devs   : 2
  31. spares : 0
  32.  
  33. # fdisk -l /dev/mapper/pdc_bghdibacj
  34. Disk /dev/mapper/pdc_bghdibacj: 1000.0 Гб, 999999995904 байт
  35. /dev/mapper/pdc_bghdibacj1   *        2048     1953791      975872   83  Linux
  36. /dev/mapper/pdc_bghdibacj2         1955838  1953124351   975584257    5  Extended
  37. /dev/mapper/pdc_bghdibacj5         1955840    80078847    39061504   83  Linux
  38. /dev/mapper/pdc_bghdibacj6      1921875968  1953124351    15624192   82  Linux swap / Solaris
  39. /dev/mapper/pdc_bghdibacj7        80080896  1921871871   920895488   83  Linux
  40.  
  41. # mount /home
  42. mount: /dev/mapper/pdc_bghdibacj7 already mounted or /home busy
  43.  
  44. # fsck.ext4 /dev/mapper/pdc_bghdibacj7
  45. e2fsck 1.41.14 (22-Dec-2010)
  46. fsck.ext4: Device or resource is busy /dev/mapper/pdc_bghdibacj7
  47. Filesystem mounted or opened exclusively by another program?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement