Skip to main content

Simplyfying | apt-get | in Linux

When you start with any Linux Distribution, like Ubuntu, Kali Linux and such, it is required to make yourself aware about "apt-get" command. 



As "apt" stands "Advance Package Tools". This command is very handy and makes easy to handle packages in Linux. This command is basically used for installing, update and upgrade your packages etc.

Let's study few important features of apt-get:


• | apt-get install | : 

This command is used to install any software packages in Linux Operating System. Refer the syntax below:

{ sudo apt-get install "software name"


• | apt-get update| :

 This command is initiated to update packages. Refer the syntax below:

{ sudo apt-get update } to update packages.

{ sudo apt-get update "package-name" } to update particular package.

This command will make you see three lines in terminal: hit, ign and get.

hit: This reflection in terminal means there is no change made in package version.

ign: This reflection in terminal means that package is being ignored due to certain reason. This is not an error, it simply means either package version is very recent or some issue while retrieving the file but issue was minor hence ignored.

get: This reflection in terminal means new version of package is available.


• | apt-get upgrade|

When you have updated the installed packages, you can simply upgrade those packages using this command.

Using "man" command along with apt-get, you can view the complete manual for apt-get in Linux. 

That's all for now. Thanks for reading.

Author: Shashank

Comments

  1. Very informative,looking for more such blogs to improve my knowledge, thankyou Shashank sir

    ReplyDelete

Post a Comment

Popular posts from this blog

Embed Backdoor in any Android app | Android Hacking | Tricky Hash |

  H OW TO  CREATE A ANDROID TROJAN INTRO Everybody  install and use apps these days. So, the easiest way to hack a android by embed a Backdoor to a normal apk File. Now, install this apk file in your Victim's phone by using some Social Engineering trick.  When it is executed the user will see a normal app but in the same time our Backdoor will be running in the Background. REQUIREMENTS A Legitimate android apk file. Kali Linux  The FATRAT (Linux Tool) PROCEDURE   To embed Backdoor in any legitimate apk, we use fatrat. We have to install Fatrat in out terminal. Fatrat is used to generate local or remote listeners. It can generate payloads in various formats.  To Install Fatrat we'll have to use the following commands:  git clone  https://github.com/Screetsec/TheFatRat.git After cloning into TheFatRat now type: ls (enter) cd TheFatRat (enter) ls (enter) chmod +x setup.sh (enter) ls (enter) ./setup.sh (enter) It will automatically install all th...

CARDING!(BASICS,PROCEDURES,PRECAUTIONS,CONSEQUENCES)

part-1  * Why does the bank card number have #16 digits and what do these number s mean? * * 16 digits * on the card contains important information and * 6 digits * The first is the bank identification number and specifies which bank issued the card.  By examining these * 6 digits *, programmers will recognize the card issuing bank. "Brought to you by the Dark Army. * (Bank Identification Number) *   they say.  This number for some banks is as follows: Bank name Bank                       Bank Code      ----                       --------- Chemical Bank                    1263 Marine Midland                   6207 [1207?] Manufacturers Hanover Trust      1033 Citibank               ...

How to Guess any Password like Hackers Do | Password Cracking | Ethical Hacking |

In this article, I am going to tell you how Hackers and Crackers crack the password by Guessing. After reading this, you will be able to start think like a hacker. They use some methodologies while guessing and cracking passwords. So let's dive into it:  1. Guess the most common passwords At the end of every year, a list of the 25 most common passwords is released. These passwords are the easiest to guess and thus the most commonly hacked. Though you should avoid picking any of these passwords for yourself, try guessing from this list of passwords: 123456@  12345678  abc123  qwerty  monkey  letmein  dragon  baseball iloveyou  trustno1 1234567  sunshine  master  123123  welcome  shadow  Ashley  football  Jesus  Michael  ninja  mypassword  password1 2. Use some common password tricks  Other than guessing the most obvious passwords, there are a some tricks that are used by hackers....