Skip to content

Files

Latest commit

Oct 2, 2024
003e524 · Oct 2, 2024

History

History
23 lines (18 loc) · 753 Bytes

mount.md

File metadata and controls

23 lines (18 loc) · 753 Bytes

mount

mount can handle .iso
mount home to other partition
https://www.howtogeek.com/442101/how-to-move-your-linux-home-directory-to-another-hard-drive/

mount mit schreibrechten für nutzer:
sudo mount -o uid=1000 /dev/sdb1 ~/media/usb
https://superuser.com/questions/320415/mount-device-with-specific-user-rights

automount
sudo mount -t ntfs-3g -o rw /dev/sda4/ media/data
mount -t ntfs-3g -o rw /dev/sda1 /root/win  
add to /etc/fstab: UUID=DEE26575E2655337     /media/data ntfs-3g    defaults    0   0
wichtig: https://askubuntu.com/questions/34731/howto-auto-mount-windows-partitions-using-etc-fstab

mount usb drive
fdisk -l > liste
mount /dev/sdb1 /media/usb 
setgid https://wiki.ubuntuusers.de/Windows-Partitionen_einbinden/NTFS-3G/