I've just installed Ubuntu 14.04. Besides of default hard drive, I got also external hard drive on which I would like to install Google Drive. How can I do it?
I've read Is there a Google Drive client available? but I don't know how to change the location (from internal hard drive to external)?
Result of:
sudo blkid; sudo parted -l
please find below. It's in polish ;)
/dev/sda1: UUID="98c61393-a17a-4c01-ab52-49b62a33a3ff" TYPE="ext4"
/dev/sda5: UUID="cefb2e69-872b-4832-9ef5-7576d5082af9" TYPE="swap"
/dev/sdb1: LABEL="DATA" UUID="6A5AA8035AA7CA61" TYPE="ntfs"
Model: ATA PLEXTOR PX-128M6 (scsi)
Dysk /dev/sda: 128GB
Rozmiar sektora (logiczny/fizyczny): 512B/512B Tablica partycji: msdos
Numer Początek Koniec Rozmiar Typ System plików Flaga 1
1049kB 120GB 120GB primary ext4 ładowalna 2
120GB 128GB 8479MB extended 5 120GB 128GB 8479MB
logical linux-swap(v1)
Model: ASMT 2105 (scsi) Dysk /dev/sdb: 1000GB Rozmiar sektora
(logiczny/fizyczny): 512B/512B Tablica partycji: msdos
Numer Początek Koniec Rozmiar Typ System plików Flaga 1
1049kB 1000GB 1000GB primary ntfs
result of
cat /etc/fstab
# /etc/fstab: static file system information.
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#<file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=98c61393-a17a-4c01-ab52-49b62a33a3ff / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
UUID=cefb2e69-872b-4832-9ef5-7576d5082af9 none swap sw 0 0
UUID=6A5AA8035AA7CA61 /home/suzk/Drive ntfs-3g rw,exec,uid=,gid=,umask=0022
UUID=6A5AA8035AA7CA61 /home/suzk/Drive ntfs-3g rw,exec,uid=,gid=,umask=0022
UUID=6A5AA8035AA7CA61 /home/suzk/Drive ntfs-3g rw,exec,uid=,gid=,umask=0022
UUID=6A5AA8035AA7CA61 /home/suzk/Drive ntfs-3g rw,exec,uid=1000,gid=1000,umask=0022
UUID=6A5AA8035AA7CA61 /home/suzk/Drive ntfs-3g rw,exec,uid=1000,gid=1000,umask=0022
UUID=6
sudo blkid; sudo parted -l
after connecting the external disk. Please add it in the question. – muru Aug 12 '14 at 15:48sudo sed -i '/UUID=6/d' /etc/fstab
. Then run the complete set of commands in my answer after that. I have update my answer to use the~/Google Drive
path. – muru Aug 13 '14 at 15:29/etc/fstab
from the error I had made, and removing them will fix the privileges problem - the sed command posted in the previous comment deletes all entries previously added for the external disk. After that, running the updated set of commands from the answer will mount the drive at~/Google Drive
with the right privileges. – muru Aug 13 '14 at 15:40Mount is denied because the NTFS volume is already exclusively opened. The volume may be already mounted, or another software may use it which could be identified for example by the help of the 'fuser' command.
– suz Aug 13 '14 at 15:46sudo umount /dev/sdb1
command? – muru Aug 13 '14 at 15:54mount
mention the Google Drive folder? – muru Aug 14 '14 at 08:42