Starting with Ubuntu
Hardware is nothing but finely designed machinery. A machine is ultimately a machine only, which is always made to work. It is the kernel on an operating system that makes the hardware alive. There is a hugely popular operating system Linux which is mostly used in most sincere applications.
Linux is an open source operating system (i.e., its code is also available) created by a Finnish student Linus Torvalds. Linux is available in multiple distributions such as Ubuntu, Red Hat, Linux Mint, Fedora, Debian, CentOS and many more. In this session, you shall learn to work with Ubuntu distribution of Linux.
It's derived from Debian and composed mostly of free and open-source software. Ubuntu is officially released in multiple editions: Desktop, Server, and Core for Internet of things devices and robots. The operating system is developed by the British company Canonical and a community of other developers, under a meritocratic governance model.
Starting Ubuntu
When you boot your computer/laptop with Ubuntu, you are first taken to login screen, where you need to log in.
- On this log in screen, select the user you want to login as, enter the password and press Enter. Select user name and enter password to log in
- In a few seconds the user's desktop will appear.
- The Favorites panel on the left side of the screen contains shortcuts to frequently used applications.
- From the top right of the dark grey bar at the top you can reach Network settings, System language. Audio volume, System date and time and Power menu.
- From the Power menu you can switch to a different user, logout, power off the system or access system settings.
- To open System Settings menu, click on Power menu first and then click at System Setting. In the 'System Setting' menu you can set several different parameters for the system.
- Launch the applications listed in the Favorites panel simply by clicking on them.
- If the application you want to launch is not in the Favorites panel, use the Ubuntu Launcher. Click on the Ubuntu Launcher iconic the top left corner of the screen.
- Write down the name of the application. A list of applications matching the name you are searching will show up, for and press Enter or click on the icon of the application.
- To browse files on your computer, click on Home folder in the favorites panel.
- To surf web or launch your web browser, click at the Firefox icon in the Favorites panel
- Click on the Ubuntu Launcher icon in the top left corner of the screen, and type gnome-terminal in the search box.
- It will show the Terminal emulator's icon, click on it to launch the terminal window.
- Terminal emulator will open and will be ready for your commands.
- To exit from terminal, you can press Ctrl+d key combination.
- / (Root): The root of the filesystem. All other directories are contained within it. Only the root user has write permissions in this directory.
- /bin: Contains essential binary executables for basic system commands that are available to all users, such as ls, cp, mv, and cat.
- /boot: Holds all the necessary files for booting the system, including the Linux kernel (vmlinuz), bootloader configuration files, and initial RAM disk image (initrd).
- /dev: Stands for device files. It contains special files that represent hardware devices such as disks, printers, and other peripherals (e.g., /dev/sda for the first hard drive).
- /etc: Contains system-wide configuration files and shell scripts used to boot and configure the system. Examples include network configuration files, user login information, and system settings.
- /home: Holds the personal directories of users. Each user has a subdirectory under /home (e.g., /home/username), where their personal files and settings are stored.
- /lib: Contains essential shared libraries and kernel modules. These libraries support the binaries in /bin and /sbin.
- /media: Used for mounting external removable media like USB drives, CDs, or DVDs.
- /mnt: A generic mount point where temporary filesystems can be mounted.
- /opt: Optional software packages that are not part of the default installation. This is often where third-party software is installed.
- /proc: A virtual filesystem providing information about running processes and the kernel. This directory does not contain real files but runtime system information.
- /root: The home directory for the root (administrative) user.
- /run: Contains information about the running system, such as system-wide process IDs (PIDs), and other system runtime data.
- /sbin: System binaries, including crucial system administration commands, typically accessible only to the root user (e.g., fdisk, ifconfig).
- /srv: Contains data for services provided by the system, such as web servers or FTP servers.
- /tmp: Used for temporary files created by programs. Files stored here are usually deleted upon reboot.
- /usr: Contains user-related programs and data, including user binaries (/usr/bin), libraries (/usr/lib), and source code (/usr/src).
- /var: Contains variable data files, such as logs, mail, databases, and print queues that change frequently.
Comments
Post a Comment
For any correction, doubts or suggestion, please let me know