Linux Mount Drive: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 30: Line 30:
  cat /proc/self/mounts
  cat /proc/self/mounts
  cat /proc/mounts
  cat /proc/mounts
ls -la /dev/sda*
ls -la /mnt/
fdisk -l
  mount -l
  mount -l
  df -aTh
  df -aTh

Revision as of 07:22, 6 June 2020

mount
df
lsblk
findmnt
──────────────────────────────────────────────────
findmnt /

TARGET SOURCE         FSTYPE OPTIONS
/      /dev/mmcblk0p2 ext4   rw,noatime
lsblk

NAME        MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda           8:0    0  3.7T  0 disk 
├─sda1        8:1    0  128M  0 part 
└─sda2        8:2    0  3.7T  0 part 
mmcblk0     179:0    0 59.6G  0 disk 
├─mmcblk0p1 179:1    0  256M  0 part /boot
└─mmcblk0p2 179:2    0 59.4G  0 part /

Good To Know

apt update
apt install ntfs-3g
cat /proc/self/mounts
cat /proc/mounts
ls -la /dev/sda*
ls -la /mnt/
fdisk -l
mount -l
df -aTh
mount

References