Ubuntu 18.04 LTS Desktop Installation Guide

Ubuntu 18.04 LTS – New Features: Ubuntu 18.04 LTS has been released with a lot of new features and improvements, some of the important features are listed below: Support and Updates of Ubuntu 18.04 LTS for next 5 Years (April 2023) New latest and stable Linux Kernel version 4.15 Installer offer a new option of … Read more

Unix Printer Commands (linux; kprinter)

linux understands both the Berkely lpr and the System V (lp) set of printer commands. Most distributions include a graphical-based utility allowing people more flexibility in their printing. kprinter allows people to select which printer to use, and which properties to enable, all with the click of a mouse. It is part of the CUPS … Read more

A quantum leap into the future

Quantum computing is expected to gain momentum during this decade as economic powers around the world ramp up their investments in quantum technologies.  The fact that economies have begun to invest in this technology has raised hope for it. “In India, the National Mission of Quantum Technology and Application plans to invest $1.12 billion over … Read more

Unix File system Commands: Files

This article is concerned with the creation, deletion, and manipulation of files. By the end of this section, the user should be able to identify all files within a directory, create new ones, remove others, display the contents of some, rename others, and more. ls: Listing The contents of a directory can be displayed using … Read more

Unix File system Commands: Directories

Now that the UNIX tree-structured file system has been introduced, it would be useful to know how to find our way through the system and how to create files, delete them and rename them. cd: Change Directory To move from one directory to another the cd command is used. Use as: cd [directory] directory may … Read more

UNIX TCP Wrappers

Traditionally, UNIX systems allow any host, from anywhere, to connect to its various services (such as telnetd, ftpd, POP/IMAP). Since the majority of NRC’s systems are connected directly off the Internet, it means anyone may have access to the systems and their services. To restrict who has access to which service, TCP wrappers are used … Read more

Unix SSH

SSH (Secure SHell) is a protocol used to provide secure connections between two hosts. The secure connection is provided by encrypting the entire session between the two systems. Each system has a pair of keys: a private and a public key. The keys are created at the same time, so they do have a direct … Read more

Unix File Permissions

File permissions have already been introduced in the File System article. USE them. If you have a file, or a directory which contains sensitive information, close it to everyone but yourself (using chmod 700 file). If a file is to be run, but the contents should not be seen by any user, do not allow … Read more