Replies: 3 comments 5 replies
-
you just need to use the other account with colab, the Shared Drive is meant for this case : https://support.google.com/a/users/answer/7212025?hl=en#:~:text=Shared%20drives%20are%20special%20folders,team%20instead%20of%20an%20individual. |
Beta Was this translation helpful? Give feedback.
-
But for Shared Drive I need a work or school account and have to pay, right? No way to make on with a free acct |
Beta Was this translation helpful? Give feedback.
-
If you want to connect the drive of a second Google account, follow the steps below: 1. Mount your first drive as usual, by running the "Connect Google Drive" cell. 2. Run the below code: !sudo add-apt-repository -y ppa:alessandro-strada/ppa 2>&1 > /dev/null
!sudo apt-get update -qq 2>&1 > /dev/null
!sudo apt -y install -qq google-drive-ocamlfuse 2>&1 > /dev/null
!google-drive-ocamlfuse 3. Allow gdfuse access your second Google account. The output from the previous step should include an error like this:
4. Run the below code: !sudo apt-get install -qq w3m # to act as web browser
!xdg-settings set default-web-browser w3m.desktop # to set default browser
%cd /content
!mkdir drive
%cd drive
!mkdir MyDrive2
%cd ..
%cd ..
!google-drive-ocamlfuse /content/drive/MyDrive2 After this step, your second drive will be mounted to /content/drive/MyDrive2 |
Beta Was this translation helpful? Give feedback.
-
So there is a
Shared_Drive
section, i wanted to know what type of link does it take? A shared folder link doesn't work as i have triedBeta Was this translation helpful? Give feedback.
All reactions