|
|
@ -1,5 +1,7 @@ |
|
|
|
# roosay |
|
|
|
```` |
|
|
|
# Roosay |
|
|
|
|
|
|
|
``` |
|
|
|
|
|
|
|
------------- |
|
|
|
< Only at RIT > |
|
|
|
------------- |
|
|
@ -11,32 +13,47 @@ |
|
|
|
'~( '~ )// |
|
|
|
_\ '}/ |
|
|
|
"--~(/ |
|
|
|
```` |
|
|
|
``` |
|
|
|
|
|
|
|
roosay is a simple python script which displays an ascii roo with a quote above it |
|
|
|
|
|
|
|
## Install |
|
|
|
Copy the roosay.py file from the src directory |
|
|
|
|
|
|
|
## Usage |
|
|
|
``` |
|
|
|
python3 roosay.py Super cool message |
|
|
|
``` |
|
|
|
or create a .bashrc alias |
|
|
|
``` |
|
|
|
roosay super cool message |
|
|
|
``` |
|
|
|
|
|
|
|
python3 roosay.py Super cool message |
|
|
|
# Install |
|
|
|
``` |
|
|
|
git clone https://github.com/jrtechs/bash_manager.git |
|
|
|
``` |
|
|
|
|
|
|
|
or create a .bashrc alias |
|
|
|
|
|
|
|
roosay super cool message |
|
|
|
# Dependencies |
|
|
|
Make sure that you have the following programs installed. |
|
|
|
- python3 |
|
|
|
- ssh |
|
|
|
- ssh-copy-id |
|
|
|
- sshfs (only for ssh drive manager) |
|
|
|
- fusermount (only for ssh drive manager) |
|
|
|
|
|
|
|
|
|
|
|
# SSH Manager |
|
|
|
```` |
|
|
|
``` |
|
|
|
************************************** |
|
|
|
* SSH manager V 0.2 * |
|
|
|
* SSH manager V 1.1 * |
|
|
|
* 1) user1@host_name * |
|
|
|
* 2) user2@host_name_2 * |
|
|
|
* A) Exit * |
|
|
|
* B) Manager tools * |
|
|
|
* C) Socks Tunnel * |
|
|
|
* D) SSH Drive Manager * |
|
|
|
************************************** |
|
|
|
```` |
|
|
|
``` |
|
|
|
|
|
|
|
## About |
|
|
|
I developed this program to simply make it easier to manager all your ssh accounts |
|
|
@ -45,28 +62,36 @@ every time you wish to connect to a computer -- which can be a lot for some peop |
|
|
|
This program keeps track of all your ssh accounts so they are a few keystrokes away. |
|
|
|
|
|
|
|
## Installation |
|
|
|
This program is simply a python script that you execute. For example: |
|
|
|
|
|
|
|
python3 ssh_manager.py |
|
|
|
This program is simply a python script that you execute. |
|
|
|
``` |
|
|
|
python3 ssh_manager.py |
|
|
|
``` |
|
|
|
|
|
|
|
or edit your bash configuration with an alias to make it less typing |
|
|
|
|
|
|
|
alias ss="python3 /path/to/this/file/ssh_manager.py" |
|
|
|
You can edit your bash configuration with an alias to make it easier to execute. |
|
|
|
``` |
|
|
|
alias ss="python3 /path/to/this/file/ssh_manager.py" |
|
|
|
``` |
|
|
|
|
|
|
|
To make this easier, the confuguation manager of this program will has the option to |
|
|
|
append this and a few other aliases to your bash manager. This will autobatically |
|
|
|
use the location of the scripts in the file. |
|
|
|
|
|
|
|
Please note that this program reads in a text file called "servers.txt". In order for |
|
|
|
the bash manager to know where this text file is, please edit line 11 of ssh_manager.py |
|
|
|
it should look something like this: |
|
|
|
The first time you run this program it will ask you for the locations where you want to store |
|
|
|
some files which will be used to store the host names and user accounts. The default is to put |
|
|
|
it in the same directory as the source code. |
|
|
|
|
|
|
|
|
|
|
|
INPUT_FILE = "/path/to/servers.txt" |
|
|
|
|
|
|
|
## Usage |
|
|
|
Your first time running you should see: |
|
|
|
After you accept the configuration you will see something like this. |
|
|
|
```` |
|
|
|
************************************** |
|
|
|
* SSH manager V 0.2 * |
|
|
|
* SSH manager V 1.1 * |
|
|
|
* A) Exit * |
|
|
|
* B) Manager tools * |
|
|
|
* C) Socks Tunnel * |
|
|
|
* D) SSH Drive Manager * |
|
|
|
************************************** |
|
|
|
|
|
|
|
************************************** |
|
|
|
```` |
|
|
|
I would like to believe that I made this menu intuitive enough so you don't have to |
|
|
@ -75,14 +100,15 @@ read any documentation. However... |
|
|
|
Typing B will pull up this menu: |
|
|
|
|
|
|
|
```` |
|
|
|
************************************** |
|
|
|
* Options * |
|
|
|
* 1) Add Host * |
|
|
|
* 2) Copy SSH key to server * |
|
|
|
* 3) Remove host name * |
|
|
|
* 4) Return to ssh manager * |
|
|
|
* 5) Exit * |
|
|
|
************************************** |
|
|
|
************************************** |
|
|
|
* Options * |
|
|
|
* 1) Add Host * |
|
|
|
* 2) Copy SSH key to server * |
|
|
|
* 3) Remove host name * |
|
|
|
* 4) Return to ssh manager * |
|
|
|
* 5) Manage Configuration and Bash * |
|
|
|
* 6) Exit * |
|
|
|
************************************** |
|
|
|
Enter selection: |
|
|
|
```` |
|
|
|
This is where you can run the add host names to the manager -- same as adding them to |
|
|
@ -95,16 +121,19 @@ you can use the "2" option to copy your ssh key to a server. |
|
|
|
|
|
|
|
"4" Returns to the main manager window. |
|
|
|
|
|
|
|
"" |
|
|
|
|
|
|
|
If you added some accounts your main window should look like this: |
|
|
|
|
|
|
|
```` |
|
|
|
************************************** |
|
|
|
* SSH manager V 0.2 * |
|
|
|
* SSH manager V 1.1 * |
|
|
|
* 1) user1@host_name * |
|
|
|
* 2) user2@host_name_2 * |
|
|
|
* A) Exit * |
|
|
|
* B) Manager tools * |
|
|
|
* C) Socks Tunnel * |
|
|
|
* D) SSH Drive Manager * |
|
|
|
************************************** |
|
|
|
```` |
|
|
|
|
|
|
@ -128,4 +157,20 @@ Now whichever computer you select, it will open a socks proxy. To use the proxy |
|
|
|
localhost and port 8123. |
|
|
|
|
|
|
|
|
|
|
|
# SSH Drive Mount Manager |
|
|
|
|
|
|
|
This manager makes it easier to mount ssh drives using the "fusermount" command. |
|
|
|
|
|
|
|
``` |
|
|
|
************************************** |
|
|
|
* SSH Drive Manager * |
|
|
|
* 1) Mount SSH Drives * |
|
|
|
* 2) Un-Mount SSH Drives * |
|
|
|
* 3) Remove Remote Drive * |
|
|
|
* 4) Add Drive to Mount * |
|
|
|
* 5) View Drives * |
|
|
|
* 6) Usage * |
|
|
|
* 7) Manage Config * |
|
|
|
* 8) Exit * |
|
|
|
************************************** |
|
|
|
``` |