If you want to enable automatic login in Ubuntu 24.04, Ubuntu 23.04 and other Linux Ubuntu Systems, follow the steps given below. Automatic login, also known as auto-login is a way to login directly (automatically) without entering a password at the login screen. When automatic login is enable you won’t have to type your password […]
Ubuntu
Latest Ubuntu news updates, Ubuntu tutorials and tips for Ubuntu Linux. Learn to use one the most popular Linux distros. Get the updates and latest releases for Ubuntu.
Download and Install Mozilla Firefox as DEB in Ubuntu Terminal
Download Firefox deb file for Ubuntu and install Mozilla Firefox as DEB in Ubuntu Terminal. Step 1: Create an APT keyring directory to store APT repository keys if it doesn’t exist on your system: Step 2: Import the Mozilla APT repository signing key: wget -q https://packages.mozilla.org/apt/repo-signing-key.gpg -O- | sudo tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null NOTE: The […]
How To Use Free Command In Linux Command Line With Examples
How to check free memory in Linux commandline. This tutorial explains free command in Linux with options and examples. Free Command In Linux With Options And Examples The free command is used to display the total amount of free and used physical and swap memory on the system. It also displays the buffers and caches […]
How to Find Files That Have Been Modified in Last 24 Hours
Ubuntu users can use find command with -mtime option to find files that have been modified in last 24 hours. The find command is used to locate files and directories based on various criteria. Using find Command The ‘find’ command searches the directory tree rooted at each file name FILE by evaluating the EXPRESSION provided. […]
Command To Rename Multiple Files In Ubuntu Terminal
This tutorial explains how to rename a file in Ubuntu Terminal or how to rename a file in Linux in same directory. Using Re mane Command The “rename” command renames the filenames supplied according to the rule specified as the first argument. If a given filename is not modified by the expression, it will not […]
How To Fix Unexpected fsck Error In Linux Ubuntu
You can run fsck manually in Linux to fix the error “unexpected inconsistency; run fsck manually fsck exited with status code 4”. Let us learn how: How to run fsck manually in Linux sudo umount /dev/sdbsudo fsck /dev/sdb NOTE: Replace the “/dev/sdb” with the partition showing error or replace /dev/sdb with the device you want […]