1 2 3 4 |
To eject a disc or media from the command line on Mac # drutil tray open # drutil eject |
1 2 3 4 |
To eject a disc or media from the command line on Mac # drutil tray open # drutil eject |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Check the disks, diskutil list # Umount the automounted volume diskutil umount /dev/disk5s2 # Make a new directory mkdir /Volumes/5 # Mount your drive /sbin/mount_ntfs -o rw /dev/disk5s2 /Volumes/5 # Kutay Zorlu # other command, mount -t ntfs /dev/disk6s1 /Volumes/usb6/ mount -t ntfs-3g /dev/disk6s1 /Volumes/usb6_kutay/ # |
Try using mount -u -w
:
1 2 3 4 5 6 7 |
sudo mount -u -w /Volumes/kutay_disc mount -u -w /dev/disk /mnt/point In single user mode to get a writable root: mount -uw / |
dsdd
1 2 |
To remount a partition read-write on linux you would use: mount -o remount,rw /dev/disk /mnt/point |