Skip to content

Commit 2e4b415

Browse files
committed
linux
1 parent 4722fb6 commit 2e4b415

14 files changed

+32
-36
lines changed

linux/Linux.pptx

-5.84 MB
Binary file not shown.
1.36 MB
Binary file not shown.
4.15 MB
Binary file not shown.
File renamed without changes.

linux/basics/linux-OS-concepts.pdf

526 KB
Binary file not shown.

linux/basics/linux-commands.pdf

99.4 KB
Binary file not shown.

linux/linux-conditions-loops.txt renamed to linux/basics/linux-conditions-loops.txt

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,35 @@ find / -size 50M
5353
find / -size +100M -exec rm -rf {} \;
5454
find / -mtime 50
5555

56-
find /tmp -type f -name '*.jpg' -mtime +30 -exec rm {} \;
56+
find /tmp -type f -name '*.jpg' -mtime +30 -exec rm {} \;
57+
58+
=============================================================================
59+
60+
PACKAGE MANAGERS
61+
62+
A package manager or package-management system is a collection of software tools that automates the process of installing, upgrading,
63+
configuring, and removing computer programs for a computer's operating system in a consistent manner. ...
64+
Package managers are designed to eliminate the need for manual installs and updates
65+
66+
Ubuntu (apt or apt-get )
67+
68+
apt-get update
69+
apt-get install vim
70+
apt-get update vim
71+
apt-get purge vim
72+
73+
74+
centos / redhat / amazon linux ( yum )
75+
76+
yum update
77+
yum install vim
78+
yum update vim
79+
yum remove vim
80+
81+
82+
SUSE
83+
84+
zypper update
85+
zypper install vim
86+
zypper update vim
87+
zypper remove vim

linux/package-managers.txt

Lines changed: 0 additions & 26 deletions
This file was deleted.
953 KB
Binary file not shown.
File renamed without changes.

linux/services-linux.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)