Tag: tutorials

  • Linux Tutorial Series – 140 – Links – what are those?

    Here is the video version, if you prefer it:

    Let’s talk about links – what are those anyway?

    Link is a pointer to a file or a directory. If you are not a programmer, a pointer is exactly what its name says it is – it is used for pointing to something. Let’s look at the following situation:

    mislav@mislavovo-racunalo:~/Linux_folder$ ls -l

    total 36

    -rw-r--r-- 1 mislav mislav 8 Feb 5 23:09 1264.txt

    -rw-r--r-- 1 mislav mislav 8 Feb 5 23:06 1-4.txt~

    -rw-r--r-- 1 mislav mislav 8 Feb 5 23:06 2345.txt

    The number in the second column (after file permissions) is the link count. Why is this link count number equal to 1 for these files? Because the only link that exists at this time is the link which is pointing from Linux_folder to the file.

    You can increase the number of links to a file and there are two types of links – only one type of link increases the link count. But that’s a topic for another article.

    Thank you for reading and hope you learned something useful!

  • Linux Tutorial Series – 139 – How files and directories are represented internally – inodes

    Here is the video version, if you prefer it:

    Let’s clear out one more conceptual thing before we jump into other things – how are files and directories represented internally.

    See, a usual filesystem you will find on Linux consists of a pool of data blocks where you can store data and a database system that manages the data pool. The database contains entries which describe the file type, file permissions and where the file is stored in the data pool. (Ward, 2014)⁠ These database entries are called inodes. Interestingly, the inodes don’t store the file name. (“Where are filenames stored on a filesystem?,” n.d.)⁠

    Files and directories are represented as inodes. This is imporant to keep in mind as we progress, although in my explanations I try to review some key concepts before explaining new ones.

    Hope you learned something new!

    References

    Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Page 87

    Where are filenames stored on a filesystem? (n.d.). Retrieved February 29, 2020, from https://unix.stackexchange.com/questions/117325/where-are-filenames-stored-on-a-filesystem

  • Linux Tutorial Series – 138 – Disks, partitions and filesystems – how do they relate to each other?

    Here is the video version, if you prefer it:

    Today let’s talk about the thing that bothered me for some time. What is a partition exactly? What is a filesystem, exactly? How do they relate to each other?

    Let’s go top-down, from the biggest to the smallest. First, the hardware – the permanent storage devices. There are many permanent storage devices, but let’s focus on the ones most people use in their computer for permanent storage. They can be either hard drives or solid state drives. Permanent storage device is the physical device your data is stored on. Again, the term also includes USB drives, CDs and DVDs, but let’s focus on hard drives and solid state drives. Let’s call them disks.

    Partitions are subdivisions of the whole disk. A disk can, thus, be divided into multiple partitions. Partitions are defined on a small area of the disk called a partition table. (Ward, 2014)⁠

    Every partition has a filesystem. A filesystem is a hierarchy of files and directories you are accustomed to interacting with. A filesystem resembles a database. A great illustration of this is in the figure below, modeled after (Ward, 2014), page 66.

    If we want to access a file, we first consult the partition table to see which partition we need to access. Then after we access that partition, we consult the filesystem database to find the data we are looking for.

    I think this is important to understand conceptually, as there is a lot of confusion between what is a partition and what is a filesystem. I hope this cleared it up.

    Thank you for reading!

    References

    Ward, B. (2014). How Linux Works: What Every Superuser Should Know (2nd ed.). No Starch Press. Pages 66-67

  • Linux Tutorial Series – 137 – Checkpoint

    Here is the video version, if you prefer it:

    Next up, we will talk about devices at a low-level. More specifically, we will talk about how are devices represented in your Linux system, what are links, what is mounting, what is unmounting and some other things related to devices which are not as important, but warrant a quick read.

    This is not really important for your everyday use, but you will almost guaranteed encounter some device-related things (especially if you are a software developer), so it pays to know these things in those moments. And yes, even if you are a regular user, it pays to know these things. So read on. Don’t lose your enthusiasm – you are still learning the fundamental things.

    Talk soon!

  • Linux Tutorial Series – 136 – Review

    Here is the video version, if you prefer it:

    We talked about compression and package management. Here is a review of the most important things:

    • Use gzip fileName and gunzip fileName for archives ending in gz
    • Use tar cvf archiveName.tar file1 file2 … for creating a tar archive file and use tar xvf archiveName.tar to extract a tar archive
    • To update your package list, run apt-get update (prefixed with sudo)
    • apt-get install packageName to install packages from a package repository or dpgk -i packageFileName to install a package from a file
    • sudo apt --purge remove packageName to remove a package, then sudo apt --purge autoremove to remove its dependencies
    • To upgrade your packages, run apt-get upgrade
    • /etc/apt/sources.list keeps a list of repositories Linux looks into when it is searching for new packages

    I hope you refreshed your memory!

  • Linux Tutorial Series – 135.1 – /etc/apt/sources.list

    /etc/apt/sources.list file contains repositories your operating system searches for when it looks for packages.

    So if some tutorial asks you to modify /etc/apt/sources.list, you are modifying (most likely adding) repositories your operating system looks at when it searches for packages.

    Warning: Adding new unknown repositories can be dangerous, because you don’t know what the packages in these repositories contain. Keep this in mind.

    Thank you for reading!

  • Linux Tutorial Series – 135 – Other package operations

    Here is the video version, if you prefer it:

    Besides installing, removing and upgrading packages, there are a lot of things you can do with them – you can list installed packages, determine whether a package was installed, display information about an installed package and find which package installed a file. (Shotts, 2019)⁠ I have never used these functionalities so far, so I will not talk about them. A quick Google search or a look at the reference can give you the answers to these queries, if you ever need to use them.

    Thank you for reading!

    References

    Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Pages 202-203

  • Linux Tutorial Series – 134 – Upgrading a package

    Here is the video version, if you prefer it:

    Upgrading your packages means installing newer versions of them. You do so by running: (Shotts, 2019)⁠

    apt-get upgrade

    You do need to prefix it with sudo.

    Hope you learned something useful!

    References

    Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Pages 201-202

  • Linux Tutorial Series – 133 – Removing a package

    Here is the video version, if you prefer it:

    Here is how you can remove packages from your computer: (“How can you completely remove a package?,” n.d.)⁠

    sudo apt --purge remove packageName

    Then after that, to remove the dependencies that were just used by that package and aren’t used by any other package anymore:

    sudo apt --purge autoremove

    There may be some configuration files left over, either in the .config directory in your home folder or as a standalone hidden file (which means its filename starts with a .). You have to delete those manually.

    Hope you learned something useful!

    References

    How can you completely remove a package? (n.d.). Retrieved February 11, 2020, from https://askubuntu.com/questions/151941/how-can-you-completely-remove-a-package

  • Linux Tutorial Series – 132 – Installing a package

    Here is the video version, if you prefer it:

    There are two ways to install a package. (Shotts, 2019)⁠ One of them is from a repository:

    apt-get install packageName

    The other is from a file:

    dpgk -i packageFileName

    Hope you learned something useful!

    References

    Shotts, W. (2019). The Linux Command Line, Fifth Internet Edition. Retrieved from http://linuxcommand.org/tlcl.php. Pages 199-200