Linux Installing VNC Server in Rocky Linux 8 VNC(virtual network computing) is a screen-sharing client-server system. System administrators and support staff use it to troubleshoot issues on a remote computer without physically being there. VNC applications include TeamViewer, Anydesk, TigerVNC, TightVNC, etc.
Linux Installing Angular.js on Ubuntu AngularJs is a Javascript framework. With it, we can build scalable single-page applications(SPAs) using HTML and Typescript. It was developed and is currently being maintained by Google. We learn how to install Angular in Ubuntu.
Linux Installing PHP Composer on Rocky Linux 8 PHP composer is an open-source application-level package manager for managing application dependencies and libraries used during PHP development. We learn how to install composer in Rocky Linux.
Linux [Fixed] E514: write error (file system full?) In this article, we have explained the source of the error "E514: write error (file system full?)" which you may encounter while editing a file and have presented a fix for it.
Linux nohup command in Linux We use the nohup command to keep a process from being killed when the kernel sends the SIGHUP signal to the process when the terminal is closed. In this article, we learn about this command through examples.
Linux md5sum and sha256sum commands in Linux MD5(message-digest algorithm) and SHA-256 are hashing algorithms that take in a message and produce a fixed-length digest/hash we can use to verify the integrity of a file or directory. We learn about md5sum and sha256sum commands in Linux.
Linux tmux in Linux A terminal multiplexer allows us to manage multiple terminal windows and sessions. In this article, we learn about tmux, installation, sessions, windows, synchronization, and more.
Linux Swap space in Linux Swap space is virtual memory allocated on the hard disk that is used to hold inactive memory pages when RAM is depleted. In this article, we learn all about swap space and how to create a swap file in Linux.
Linux proc file system in Linux The proc file system is a virtual file system generated on the fly when the system starts. In this article, we learn about the files and directories making up this file system.
Linux watch command in Linux We use the *watch* command to execute commands at regular intervals. We also use it for real-time logging of the command output. In this article, we discuss this command and understand it through various examples.
Linux dmesg command in Linux We use the dmesg command to print log messages stored in the kernel ring buffer. In this article, we learn about this command through various examples.
Linux Splitting VIM windows VIM is a powerful, light-weight open source text editor. In this article we learn how to split VIM screens, switch between them, changes sizes and close them.
Linux source command in Linux The source command reads and executes the contents of a file in the current shell environment. In this article, we learn about this command through various examples.
Linux Open multiple files with Vim VIM is one of the many Linux text editors. It is configurable and programmable. Usually, we open a single file with VIM. In this article, we demonstrate how to open multiple files in a single VIM session.
Linux Hard and Soft file links in Linux In Linux, everything is a file. We use links to access deeply nested files in a file system easily. We learn about soft and hard links in Linux, including how to create and remove them.
Linux Globbing in Linux Globbing involves bash interpreting glob characters to perform filename expansion of pattern searching in Linux. In this article, we will learn about globbing through various examples.
Linux file command in Linux In Linux we use the file command to determine the type of file. With this command we can know the type of file we are dealing with, this also includes compressed files and special files. In this article we learn about this command using various examples.
Linux look command in Ubuntu We use the look command to display lines in a file starting with a specified string. In this article, we learn about the look command through various examples.
Linux ar command in Linux As described in the manual page, the ar(archiver) command is used to create, modify, and extract from archives. In this article, we learn about this command through various use cases.
Linux Aliases in Linux Some commands in Linux are long and repetitive. Aliases enable us to make them shorter by mapping a long command to a shorter one. In this article, we discuss aliases in Linux.
Linux xargs command in Linux We use xargs to build an execution pipeline whereby we can send input to another command that does not accept piped input such as echo, mkdir, etc. In this article, we have learned the uses of xargs using various examples.
Linux tee command in Linux The tee command reads standard input and writes it to standard output and a file or multiple files. We use it in cases where we want to send the output of a command to a file and at the same time want to print it out to the standard output. Let's discuss it.
Linux time command in Linux When executing commands in Linux, we may want to know how long it takes or how much of the system resources a command or program uses. We use the time command for such situations.
Linux sleep command in Linux The sleep command delays execution of shell scripts and commands for a specified. This could be minutes, seconds, hours or even days. In this article we learn about this command through various examples.
Linux wait command in Linux In Linux, we use the wait command to wait for a process to terminate then print its exit status. This is very useful in cases where the exit status of a predecessor command determines the execution of the following command. In this article, we learn about this command through various examples.