Skip to content

Instantly share code, notes, and snippets.

@thekaleidoscope
Last active March 19, 2018 12:48
Show Gist options
  • Save thekaleidoscope/a3ca852650bc853cd51edbb03e514e8b to your computer and use it in GitHub Desktop.
Save thekaleidoscope/a3ca852650bc853cd51edbb03e514e8b to your computer and use it in GitHub Desktop.
SRM Workarounds

To SSH a Remote server:

Open the access console from Digital-Ocean Console.

  sudo nano /etc/ssh/sshd_config
  #Change Port to 443 from 21 or 22.
  #Restart The SSH Serice.
  sudo systemctl restart ssh
  
  
 #SSH using port 443 .
 
 ssh user@hostip -p 443

Enjoy!

Make uTorrent WebUI for VPS

If you prefer Deluge over uTorrent, Stickaround i'll update it below.

apt update
apt upgrade

#Install Dependencies.
apt-get install libssl1.0.0 libssl-dev

#Download the utorrrnt.tar file
wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O utorrent.tar.gz

#Extract.
tar -zxvf utorrent.tar.gz -C /opt/

#Assign proper Permissions.
chmod 777 /opt/utorrent-server-alpha-v3_3/

#link utorrent to /user/bin/ directory.
ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver

#Complete the installation Process
utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &

#Open
 <IP>:8080/gui/web/index.html

Enjoy!

Transfer Data from Local Server or VPS over HTTPS via SSH over 443

rsync -arvz -e 'ssh -p 443' --progress --delete user@hostip:<directory or file to copy from VPS>  <local directory >

Enjoy!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment