是否有一种从Ubuntu Server(SSH)上传文件到MEGA(mega.co.nz)的表单?


10

我想知道是否有人知道如何在Ubuntu Server(SSH)中安装客户端(例如megatools)以将文件上传和下载到MEGA(mega.co.nz)。

在此先感谢Joserex65。

Answers:


9

您可以像这样安装megatools

git clone https://github.com/megous/megatools.git
cd megatools/
sudo apt-get install libtool libglib2.0-dev gobject-introspection libgmp3-dev nettle-dev asciidoc glib-networking#(these are the dependancies I needed, you may need others)
./autogen.sh
make
sudo make install

请享用!

安装所有工具的更可靠的方法:

sudo apt-get install libtool libglib2.0-dev gobject-introspection libgmp3-dev nettle-dev asciidoc glib-networking
wget http://megatools.megous.com/builds/megatools-1.9.94.tar.gz
zcat megatools-1.9.94.tar.gz > megatools-1.9.94.tar
tar -xf megatools-1.9.94.tar   
cd megatools-1.9.94/
./configure
make
sudo make install

编辑要只在生动生动的(15.04 / 15.10)上安装二进制文件,只需运行即可sudo apt-get install megatools。在早期版本上,您可以运行

sudo add-apt-repository ppa:megous/ppa
sudo apt-get update
sudo apt-get install megatools    

自述文件

Tools
=====

megareg      Register and verify a new mega account
megadf       Show your cloud storage space usage/quota
megals       List all remote files
megamkdir    Create remote directory
megarm       Remove remote file or directory
megamv       Move and rename remote files
megaput      Upload individual files
megaget      Download individual files
megadl       Download file from a "public" Mega link
             (doesn't require login)
megastream   Streaming download of a file
             (can be used to preview videos or music)
megasync     Upload or download a directory tree
megafs       Mount remote filesystem locally.

另请参阅http://megatools.megous.com


您能否解释这些“工具”的作用以及为什么要使用它们?从目前的情况来看,您基本上只是说“获得,创建并随机提供帮助”,但不要说它有任何帮助。
托马斯·沃德

@ThomasW。问题专门提到了这个工具。我添加了一些细节。
ike14年

实际上,他说的是“像megatools”,但并未说明他们想使用megatools。为此,我建议编辑为“ You可以构建并使用megatools。这是说明:”,以使其对最终用户更加完整和友好。
托马斯·沃德

有没有一种方法,而无需安装729 MB的归档文件?
maxisme 2015年

1
@Maximilian在帖子中添加了说明
ike

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.