Advertisement
Guest User

log

a guest
Nov 2nd, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.81 KB | None | 0 0
  1. [agita@nonji ~]$ sudo parted -l
  2.  
  3. We trust you have received the usual lecture from the local System
  4. Administrator. It usually boils down to these three things:
  5.  
  6.     #1) Respect the privacy of others.
  7.     #2) Think before you type.
  8.     #3) With great power comes great responsibility.
  9.  
  10. [sudo] password for agita:
  11. Model: ATA Crucial_CT250MX2 (scsi)
  12. Disk /dev/sda: 250GB
  13. Sector size (logical/physical): 512B/4096B
  14. Partition Table: msdos
  15. Disk Flags:
  16.  
  17. Number  Start   End    Size    Type     File system     Flags
  18.  1      1049kB  232GB  232GB   primary  ext4
  19.  2      232GB   250GB  18,2GB  primary  linux-swap(v1)
  20.  
  21.  
  22. Warning: Not all of the space available to /dev/sdc appears to be used, you can
  23. fix the GPT to use all of the space (an extra 8151784 blocks) or continue with
  24. the current setting?
  25. Fix/Ignore?                                                              
  26. Fix/Ignore? ignore
  27. Model: USB2.0 Flash Disk (scsi)
  28. Disk /dev/sdc: 4194MB
  29. Sector size (logical/physical): 512B/512B
  30. Partition Table: gpt
  31. Disk Flags:
  32.  
  33. Number  Start   End     Size    File system  Name                Flags
  34.  1      32,8kB  184kB   152kB                Gap0                hidden, msftdata
  35.  2      184kB   3133kB  2949kB               EFI boot partition  boot, hidden, esp
  36.  3      3133kB  20,6MB  17,4MB  hfs+         Gap1                hidden, msftdata
  37.  
  38.  
  39. [agita@nonji ~]$ sudo blkid
  40. /dev/sda1: UUID="b468ca17-6abb-4fc4-b8e8-36f8d765e3b3" TYPE="ext4" PARTUUID="9da3e968-01"
  41. /dev/sda2: UUID="ee46df91-3944-4057-a1bd-ea63d827c5ff" TYPE="swap" PARTUUID="9da3e968-02"
  42. /dev/sdc1: PARTLABEL="Gap0" PARTUUID="a833de92-58e9-4835-bbbd-333874b2f469"
  43. /dev/sdc2: SEC_TYPE="msdos" UUID="605C-3081" TYPE="vfat" PARTLABEL="EFI boot partition" PARTUUID="a833de92-58e9-4835-bbbc-333874b2f469"
  44. /dev/sdc3: LABEL="ISOIMAGE" TYPE="hfsplus" PARTLABEL="Gap1" PARTUUID="a833de92-58e9-4835-bbbf-333874b2f469"
  45. [agita@nonji ~]$ findmnt -s
  46. TARGET SOURCE                                    FSTYPE OPTIONS
  47. /      UUID=b468ca17-6abb-4fc4-b8e8-36f8d765e3b3 ext4   defaults,noatime,discard
  48. swap   UUID=ee46df91-3944-4057-a1bd-ea63d827c5ff swap   defaults,noatime,discard
  49. /tmp   tmpfs                                     tmpfs  defaults,noatime,mode=1777
  50. [agita@nonji ~]$ inxi -SMpuo
  51. System:    Host: nonji Kernel: 4.19.0-3-MANJARO x86_64 bits: 64 Desktop: Xfce 4.13.2git-UNKNOWN
  52.            Distro: Manjaro Linux
  53. Machine:   Type: Laptop System: SAMSUNG product: 300E4C/300E5C/300E7C v: 0.1 serial: <root required>
  54.            Mobo: SAMSUNG model: NP300E5X-U01RU v: FAB1 serial: <root required> UEFI [Legacy]: Phoenix
  55.            v: P04RAC date: 06/14/2012
  56. Partition: ID-1: / size: 211.50 GiB used: 6.10 GiB (2.9%) fs: ext4 dev: /dev/sda1
  57.            uuid: b468ca17-6abb-4fc4-b8e8-36f8d765e3b3
  58.            ID-2: swap-1 size: 17.00 GiB used: 0 KiB (0.0%) fs: swap dev: /dev/sda2
  59.            uuid: ee46df91-3944-4057-a1bd-ea63d827c5ff
  60. Unmounted: ID-1: /dev/sdc1 size: 148 KiB fs: iso9660 label: ISOIMAGE uuid: 2018-11-01-16-41-09-00
  61.            ID-2: /dev/sdc2 size: 2.8 MiB fs: vfat label: ISOIMAGE uuid: 605C-3081
  62.            ID-3: /dev/sdc3 size: 16.6 MiB fs: hfsplus label: ISOIMAGE uuid: 2018-11-01-16-41-09-00
  63. [agita@nonji ~]$ cat /etc/fstab
  64. # /etc/fstab: static file system information.
  65. #
  66. # Use 'blkid' to print the universally unique identifier for a device; this may
  67. # be used with UUID= as a more robust way to name devices that works even if
  68. # disks are added and removed. See fstab(5).
  69. #
  70. # <file system>             <mount point>  <type>  <options>  <dump>  <pass>
  71. UUID=b468ca17-6abb-4fc4-b8e8-36f8d765e3b3 /              ext4    defaults,noatime,discard 0 1
  72. UUID=ee46df91-3944-4057-a1bd-ea63d827c5ff swap           swap    defaults,noatime,discard 0 2
  73. tmpfs                                     /tmp           tmpfs   defaults,noatime,mode=1777 0 0
  74. [agita@nonji ~]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement