Found 105 Articles for Information Technology

How to optimize and compress jpeg or png images in linux

Lakshmi Srinivas
Updated on 21-Oct-2019 07:19:52

309 Views

Do you want to optimize the images or compress images without losing its original quality before uploading them to any cloud or local storages? There are plenty of GUI applications or web applications which are available that will help you to optimize the images. This article helps you to optimize and compress JPEG or PNG images in Linux Command Line.Using jpegoptimjpegoptim is a simple utility to optimize JPEG images without losing quality. It provides lossless optimization and “lossy” optimization based on the setting with a maximum quality factor.To install jpegoptim , use the following command –$ sudo apt-get install jpegoptimThe sample ... Read More

How to download mp3 tracks from youtube video using youtube dl

Lakshmi Srinivas
Updated on 21-Oct-2019 07:09:34

3K+ Views

There are several ways to download MP3 tracks from Youtube such as web applications, windows applications and command line tools in Linux. Youtube-DL is one of the best available tools in the market to download tracks from youtube. It is developed in Python programming language. This program can be used in almost all Linux distributions. If you haven’t heard about this tool then this article is for you.Installing Youtube-DLTo install youtube-DL, use the following command –$ sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dlThe sample output should be like this –--2016-03-08 11:41:21-- https://yt-dl.org/downloads/latest/youtube-dl Resolving yt-dl.org (yt-dl.org)... 95.143.172.170, 2001:1a50:11:0:5f:8f:acaa:177 Connecting to yt-dl.org (yt-dl.org)|95.143.172.170|:443... connected. HTTP request ... Read More

How to find and sort files based on modification date and time in linux

Lakshmi Srinivas
Updated on 21-Oct-2019 06:58:26

1K+ Views

While working with computers, we have a habit of saving a lot of information in our computers such as files, folders, etc. Normally desktop looks like a mess but the problem arises when users want to search a modified file on a particular date or time. There are simple commands which are available in Linux to search a modified file. This article describes “How to Find and Sort Files Based on Modification Date and Time in Linux”.List Files Based on Modification TimeThe list command shows a list of files, directories, information about date and time of modification or access, permissions, ... Read More

How to opt out of interest based advertising and stop the ads from following you

Lakshmi Srinivas
Updated on 11-May-2022 13:47:08

199 Views

What do interest-based ads mean? I am sure everybody has seen the online ads. Well, have you noticed how, when you log into a website and the ads show you something you would perhaps be interested in?You could just be browsing and you find the exact computer or mobile or even shoes that you need? Or if you are looking for a new car and there pops an ad for car interiors? Or you are an interior designer and logging on to any website still shows you the curtains you had seen a month ago? Or you could be looking ... Read More

How to find and kill running processes in linux

Lakshmi Srinivas
Updated on 21-Oct-2019 06:47:13

346 Views

Do you think Linux computers will automatically handle process by itself? Sometimes administrators need to handle processes. Process management is one of the important aspects for Linux administrators. This article describes”How to find and kill running processes in Linux”.Linux creates a process whenever a program is opened, either by the user or by Linux. This process contains information about “how a program is running”. When a process or application is opened , it keeps on changing from one state to another and it usually stays in either of the following states –Running State – It means the process is executing or ... Read More

How to show historical and statistical running time of linux systems

Lakshmi Srinivas
Updated on 21-Oct-2019 06:44:54

88 Views

The important part of the system administrators is to monitor and examine for a way long Linux system has been strolling. It is a just right concept to hold tracking up time of the Linux systems to optimise the system assets. This article describes Tuptime tool that can help System Administrators to know for how long a Linux machine has been up and running.Tuptime tool is used for reporting the historical and statistical running time (uptime) of Linux systems, which tracks it between restarts.FeaturesRegister the first boot timeTracks System startupsCounts System shutdownsCalculates uptime and downtimeCalculates largest, average, low uptime and downtimePrint ... Read More

How to use rainbow colors in linux terminal

Lakshmi Srinivas
Updated on 21-Oct-2019 06:38:17

1K+ Views

This article is for those who believe that Linux command line is boring and there is not much fun. To create an interesting colorful setting lolcat utility can be used, which produces rainbow colors in Linux terminal. Lolcat utility works for Linux, BSD and OSX which concatenates like similar to cat command.Installing LolcatLolcat utility is one of the gem in Ruby programming language. Hence, if you would like to practice this tip, it is essential to install the latest version of Ruby.To install Ruby use the following command –$ sudo apt-get install rubyThe sample output should be like this –Reading package ... Read More

How to generateencryptdecrypt random passwords in linux

Lakshmi Srinivas
Updated on 21-Oct-2019 06:33:45

67 Views

Security is one of the major concern in the cyber world. Cyber security, also referred to as information technology security, focuses on protecting computers, networks, programs and data from unintended or unauthorized access, change or destruction. We use passwords for computers, emails, cloud, phone, documents and what not. We all know the basics of choosing a password that is easy to memorize and hard to guess. Still, If users want to encrypt or decrypt passwords, then Linux provides you lot of options.This article describes “How to Generate/Encrypt/Decrypt Random Passwords in Linux”.PWGenPwGen is a random unique password generator. To install PWGen, ... Read More

How to record your desktop screen with youtube

Lakshmi Srinivas
Updated on 21-Oct-2019 06:30:22

124 Views

Screen recording is an awesome feature and supposed to be the best way to illustrate something which is happening on your screen. For instance, if you wish to share your own computer screen for giving training or for gaming purpose, this is definitely a much more easier method than setting up a camera in front of the screen and getting a grainy, shaky video. Moreover, screen recorded videos seem much more professional and educational when it comes to teaching, as learning becomes more practical oriented. The viewer knows exactly what to do and where to go. Much better than sitting ... Read More

How to find out linux operating system system is 32 bit or 64 bit

Lakshmi Srinivas
Updated on 18-Oct-2019 13:36:22

323 Views

Many users are confused whether Linux system’s OS is 32-bit or 64-bit. As we all know, we can’t install 64-bit applications into a 32-bit OS type. Before re-installing Linux or clean Linux, we should verify if Linux system OS is 32-bit or 64-bit. This article guides you about “How to find out Linux operating system system is weather 32-bit or 64-bit”.uname Commanduname is the universal command and it will work on almost all Linux/Unix operating systems. The below command will display your Linux system’s OS type-$ uname -aThe sample output should be like this –$ uname -a Linux linux 4.2.0-30-generic ... Read More

Advertisements