ItsLinuxFOSS

How to Scroll in Ubuntu Terminal

How to Scroll in Ubuntu Terminal?

The keyboard shortcut key combinations like “Ctrl+Shift+Up”, “Ctrl+Shift+down”, “Shift+pgup”, “Shift+pgdn”, and “Ctrl+end” are used to scroll in Linux Terminal.

How to Add and Use EPIC RPG on Discord

How to Add and Use EPIC RPG on Discord

To add and use EPIC RPG on Discord, go to the website of the RPG bot, invite it to your server, and grant permissions. Use its inbuilt commands to use it.

How to Create a Table in Postgres

How to Create a Table in Postgres

To create a table in PostgreSQL, execute the CREATE TABLE statement either in pgAdmin or in psql. Postgres tables can also be created manually using pgAdmin.

How to Create a Database in Postgres

How to Create a Database in Postgres

To create a database in PostgreSQL, execute the “CREATE DATABASE” command in the SQL Shell or pgAdmin. Users can also create databases manually using pgAdmin

How to Drop va Table in Postgres

How to Drop a Table in Postgres

Execute the DROP TABLE command either in SQL Shell or in pgAdmin to drop a particular table in Postgres. A table can also be dropped manually using pgAdmin.

How to Switch a Database in Postgre

How to Switch a Database in Postgres

To switch a database in Postgres, execute the “\c db_name” or “\connect db_name” command in psql. Or you can switch a database manually using pgAdmin.

Share Sound on Discord

Share Sound on Discord

To share the sound on Discord, you can either use the drag and drop method, the default method of uploading files, or use a third-party application.

Mount a CIFS Share

How Do I Mount a CIFS Share?

The CIFS share is mounted when the mount command is used with the cifs-utility. To automatically mount, credentials are added in the/etc/fstab file.

How to Use Undo Functionality in Nano

How to Use Undo Functionality in Nano?

Different errors can be made while editing a text file using nano; use the “ALT+U” key to undo the operations and “CTRL+E” to redo the changes made.

How to Completely Uninstall Docker

How to Completely Uninstall Docker?

While uninstalling docker, a few configuration files and components must be manually deleted through a series of commands which require execution one by one.

How to Use SCP with PEM File

How to Use SCP with PEM File?

To create a “.pem” file using the SCP, use the “ssh-keygen -f ~/.ssh/id_rsa -e -m pem” command. Then, upload or download a file or directory using SCP.

How do I install .run files

How to install .run files?

In Linux, all the “.run” files can be installed by using the “chmod” command and the “Permissions” options to make them executable.

Sysctl Command in Linux Explained

sysctl Command in Linux | Explained

The sysctl command allows the user to modify the kernel parameters on the Linux system at runtime. You should only do that if you are fully aware.

pwd Command in Linux | Explained

pwd Command in Linux | Explained

In Linux, the pwd command prints out the directory you are currently working on and provides an exact path from the root to the current directory.

Kill Command in Linux Explained

kill Command in Linux | Explained

The kill command is used to pass different signals in Linux to manage the behavior of the processes. In this blog, the kill command has been explained in detail.

cd Command in Linux | Explained

cd Command in Linux | Explained

The cd command in Linux is used to change the directory. We can change our directory to another directory, home directory, or directly to the root directory

What is Uname Command in Linux

What is Uname Command in Linux

The uname command is used in Linux to display the basic information of the computer, including kernel name, hostname, kernel version, and processor type.

How to Wrap Text in Google Docs

How to Wrap Text in Google Docs?

Google Docs allows users to wrap text by using the “Wrap text” icon in the Google Docs (Desktop) and by using the “Wrap text” option in Google Docs Mobile App”.

How to Make a Line in Google Docs_

How to Make a Line in Google Docs?

In Google Docs, a line is made using the “Drawing” tool or the “Horizontal line”. Both options are available in the “Insert” tab of the MenuBar.

How do you cite APA references in Google Docs

How to Cite APA Refernece in Google Docs

Google Docs offers the “Citations” option to cite the APA references by choosing different sources such as “Book”, “Websites”, “Journal articles”, etc.

How to move a table in Google Docs

How to Move Table in Google Docs?

To move a table in Google Docs, the Cut/Paste method is used. The required table can be selected, then cut and paste at a required destination.

How to insert a video in Google Docs

How to Insert a Video in Google Docs?

Google Docs doesn’t directly support video insertion. However, the video can be copied into the drawing board from Google slides to insert into Docs.

How to Open a PDF in Google Docs_

How to Open a PDF in Google Docs?

After uploading the pdf file to the Drive folder, you can open a PDF in Google Docs through the “Open with” option. After that, modify it based on their needs.

How to Install Linux Mint 21 From USB

How to Install Linux Mint 21 From USB?

To install Linux Mint 21 from USB, first, download the iso file of Linux Mint 21, make the USB bootable with the downloaded iso file, and finally install it on the computer.

Is Ubuntu Debain Based

Is Ubuntu Debian Based?

If you are wondering whether Ubuntu is Debian based or looking for the key similarities and differences between them. Then read this article for more details.

Install OpenOffice in Ubuntu 22.04

Install OpenOffice in Ubuntu 22.04

To install OpenOffice on Ubuntu 22.04, install the JDK. Then download and unzip setup file, move to the “en-US/DEBS/” directory, and install the “.deb” package.

How to Add a Border in Google Docs

How to Add a Border in Google Docs

Google Docs provides the “Format” button and “Insert” button to add a border. The borders can also be customized as per the user’s requirements.

How to Convert Int to Binary in Python

How to Convert Int to Binary in Python

In Python, the “bin()” function, “format()” function, “f-string()” function, and “str.format()” method can be used to convert an integer to binary.