Mount ntfs drive on Linux
1. Install ntfs-3g.
2. Create a folder in /media or /mnt (mkdir /media/windows)
3. Use fdisk -l to get the name of the NTFS drive (example: dev/sda1)
4. Add the drive into /etc/fstab so it mounts automatically.
/etc/fstab
/dev/sda1 /media/windows ntfs-3g defaults 0 0
leave a comment
Using X with SSH
I was working on the school computers from home trough SSH and needed to use X. Using the “-X” parameter gave me error messages when I used the keyboard mouse if I remember correctly. This worked without any error messages though.
ssh -Y -l user server