© 2023 Hashnode
#terminal
TL;DR -- Different shells store environment variables in different locations. Set environment variables using your shell's recommended location. There are plenty of resources out there for installing…
Building a command-line chat application involves several components working seamlessly together. In this article, we'll dive into the server-side code that powers the application. We'll explore the d…
Overview This article will explain how to use Bash by creating and using the following data types or techniques: Outputting Statements Creating Strings Declaring Variables Integers or Floats Prin…
I was struggling to remember commands and tired of typing long commands. So I spent time creating TBMK - A commands bookmark for terminals. Features: Search: type and ctrl + space Delete: in the re…
Introduction If you're a Windows user diving into the world of Linux, you might have come across terms like ext4 and mount points. Fear not! In this blog, we'll unravel the mysteries of file systems i…
Install VirtualBox. Download ISO of Ubuntu. Open VirtualBox and press Create. Allocate RAM to the machine. To begin with, if you have 8 GB of RAM, you can allocate Ubuntu 2 GB. At 16 GB — 4 Gb. Thi…
In the realm of Linux system administration, knowing how to effectively manage tasks and automate repetitive processes is essential. One powerful tool that can assist you in achieving this is the cron…
nano ~/.Xresources Syntax is: xterm*faceName: <font-name>:size=<font-size> Now add (type/paste) the following line: xterm*faceName: Monospace:size=15 Save the file. Now run the following command: xrdb -merge ~/.Xresources Thats it. Enjoy …
Overview This is an introductory article to explain how to automate Bash scripts in Ubuntu by using the Terminal and a cronjob or a technique called cron. Materials Computer Ubuntu Operating System …
When navigating through a lot of files in a Linux system, knowing how to effectively use the 'find' and 'grep' commands can be very useful. As an app integrator, I often find myself needing to search for specific text within numerous files.…