Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. root@garkbit ~ # gdisk -l /dev/sda
  2. GPT fdisk (gdisk) version 1.0.1
  3.  
  4. Partition table scan:
  5. MBR: protective
  6. BSD: not present
  7. APM: not present
  8. GPT: present
  9.  
  10. Found valid GPT with protective MBR; using GPT.
  11. Disk /dev/sda: 468862128 sectors, 223.6 GiB
  12. Logical sector size: 512 bytes
  13. Disk identifier (GUID): 69F336B9-6E89-4B32-9695-FDF3C90B2E0C
  14. Partition table holds up to 128 entries
  15. First usable sector is 34, last usable sector is 468862094
  16. Partitions will be aligned on 2048-sector boundaries
  17. Total free space is 3181 sectors (1.6 MiB)
  18.  
  19. Number Start (sector) End (sector) Size Code Name
  20. 1 2048 264191 128.0 MiB EF00 efiboot
  21. 2 264192 788479 256.0 MiB EF00 slashboot
  22. 3 788480 4982783 2.0 GiB 8300 root
  23. 4 4982784 468860927 221.2 GiB 8E00 svg
  24. root@garkbit ~ # cat /etc/fstab
  25. # /etc/fstab: static file system information.
  26. #
  27. # Use 'blkid' to print the universally unique identifier for a
  28. # device; this may be used with UUID= as a more robust way to name devices
  29. # that works even if disks are added and removed. See fstab(5).
  30. #
  31. # <file system> <mount point> <type> <options> <dump> <pass>
  32. # / was on /dev/sda3 during installation
  33. #UUID=434a41bd-4c46-445f-92f0-17f651a33234 / jfs errors=remount-ro,discard,relatime 0 1
  34. # /boot was on /dev/sda2 during installation
  35. #UUID=a8854be0-be8a-4bb4-80fc-744cc97f302c /boot ext2 discard,noatime 0 2
  36. # /boot/efi was on /dev/sda1 during installation
  37. #UUID=C771-60C6 /boot/efi vfat utf8,umask=007,gid=46 0 1
  38. PARTLABEL="root" / jfs errors=remount-ro,discard,relatime 0 1
  39. PARTLABEL="slashboot" /boot ext2 discard,noatime 0 2
  40. PARTLABEL="efiboot" /boot/efi vfat utf8,umask=007,gid=46 0 1
  41. /dev/mapper/s-home /home jfs discard,relatime 0 2
  42. /dev/mapper/s-opt /opt jfs discard,noatime 0 2
  43. /dev/mapper/s-usr /usr jfs discard,noatime 0 1
  44. /dev/mapper/s-var /var jfs discard,relatime 0 2
  45. /dev/mapper/s-aptc /var/cache/apt jfs discard,noatime 0 2
  46. tmpfs /tmp tmpfs rw,size=2G,relatime 0 0
  47. tmpfs /var/tmp tmpfs rw,size=2G,relatime 0 0
  48. /dev/mapper/s-pg00 none swap sw 0 0
  49. root@garkbit ~ #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement