LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 02-25-2024, 06:26 AM   #1
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Rep: Reputation: 0
Freemium online drive with command line access?


I've tried to find freemium online drives with Linux support. But all I've found propose Web or GUI clients. Is there anything with command-line access? Like sshfs or something?

P.S. If not, maybe some GUI clients with automatizing? Like syncing all changes (if any) every few minutes?
 
Old 02-25-2024, 06:35 AM   #2
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,310
Blog Entries: 3

Rep: Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722Reputation: 3722
If you're storing data on someone else's machine then you ought to encrypt it first. A simple approach could be a VPS accessed via Rsync or SSHFS to upload tarballs wrapped by GPG. However, a VPS will cost a monthly fee. Another way to pay a monthly fee might be to use Tarsnap, which might or might not be economically feasible depending on how much and what kind of data you have.
 
Old 02-25-2024, 06:53 AM   #3
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Original Poster
Rep: Reputation: 0
It's my own laptop. I need an option to back up my data online. And in particular, to sync it between my personal and office laptops. I don't need any encryption.

For my text / source code projects, GitHub works well. I need something for my binary data. Which could be automatized with shell scripts and anacron. Or at least with its own client - but with auto-sync.

Last edited by Solo-Mia; 02-25-2024 at 06:57 AM.
 
Old 02-25-2024, 07:02 AM   #4
lvm_
Member
 
Registered: Jul 2020
Posts: 927

Rep: Reputation: 337Reputation: 337Reputation: 337Reputation: 337
rclone supports over 70 cloud providers https://rclone.org/

Last edited by lvm_; 02-25-2024 at 07:06 AM.
 
2 members found this post helpful.
Old 02-25-2024, 07:23 AM   #5
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lvm_ View Post
rclone supports over 70 cloud providers https://rclone.org/
Wow, sounds interesting. I'll try it. Thank you.
 
Old 02-25-2024, 09:45 AM   #6
replica9000
Senior Member
 
Registered: Jul 2006
Distribution: Debian Unstable
Posts: 1,126
Blog Entries: 2

Rep: Reputation: 260Reputation: 260Reputation: 260
I think there's something similar to sshfs for Google Drive if you use that service.
 
Old 02-25-2024, 10:38 AM   #7
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by replica9000 View Post
I think there's something similar to sshfs for Google Drive if you use that service.
I've already established a connection to my Google Drive and am now trying it. It has its own command syntaxes (some are not so obvious) - but all in all, its concept is very close.

Now I can get how to use it in scripts.
 
Old 02-25-2024, 10:47 AM   #8
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,632

Rep: Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697
I use rclone with the mount option for about 6 cloud storage solutions. The only one that is problematic is gdrive: they (Alphabet) keep messing with the API and security for that one.
 
Old 02-26-2024, 01:54 AM   #9
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by wpeckham View Post
I use rclone with the mount option for about 6 cloud storage solutions. The only one that is problematic is gdrive: they (Alphabet) keep messing with the API and security for that one.
Could you please recommend me another one?
 
Old 02-26-2024, 03:26 AM   #10
lvm_
Member
 
Registered: Jul 2020
Posts: 927

Rep: Reputation: 337Reputation: 337Reputation: 337Reputation: 337
I am using rclone with google drive for many years and had no issues at all. Google probably changes something now and again, but all you have to do is keep your rclone up to date.
 
1 members found this post helpful.
Old 02-26-2024, 03:41 AM   #11
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lvm_ View Post
I am using rclone with google drive for many years and had no issues at all. Google probably changes something now and again, but all you have to do is keep your rclone up to date.
I couldn't rclone mount my gdrive - it just never ended. But rclone copy works well.
 
Old 02-26-2024, 05:04 AM   #12
lvm_
Member
 
Registered: Jul 2020
Posts: 927

Rep: Reputation: 337Reputation: 337Reputation: 337Reputation: 337
Quote:
Originally Posted by Solo-Mia View Post
I couldn't rclone mount my gdrive - it just never ended.
It is not supposed to - FUSE filesystems rely on code running in user space. You can only daemonise it with --daemon switch
 
1 members found this post helpful.
Old 02-26-2024, 05:29 AM   #13
Solo-Mia
LQ Newbie
 
Registered: Mar 2018
Location: Ukraine
Distribution: LMDE, Debian
Posts: 25

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by lvm_ View Post
It is not supposed to - FUSE filesystems rely on code running in user space. You can only daemonise it with --daemon switch
I don't remember using special options with other fuse tools. But it helped, thank you.
 
Old 02-26-2024, 08:30 AM   #14
wpeckham
LQ Guru
 
Registered: Apr 2010
Location: Continental USA
Distribution: Debian, Ubuntu, RedHat, DSL, Puppy, CentOS, Knoppix, Mint-DE, Sparky, VSIDO, tinycore, Q4OS,Manjaro
Posts: 5,632

Rep: Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697Reputation: 2697
The 70 supported cloud storage providers are listed on this page https://rclone.org/#providers
and the documented way to connect is in the (seriously huge) man page.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: AVG Revamps Privacy Policy in Freemium Antivirus and Security Products LXer Syndicated Linux News 1 09-23-2015 11:22 PM
LXer: Study Finds Freemium Model Generates Big App Store Income LXer Syndicated Linux News 0 09-30-2011 03:00 AM
LXer: Freemium: The Web's Counter-intuitive Business Model LXer Syndicated Linux News 0 10-12-2010 01:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 05:49 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration