unmount google-drive-ocamlfuse
up vote
0
down vote
favorite
I am trying to unmount google-drive-ocamlfuse. I entered the following command:
fusermount -u ~/google-drive
it returns:
fusermount: entry for /home/<user_name>/google-drive not found in /etc/mtab
What is wrong and how to fix it?
In general how can I uninstall ocamlfuse
google-drive
|
show 1 more comment
up vote
0
down vote
favorite
I am trying to unmount google-drive-ocamlfuse. I entered the following command:
fusermount -u ~/google-drive
it returns:
fusermount: entry for /home/<user_name>/google-drive not found in /etc/mtab
What is wrong and how to fix it?
In general how can I uninstall ocamlfuse
google-drive
1
Is it mounted in that location?
– user692175
Nov 23 '17 at 16:28
@MichaelBay, yes it was, I mounted it using command:google-drive-ocamlfuse ~/google-drive
. Whole my ubuntu is not very responsive now.
– user1700890
Nov 23 '17 at 18:06
1
~/
just tells it to mount in the folder you were in, at the terminal, at that moment. Yes, the Terminal typically opens at/home/<user_name>
but it may have not been the case and/or you cd to somewhere else
– user692175
Nov 23 '17 at 18:15
@MichaelBay, thank you for clarifying. How can I unmount it or remove it completely?
– user1700890
Nov 23 '17 at 18:42
Try giving it the full path to where google-drive is actually mounted.
– user692175
Nov 23 '17 at 18:45
|
show 1 more comment
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to unmount google-drive-ocamlfuse. I entered the following command:
fusermount -u ~/google-drive
it returns:
fusermount: entry for /home/<user_name>/google-drive not found in /etc/mtab
What is wrong and how to fix it?
In general how can I uninstall ocamlfuse
google-drive
I am trying to unmount google-drive-ocamlfuse. I entered the following command:
fusermount -u ~/google-drive
it returns:
fusermount: entry for /home/<user_name>/google-drive not found in /etc/mtab
What is wrong and how to fix it?
In general how can I uninstall ocamlfuse
google-drive
google-drive
asked Nov 23 '17 at 16:19
user1700890
130129
130129
1
Is it mounted in that location?
– user692175
Nov 23 '17 at 16:28
@MichaelBay, yes it was, I mounted it using command:google-drive-ocamlfuse ~/google-drive
. Whole my ubuntu is not very responsive now.
– user1700890
Nov 23 '17 at 18:06
1
~/
just tells it to mount in the folder you were in, at the terminal, at that moment. Yes, the Terminal typically opens at/home/<user_name>
but it may have not been the case and/or you cd to somewhere else
– user692175
Nov 23 '17 at 18:15
@MichaelBay, thank you for clarifying. How can I unmount it or remove it completely?
– user1700890
Nov 23 '17 at 18:42
Try giving it the full path to where google-drive is actually mounted.
– user692175
Nov 23 '17 at 18:45
|
show 1 more comment
1
Is it mounted in that location?
– user692175
Nov 23 '17 at 16:28
@MichaelBay, yes it was, I mounted it using command:google-drive-ocamlfuse ~/google-drive
. Whole my ubuntu is not very responsive now.
– user1700890
Nov 23 '17 at 18:06
1
~/
just tells it to mount in the folder you were in, at the terminal, at that moment. Yes, the Terminal typically opens at/home/<user_name>
but it may have not been the case and/or you cd to somewhere else
– user692175
Nov 23 '17 at 18:15
@MichaelBay, thank you for clarifying. How can I unmount it or remove it completely?
– user1700890
Nov 23 '17 at 18:42
Try giving it the full path to where google-drive is actually mounted.
– user692175
Nov 23 '17 at 18:45
1
1
Is it mounted in that location?
– user692175
Nov 23 '17 at 16:28
Is it mounted in that location?
– user692175
Nov 23 '17 at 16:28
@MichaelBay, yes it was, I mounted it using command:
google-drive-ocamlfuse ~/google-drive
. Whole my ubuntu is not very responsive now.– user1700890
Nov 23 '17 at 18:06
@MichaelBay, yes it was, I mounted it using command:
google-drive-ocamlfuse ~/google-drive
. Whole my ubuntu is not very responsive now.– user1700890
Nov 23 '17 at 18:06
1
1
~/
just tells it to mount in the folder you were in, at the terminal, at that moment. Yes, the Terminal typically opens at /home/<user_name>
but it may have not been the case and/or you cd to somewhere else– user692175
Nov 23 '17 at 18:15
~/
just tells it to mount in the folder you were in, at the terminal, at that moment. Yes, the Terminal typically opens at /home/<user_name>
but it may have not been the case and/or you cd to somewhere else– user692175
Nov 23 '17 at 18:15
@MichaelBay, thank you for clarifying. How can I unmount it or remove it completely?
– user1700890
Nov 23 '17 at 18:42
@MichaelBay, thank you for clarifying. How can I unmount it or remove it completely?
– user1700890
Nov 23 '17 at 18:42
Try giving it the full path to where google-drive is actually mounted.
– user692175
Nov 23 '17 at 18:45
Try giving it the full path to where google-drive is actually mounted.
– user692175
Nov 23 '17 at 18:45
|
show 1 more comment
1 Answer
1
active
oldest
votes
up vote
1
down vote
Because you need mount folder first (in /home/user_name/google-drive):
# mount
google-drive-ocamlfuse ~/google-drive
An them umount:
# umount
fusermount -u ~/google-drive
PD: I recommend changing the name of the folder without symbols. Maybe "gdrive" or another similar
/home/user_name/gdrive
And it's even better to use a bash script described in the post Share Google Drive in Samba
New contributor
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Because you need mount folder first (in /home/user_name/google-drive):
# mount
google-drive-ocamlfuse ~/google-drive
An them umount:
# umount
fusermount -u ~/google-drive
PD: I recommend changing the name of the folder without symbols. Maybe "gdrive" or another similar
/home/user_name/gdrive
And it's even better to use a bash script described in the post Share Google Drive in Samba
New contributor
add a comment |
up vote
1
down vote
Because you need mount folder first (in /home/user_name/google-drive):
# mount
google-drive-ocamlfuse ~/google-drive
An them umount:
# umount
fusermount -u ~/google-drive
PD: I recommend changing the name of the folder without symbols. Maybe "gdrive" or another similar
/home/user_name/gdrive
And it's even better to use a bash script described in the post Share Google Drive in Samba
New contributor
add a comment |
up vote
1
down vote
up vote
1
down vote
Because you need mount folder first (in /home/user_name/google-drive):
# mount
google-drive-ocamlfuse ~/google-drive
An them umount:
# umount
fusermount -u ~/google-drive
PD: I recommend changing the name of the folder without symbols. Maybe "gdrive" or another similar
/home/user_name/gdrive
And it's even better to use a bash script described in the post Share Google Drive in Samba
New contributor
Because you need mount folder first (in /home/user_name/google-drive):
# mount
google-drive-ocamlfuse ~/google-drive
An them umount:
# umount
fusermount -u ~/google-drive
PD: I recommend changing the name of the folder without symbols. Maybe "gdrive" or another similar
/home/user_name/gdrive
And it's even better to use a bash script described in the post Share Google Drive in Samba
New contributor
edited 4 hours ago
New contributor
answered yesterday
user4839775
112
112
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f979552%2funmount-google-drive-ocamlfuse%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
Is it mounted in that location?
– user692175
Nov 23 '17 at 16:28
@MichaelBay, yes it was, I mounted it using command:
google-drive-ocamlfuse ~/google-drive
. Whole my ubuntu is not very responsive now.– user1700890
Nov 23 '17 at 18:06
1
~/
just tells it to mount in the folder you were in, at the terminal, at that moment. Yes, the Terminal typically opens at/home/<user_name>
but it may have not been the case and/or you cd to somewhere else– user692175
Nov 23 '17 at 18:15
@MichaelBay, thank you for clarifying. How can I unmount it or remove it completely?
– user1700890
Nov 23 '17 at 18:42
Try giving it the full path to where google-drive is actually mounted.
– user692175
Nov 23 '17 at 18:45