Skip to content

Latest commit

 

History

History
53 lines (41 loc) · 2.51 KB

ubuntu-22.04.md

File metadata and controls

53 lines (41 loc) · 2.51 KB

UBUNTU-22.04

Ubuntu is a free and open-source Linux distribution based on Debian. In this section, we will explore new features of Ubuntu 22.04. Ubuntu is one of the most popular Linux distributions. The reason being it’s main goal is to be the most user-friendly non-geek Linux operating system out there.

  • Every software either application or any operating system have its shortcomings but those softwares become best whose features outweighs their shortcomings and same is the case with the all-new Ubuntu 22.04.

Ubuntu 22.04 Download

You can download the iso file of latest version of ubuntu from here - https://ubuntu.com/#download

Requirements, Conventions or Software Version Used

Category Requirements, Conventions or Software Version Used
System 64-bit PC (AMD64), see Ubuntu 22.04 system requirements
Software N/A
Other Privileged access to your Linux system as root or via the sudo command
Conventions # – requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command
$ – requires given linux commands to be executed as a regular non-privileged user

File System Navigation

Command Description
ls List all the files in a directory
ls -l List all files and their details (owner, mtime, size, etc)
ls -a List all the files in a directory (including hidden files)
pwd Show the present working directory
cd Change directory to some other location
file View the type of any file

View, Create, Edit, and Delete Files and Directories

Command Description
mkdir Create a new directory
touch Create a new, empty file, or update the modified time of an existing one
cat > file Create a new file with the text you type after
cat file View the contents of a file
grep View the contents of a file that match a pattern
nano file Open a file (or create new one) in nano text editor
vim file Open a file (or create new one) in vim text editor
rm or rmdir Remove a file or empty directory
rm -r Remove a directory that isn’t empty
mv Move or rename a file or directory
cp Copy a file or directory
rsync Synchronize the changes of one directory to another

Community Support in ubuntu-22.04