How to Find Last Modified Files in Linux

1. Use the “find” command: The “find” command is a powerful tool for finding files in Linux. To find the last modified files in a directory, use the following command: find /path/to/directory -type f -printf ‘%T@ %p\n’ | sort -n This command will search the specified directory and its subdirectories for files and print out … Read more

How To Mount USB Drive In Linux

1. Plug in the USB drive to your computer. 2. Open a terminal window and type the command “sudo fdisk -l” to list all the available drives. 3. Identify the USB drive from the list. It will be listed as “/dev/sdX”, where X is a letter or number. 4. Create a mount point directory for … Read more

How to Create Directories in Linux using mkdir Command

1. Open the terminal window. 2. Type the command “mkdir” followed by the name of the directory you want to create. For example, to create a directory called “mydir”, type “mkdir mydir”. 3. Press Enter. The directory will be created in the current working directory. 4. To create multiple directories at once, type “mkdir dir1 … Read more

How to Create EC2 Instance in AWS Step by Step

1. Log in to your AWS account and select the EC2 service. 2. Click the “Launch Instance” button. 3. Select an Amazon Machine Image (AMI) for your instance. 4. Choose an instance type. 5. Configure instance details. 6. Add storage to your instance. 7. Add tags to your instance. 8. Configure security group. 9. Review … Read more

Ubuntu No Wi-Fi Adapter Found

If you are using Ubuntu and you are unable to connect to a Wi-Fi network, it is likely that your computer does not have a Wi-Fi adapter installed. To resolve this issue, you will need to purchase and install a compatible Wi-Fi adapter. Once the adapter is installed, you should be able to connect to … Read more