To connect to a remote host (remote computer), use ssh. (Shotts, 2019) ssh will allow you to use the command line as if you were physically present on the other computer’s Terminal. The computer you are connecting to needs to run ssh server and you need to be running ssh client.
if you want to connect with a different username other than the username on your local machine.
Note: You most likely won’t be using this if you are a desktop user, but if you are a programmer, you will most likely at least sometimes be required to connect to a machine remotely.
Thank you for reading!
References
Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Pages 234-238
If you ever need to edit connections, you can use nmtui. It came preinstalled with my Debian 10. It allows you to set your IP, among other things. I used it only once, but if you want more information, (and you can assume what I will say next) Google will give it to you.
The ip command is used to display information about network interfaces (among other things). (Shotts, 2019) Your network interface is the hardware within your computer which allows it to communicate via a computer network.
Here is an example of the ip command:
mislav@mislavovo-racunalo:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
inet 192.168.1.3/24 brd 192.168.1.255 scope global dynamic noprefixroute wlp3s0
valid_lft 81396sec preferred_lft 81396sec
inet6 fe80::5ce3:3fee:50bf:4d6f/64 scope link noprefixroute
valid_lft forever preferred_lft forever
First note that I have 3 network interfaces – each start with numbers 1 to 3. Also note that, in their first line, they have the keyword state following the word UNKNOWN, UP or DOWN. UP means that the interface is currently enabled. If you want to know your IP address, look up the inet field of the interface (before the forward slash). My IP address is 192.168.1.3. This is my local IP address, not my global IP address. You can Google “how to find out my global IP address” if you ever need to find your global IP address.
A side note: The ifconfig command was used for the purpose of finding out your local IP address before, but now it has been depracated. I couldn’t have used it on my Debian 10.
Thank you for reading!
References
Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Pages 228-229
Today let’s talk about the very basics of computer networks.
First of all, let me say that the field of computer networks is very vast. I had 2 college courses dealing with computer networks and I feel like we barely scratched the surface of the topic. So what I will do is try to introduce you to all of the concepts in computer networks we will need to understand the commands that will follow and no more. I will also be relatively broad in my descriptions and will not nitpick the details; again, just enough knowledge to cover the later commands. Computer networks could warrant a post series in it of itself and I would have to do it after extensively reviewing the subject matter.
A computer network is consisted of layers. Each time you are sending some data over a network, your data has to pass through these layers in your computer, and, at the destination computer, it also has to pass through the same layers, but in reverse order.
Each layer has a different function and addresses different concerns. There is a layer we are particularly interested in, called the network (or the internet) layer. On this layer, each device connected to a network has its own unique IP (Internet Protocol) address. This enables network devices to communicate with each other – they address each other using IP addresses. When sending data over a computer network, that data is most likely chunked into little pieces. Each one of these pieces traveling on the computer network is called a packet. Packets travel through the nodes of the computer network until they reach its destination. Packets are forwarded by routers, a piece of network hardware that routes packets to where they should go in order to reach their destination.
There is a difference between IP addresses – there is your local IP address, which is what computers within your local network use and there is your global IP address, unique to you globally. Think of it like this – if someone in your house wants to talk to your computer via a computer network, it uses the local IP address. If, on the other hand, someone wants to talk to your computer outside of your house, they have to globally address you. The same way when a family member calls your name – you know they are calling you. However, if you are to receive a letter from the police station and someone uses your name, they will use your full name, or even some identification number unique to you, so you can be sure that they are addressing you.
I think we have all it takes to look at some of the most basic network commands. Let’s take a look at them in the following posts.
A quick word on time in Linux – incorrect time can cause web browser issues. (“How to troubleshoot time related errors on secure websites,” n.d.) Many distributions support using the NTP (Network Time Protocol) daemon to maintain the time using the remote server. (Ward, 2014) You can also mangle with timezones, but I never needed this. My advice: Don’t mangle with time unless you really need to (such as when you find the error above). I never had to.
Today let’s talk about scheduling tasks (to run periodically). cron is used for this, as well as at. at is for one time jobs, while cron is for jobs that should re-occur in the future consistently. I never used any of these, as I never needed to schedule something. This is just for you to know where to look if you ever need to schedule something.
There are efforts underway to replace cron with parts of init which are responsible for scheduling tasks, so look into that as well when pondering scheduling tasks. (Ward, 2014)
Thank you for reading!
References
Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Pages 159-161
There is an entire chapter in (Shotts, 2019) dedicated to printing, but let me tell you how I print the things I want to print. I just use the GUI of the app that I am viewing the file in. I advise you to do the same. Now, could there potentially be a situation where you are accessing a Linux machine remotely and you need to print something out and you can’t use a GUI? Sure. But, I’ve never encountered it so far and I think that using Google in that particular situation would help you.
Hope you learned something useful!
References
Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Pages 361-373
In the upcoming posts, we will talk about a whole bunch of things – printing, scheduling tasks, computer networking and building a program from source.
We won’t cover any of those (except building a program from source) in much detail. The reason is because I either haven’t used it as much and thus feel that the topic is not as relevant to everyday use or the topic is very broad and I narrowed it down to the very basics.
An interesting mix coming up. Focus on the computer networking chapter most, followed by building a program from source. Feel free to quickly read the other things.