Wednesday, December 28, 2022
Linux - Cal
Linux - Cache
The following is a Linux dictionary word of the day:
cache – a small fast memory holding recently accessed data, designed to speed up subsequent access to the same data.
In Linux, caching is a mechanism used to store frequently accessed data in memory to improve system performance.
Types of Cache:
Page Cache: Stores cached files.
Dentry and Inode Cache: Stores directory and file attributes.
Monday, December 26, 2022
Linux - C Shell
The following is a Linux dictionary word of the day:
C Shell – shell written to look similar to the C programming language. The program name is csh.
The C shell (csh) was created by Bill Joy in the late 1970s at the University of California, Berkeley. It was designed to improve interactive use and to have a syntax similar to the C programming language.
Key Features of C Shell:
C-like Syntax: The syntax of C shell is inspired by the C programming language.
Interactive Use: Has features such as command history, job control, and aliasing.
Scripting: C shell can be used to write shell scripts.
Friday, December 16, 2022
Linux - Bye
Linux - Bzip2
Linux - Builtin
Linux - BS
Linux - Break
break – shell script variable which accounts for exiting from a loop
n option number of how many times loop runs, the default is 1.
Example:
#!/bin/bash
for
((i=1;i<=5;i++)); do
echo $i
if [ $i -eq 3 ]; then
break
fi
done
Linux - Boot Loader
Linux - Boot
Linux - Bmconf
Linux - Biff
Linux - Bind
The following is a Linux dictionary word of the day:
bind – set, display and assign functions and macros to a key or a sequence of keys and function bindings.
This is utilized so that it is known what functions occur when certain keys are pressed.
-l parameter to list names of functions.
-P parameter to list function names and bindings.
Example: bind -l
Linux - BG
Linux - Berkeley Internet Name Domain (BIND)
Linux - Bdiff
Linux - BC
Linux - Batch
Linux - Bash
Wednesday, December 14, 2022
Linux - BaseOS
The following is a Linux dictionary word of the day:
baseos – foundation for an installation which provides the core set of the underlying operating system functionality.
Linux - Base64
Linux - Base32
Linux - Basename
Linux - Awk
Linux - Aspell
Linux - Ar
Linux - Aptitude
Tuesday, December 13, 2022
Linux Apt-Get
Used for managing software packages. Here are some of the high
level apt-get commands:
apt-get update - updates the package list from the repositories.
apt-get upgrade - upgrades installed packages to their latest versions.
apt-get install <package_name> - installs a specified package.
apt-get remove <package_name> - removes a specified package.
apt-get autoremove- removes packages that were automatically installed so
dependencies for other packages are no longer needed.