Because I am in serious process of fully Ubunticizing myself here is a neat trick to mount a Windows Filesystem onto a Ubuntu directory? Follow the following:
- sudo fdisk -l (find which FS it is for Windows? On my laptop it was sda1)
- sudo mkdir /XP (Create a directory to mount the FS to)
- ls -l /dev/disk/by-uuid (Copy the UUID of the Windows FS)
- sudo nano /etc/fstab (Start editing the file)
- Add UUID=
/XP defaults 0 0 - Save the file and run sudo mount -a
- Give the right permission: sudo chown -R user:group /XP
No comments:
Post a Comment