Xterm
This page requires major clean-up!
The basics
Intermediate
user@computer:~$ ln -s /sbin/ifconfig /usr/bin
- The user PATH does not include /sbin for some reason by default on NITs, which is annoying as typing in /sbin/ifconfig - which should be in /usr/bin/ anyway. Thus we are going to symlink it.
user@computer:~$ ifconfig | grep "inet addr"
- Example use of grep. grep outputs the entire line matching the pattern, in this case "inet addr" which is piped into it from the output of ifconfig using the | pipe character
user@computer:~$ ifconfig | grep "inet addr" | awk '{ print $2 }' | cut -d : -f2
- Advanced example pipes from ifconfig to grep to awk and finally to cut to output the clean IP address which can then be fed into something else if desired
Logged in as root from here on out. Not necessary for every command but for some of them. If you have sudoer installed you can simply prefix each command with sudo. If not you are gonna use an equivalent of sudo su - or simply login a root using another method. For easyroot users, simply type $ root and enter.
This next section is Debian-based specific
The following is networking specific
root@computer:~# ssh name@192.168.1.100
...
Are you sure you want to continue connecting (yes/no)?yes
name@desktop:~$ exit
- SSH example. Specify the user _at_ the IP address of the computer you want to access. Keep in mind that this works only over LAN by default (you need to forward port 22 on the router and give outside IP address or use some type of fake VPN). If you get a RSA error message, simply delete ~/.ssh/known_hosts using $ rm ~/.ssh/known_hosts Type exit to leave remote session
root@computer:~# scp name@192.168.1.100:/home/name/randomfile /home/user/
user@computer:~$ ls /home/user/randomfile
- File is copied from remote computer to local computer to user's home directory. Root's home directory is /root
root@computer:~# ssh name@192.168.1.100
name@desktop:~$ screen
name@desktop:~$ hello
- Leaves a shared session open
friend@laptop:~$ ssh name@192.168.1.100
name@desktop:~$ hello world
- Allows you to work with a friend or simply resume a session later. Good for long tasks that need to disconnect from a machine and reconnect later.
root@computer:~# ssh name@192.168.1.100
name@desktop:~$ screen -ln nano /etc/resolv.conf
- [Nano instance]
[CTRL]+[A]+[D]
- Detaches from a screen leaving a process running on a remote machine
name@desktop:~$ exit
root@computer:~# ssh name@192.168.1.100
name@desktop:~$ screen -r
- [Nano instance]
[CTRL]+[X]
name@desktop:~$ exit
- [screen is terminating]
name@desktop:~$ exit
root@computer:~#
- Detach a process. If you are running a process via ssh on a remote machine, the process is killed when the connection is interrupted, unless it was detached with screen.