Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 343 Bytes

File metadata and controls

15 lines (13 loc) · 343 Bytes

mount/remount

Remount an already mounted device with R/W properties

mount /dev/mmcblk0p1 -o remount,rw

Finding mount point

# Find a mount point
findmnt /dev/sda1

# Operation on a specific mount point
# for example create a testfile in the root of the mount point
sudo touch $(findmnt -n -o TARGET /dev/sda1)/testfile