Linux I/O Redirection

Linux I/O redirection refers to the standard input/output such as stdin, stdout, stderr. This article gives you some examples with basic commands that you can use to accomplish I/O redirection in Linux. Cool commands [root@server /root]# ./cmd 1>out 2>err [root@server /root]# ./cmd 1>>out 2>>err [root@server /root]# (((./cmd | tee stdout) 3>&1 1>&2 2>&3\ |tee stderr) … Read more

How to install and run Genshin Impact on Linux?

Genshin Impact is a free-to-play, open-world action role-playing video game developed by miHoYo. The game allows the player to control one of four interchangeable characters in a party. Players can switch between characters quickly during combat, this allows them to use several different combinations of skills and attacks. The Genshin Impact game is available for … Read more

How to install Genymotion on Linux?

Genymotion is a cross-platform android emulator, you can use it to create and run Android Virtual Devices (AVD) on a computer. It also offers some predefined virtual devices of Android phones and tablets. Genymotion Android emulator is generally used by the android app developer to run and test their app using different virtual devices. It … Read more

AI HOWTO

News Check out this new “beta” page for DSDT tables: http://ai.sf.net/dsdt/index.php OK, fixed my Pres2701US BIOS table and booted (2.4.18 / ai / dsdt)I found that the battstat_applet doesn’t line up with what is in /proc.I edited the source code and now I see BAT1 through the applet. Now if I can convince battstat_applet to … Read more

How to install Go in Ubuntu?

Go is a modern, open-source, statically typed, compiled programming language developed by Google. It is a cross-platform language available for Windows, Linux, macOS, etc. Sometimes it is also referred to as Golang because of the domain name golang.org. In this article, I will discuss how to install the Go programming language in Ubuntu. Features of … Read more

How to enable and use Snap in Linux Mint?

There are different ways of installing a software package in Linux. We are most familiar with package management tools like apt, dpkg, OR Software manager which provides a graphical way to install packages on your system. Snap is another package format that can be used across the different distributions of Linux. By default, it comes … Read more

How to install GUI on Ubuntu server ?

Ubuntu is one of the most popular Linux distributions. It is easy to use, easy to install and includes everything that is needed from a ’s perspective. Ubuntu is officially released in three editions: desktop / GUI, server, and core for IoT and robotics. Ubuntu server by default doesn’t include a GUI or a desktop … Read more

How To Docker Images From Docker Hub In Linux?

Docker image is an immutable file that is essentially a snapshot of a container. Images are created with build command, and they produce a container when started with the run command. Docker pulls these images from the docker hub. Docker hub maintains a registry because an image can become quite large, these are designed to be composed of … Read more

How to xVideoServiceThief (xVST) for Linux?

The xVideoServiceThief or known as xVST on Linux OS is software available to video clips from different websites including the most popular ones like Youtube, Vimeo, etc. Not only Linux, but the xVideoServiceThief works for many other OS variants. Currently, it s more than 90 websites and this number is increasing continuously. In short, … Read more

How to install Android x86 in Linux?

Android-x86 is a free and open-source project that aims to port Android OS to run on devices powered by x86 processors. Its development was started in 2009 by Chih-Wei Huang and Yi Sun. Some patches, modifications are made to the Android Open Source Project (AOSP) to enable it to run on PC architecture. In this … Read more

How to create a USB drive bootable using USBImager in Ubuntu?

USBImager is a free and open-source tool with minimal GUI which writes compressed disk images to USB drives. It is available for installation on different distributions of Linux, ARM devices such as Raspberry Pi, Windows, and macOS. In this article, I will discuss how to use USBImager for creating a USB drive bootable in Ubuntu … Read more

How to monitor network traffic in Linux?

Monitoring network traffic is very important and helpful to understand the problems within the IT environment. Network performance is critical for many businesses if it fails there will be adverse effects that can cost time, money, and resources. There are various ways to monitor network traffic and performance on a Linux system. Few of them … Read more