Hey everyone! Today, we had an exciting Linux installation session at our college. We expected many to do a full Linux installation, but instead, we set up dual boot on 10+ machines!
Topics Covered: Syed Jafer β FOSS, GLUGs, and open-source communities Salman β Why FOSS matters & Linux Commands Dhanasekar β Linux and DevOps Guhan β GNU and free software
Challenges We Faced
BitLocker Encryption β Had to disable BitLocker on some laptops BIOS/UEFI Problems β Secure Boot, boot order changes needed GRUB Issues β Windows not showing up, required boot-repair
this command will clone all the files present in the repository.
but please make sure that you have installed git on yourΒ PC.
Then change directory to simplecalculatorbash using
cd simplecalculatorbash/
changing directory to simplecalculatorbash
then type,
chmod +xΒ calci.sh
modifying permissions to executables
this command changes the permission to run on user without depending on rootΒ . So that many PC cause this error that permission was denied while executing theΒ file.
For execution runΒ type,
./calci.sh
command to execute simplecalculator
and press enterΒ key
which will run very colourful calculator interactive prompt by installing dependencies which I posted onΒ GitHub.
calculator performing addition of two numbers interactively
pidof ---> find the process ID of running program vi test --> new process ps -ef | grep vi pidof vi pwdx 8279 to know the present working directory of vi using pid.
nice value
NI β> (-20 to 19) highest priority to lowest priority range.
1 to 19 β> non root users will aslo set the ni values
-20 to -1 β> root user only set the value
to modify the program priority.
ps -l --> process list to change the priority of the running program nice -n 11 ps -l
renice
changing the priority of the running program.
user-management
useradd
create a new user or update default new user information.
tail /etc/passwd β> userslist
adduser β> adduser, addgroup β add a user or group to the system
sudo passwd sample to set a password for sample user. sudo passwd -Sa to check all the users having password or not. set a password for the sample user
after setting the passwd for sample user
sudo passwd -d sample d --> delete NP --> no passwd
user-delete
sudo userdel sample sudo userdel -r sample --> to delete with home
Group
to create group with user
to create a group
addgroup :
deletegroup :
sudo groupdel groupname sudo delgroup groupname
sudo usermod -aG sudo username permission to using i commands for new user to give sudo or root previlage for new user.
pidof ---> find the process ID of running program vi test --> new process ps -ef | grep vi pidof vi pwdx 8279 to know the present working directory of vi using pid.
nice value
NI β> (-20 to 19) highest priority to lowest priority range.
1 to 19 β> non root users will aslo set the ni values
-20 to -1 β> root user only set the value
to modify the program priority.
ps -l --> process list to change the priority of the running program nice -n 11 ps -l
renice
changing the priority of the running program.
user-management
useradd
create a new user or update default new user information.
tail /etc/passwd β> userslist
adduser β> adduser, addgroup β add a user or group to the system
sudo passwd sample to set a password for sample user. sudo passwd -Sa to check all the users having password or not. set a password for the sample user
after setting the passwd for sample user
sudo passwd -d sample d --> delete NP --> no passwd
user-delete
sudo userdel sample sudo userdel -r sample --> to delete with home
Group
to create group with user
to create a group
addgroup :
deletegroup :
sudo groupdel groupname sudo delgroup groupname
sudo usermod -aG sudo username permission to using i commands for new user to give sudo or root previlage for new user.
stream editor for filtering and transforming text.A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). g β> globally change the content without g it will change only first word. s -> search.
Paste
paste -d "||" state.txt tech.txt | head -n 3
Merge lines of files. Write lines consisting of the sequentially corresponding lines from each FILE, separated by TABs, to standard output.
d β> delimeter , β|β it seperate the two merged files.
stream editor for filtering and transforming text.A stream editor is used to perform basic text transformations on an input stream (a file or input from a pipeline). g β> globally change the content without g it will change only first word. s -> search.
Paste
paste -d "||" state.txt tech.txt | head -n 3
Merge lines of files. Write lines consisting of the sequentially corresponding lines from each FILE, separated by TABs, to standard output.
d β> delimeter , β|β it seperate the two merged files.
output of the first command goes to the input of the second command
cat /proc/cpuinfo | grep core
grep key is used to identified the matching words
vim
vim text1.txt --> create a file in vim editor i to insert esc:wq! --> to save the file vim text1.txt --> to edit the file esc:q! --> to exit the editor
find
to search a file in particular directory and find a particular directory
find . -name text.txt
it will display the path where the file is saved.
find . -type d -name eclipse find . -type f -name eclipse
f to find a file , d to find a directory
env
environment variable is useful written scripts
env --> to display all env values export name = elavarasu --> to create env var and values
df -> to know the system space
df
to view the free spaces and used spaces in system.
df -h
to view the free spaces and used spaces with human readable format
df -h -total
to display total used and free spaces
less
to read a content one page at a time
less /prop/cpuinfo
use spacebar to read page by page
use up-arrow to read last line
use down-arrow to read line by line
use g to go the first line
use shift+g to last line
use q to quit
sort
to arrange in a particular order
sort filename
to sort a file content in a particular order
sort filename1 > filename2
to save the sorted content to another file
sort -u filename
to remove the duplicate file.
sort -u filename > uniq
It will display the unique value with sorted order
sort -u filename > uniq -d
It will display duplicate values with sorted order
sort sort.txt | uniq -i
It removes cases values
uniq
uniq filename
to display the unique content
uniq -c filename
to know how many time it will counted
cut
removing the section from each section of the file