Difference between revisions of "Useful programs - network"

(Created page with "Category:Linux =Curl= Use ''curl'' to check some URLs <syntaxhighlight lang="bash"> apt-get install curl </syntaxhighlight> =SSH manager= To manage SSH connections...")
 
(OVH Hubic)
 
(7 intermediate revisions by the same user not shown)
Line 53: Line 53:
 
apt-get install remmina remmina-plugin-vnc remmina-plugin-gnome remmina-plugin-rdp
 
apt-get install remmina remmina-plugin-vnc remmina-plugin-gnome remmina-plugin-rdp
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
 +
 +
=OVH Hubic=
 +
 +
OVH installation instructions: https://forums.hubic.com/showthread.php?272-hubiC-for-Linux-beta-is-out-!
 +
 +
 +
'''Installation'''
 +
 +
* Downloaod the latest version of Hubic: http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/
 +
* Install the package
 +
 +
<syntaxhighlight lang="bash">
 +
dpkg -i hubic-linux-XXX.deb
 +
apt-get install -f
 +
</syntaxhighlight>
 +
 +
 +
'''Usage'''
 +
 +
Once installed, you can log in with the command:
 +
 +
<syntaxhighlight lang="bash">
 +
# First use
 +
hubiC login <email> <folder to synchronize>
 +
 +
# Next uses
 +
hubiC start
 +
</syntaxhighlight>
 +
 +
 +
It will start to synchronize your hubiC account and the local folder. You can then see the synchronization status with the ''<code>hubiC status</code>'' command.
 +
 +
!! Do not run Hubic as a super user or ''root'' !!
 +
 +
 +
 +
'''Upgrade the application'''
 +
 +
Before upgrading, you are encouraged to stop the synchronization process before installing the new package.
 +
 +
<syntaxhighlight lang="bash">
 +
wget http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/...
 +
hubic stop
 +
sudo dpkg -i hubiC-Linux-XXX-linux.deb
 +
hubic start
 +
</syntaxhighlight>
 +
 +
 +
 +
'''User interface'''
 +
 +
The only interface approved by OVH is "Swift Explorer". You can download it on http://www.619.io/swift-explorer
 +
 +
=Security scan=
 +
 +
See [[Useful programs - security#Security audit]]

Latest revision as of 23:28, 19 March 2016


Curl

Use curl to check some URLs

apt-get install curl


SSH manager

To manage SSH connections, PAC manager is an excellent tool. see http://sourceforge.net/projects/pacmanager/

  • Install the required package
apt-get install libgtk2-appindicator-perl
  • Download the latest version
  • install the package:
sudo dpkg -i pac.deb


In case of error:

Errors were encountered while processing: pac


Just do:

sudo apt-get install -f && sudo dpkg -i pac.deb


Remmina

Remmina is an excellent tool to manage Windows Remote Desktop Connections. see http://remmina.sourceforge.net/

apt-get install rdesktop
apt-get install remmina remmina-plugin-vnc remmina-plugin-gnome remmina-plugin-rdp


OVH Hubic

OVH installation instructions: https://forums.hubic.com/showthread.php?272-hubiC-for-Linux-beta-is-out-!


Installation

dpkg -i hubic-linux-XXX.deb
apt-get install -f


Usage

Once installed, you can log in with the command:

# First use
hubiC login <email> <folder to synchronize>

# Next uses
hubiC start


It will start to synchronize your hubiC account and the local folder. You can then see the synchronization status with the hubiC status command.

!! Do not run Hubic as a super user or root !!


Upgrade the application

Before upgrading, you are encouraged to stop the synchronization process before installing the new package.

wget http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/...
hubic stop
sudo dpkg -i hubiC-Linux-XXX-linux.deb
hubic start


User interface

The only interface approved by OVH is "Swift Explorer". You can download it on http://www.619.io/swift-explorer

Security scan

See Useful programs - security#Security audit