Apt-get

 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Apt-get
# 1  
Old 07-28-2016
Apt-get

Want to install APACHE but it's saying command is not found using centos
# 2  
Old 07-29-2016
We don't want to guess what command you issued and how the output looks. Because of that, you might post both using code tags.
# 3  
Old 07-29-2016
CENTOS - YUM !

Hello,
use YUM :

-------------
Code:
12.2. yum Commands

yum commands are typically run as yum <command> <package name/s>. 
By default, yum will automatically attempt to check all configured repositories 
to resolve all package dependencies during an installation/upgrade.

The following is a list of the most commonly-used yum commands. 
For a complete list of available yum commands, refer to man yum.

yum install <package name/s>

Used to install the latest version of a package or group of packages. 
If no package matches the specified package name(s), they are assumed to be a shell 
glob, and any matches are then installed.

yum update <package name/s>
Used to update the specified packages to the latest available version. 
If no package name/s are specified, then yum will attempt to update all installed packages.

If the --obsoletes option is used (i.e. yum --obsoletes <package name/s>, yum will process 
obsolete packages. As such, packages that are obsoleted accross updates will be removed and replaced accordingly.

yum check-update
This command allows you to determine whether any updates are available for your installed packages. 
yum returns a list of all package updates from all repositories if any are available.

yum remove <package name/s>
Used to remove specified packages, along with any other packages dependent on the packages being removed.

Regards

Last edited by bdittmar; 07-29-2016 at 03:25 AM.. Reason: Mod for better reading
This User Gave Thanks to bdittmar For This Post:
# 4  
Old 07-29-2016
I just read up - so yum is the Default packet manager on CentOS. I wonder why you want to use apt then. apt is usually on Debian-like systems.
# 5  
Old 08-01-2016
Quote:
Originally Posted by zaxxon
I just read up - so yum is the Default packet manager on CentOS. I wonder why you want to use apt then. apt is usually on Debian-like systems.
yum is in fact a frontend for rpm, which is the package manager for RedHat-like systeme (one of which is CentOS). apt-get is the package manager for Debian-based systems.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Apt-get install --purge

Hello, i would like to know what is the use of that command apt-get install --purgeI understand the use of --purge while using with remove parameter, but i don't get it when it's about installing. Enlight me please ! Thx ---------- Post updated 09-03-16 at 11:35 AM ---------- Previous... (0 Replies)
Discussion started by: Purgator
0 Replies

2. Red Hat

Yum and apt-get

I know both yum and apt-get could update the package , could advise which one is better in Redhat server ? thanks Login ID ust3 is currently in read-only mode for multiple infractions. Creating new identities to avoid restrictions is not allowed. This thread is closed. (1 Reply)
Discussion started by: ust03
1 Replies

3. UNIX for Dummies Questions & Answers

Reinstall sudo apt-get?

I am using ubuntu11.10 and i was trying to do the update to 12.04, i found a post suggesting to use to solve part of the problem: sudo apt-get remove ubuntu-keyring sudo apt-get --yes -q --allow-unauthenticated install ubuntu-keyringI ran the first command but not able to run the second or any... (0 Replies)
Discussion started by: CS_NA
0 Replies

4. Debian

apt-get problems on Wheezy

I am having some troubles with apt-get. I did an apt-get update and an apt-get upgrade. Some dependencies did not download, and so I had to do `apt-get -f install` to fix that. The thing is I get an error about /var/lib/dpkg/available root@hayek:~# apt-get -f install Reading package lists...... (3 Replies)
Discussion started by: John Tate
3 Replies

5. UNIX for Advanced & Expert Users

apt vs aptitude little tutorial

Hi all I dont know if this is right place but I saw somewhere dd tutorial so I decidet to write a little tutorial about debian package manager. I hope this will clear some misundersands about it, maybe somewher i will be wrong or somebody could explain it better so any comments are welcomed. Many... (3 Replies)
Discussion started by: wakatana
3 Replies

6. Debian

apt-get error

Hello when i am giving a command apt-get install I am getting error as below: " apt-get: error while loading shared libraries: libapt-pkg-libc6.3-6.so.3.11: cannot open shared object file: No such file or directory " can u suggest what to do. step by step. (3 Replies)
Discussion started by: pradeepreddy
3 Replies

7. UNIX for Advanced & Expert Users

apt-get install error

Hello when i am giving a command apt-get install I am getting error as below: " apt-get: error while loading shared libraries: libapt-pkg-libc6.3-6.so.3.11: cannot open shared object file: No such file or directory " can u suggest what to do. https://www.unix.com/images/misc/progress.gif... (1 Reply)
Discussion started by: pradeepreddy
1 Replies

8. UNIX for Dummies Questions & Answers

Apt-get install

When I use apt-get install command, for example samba install, does that command then invokes search of entire disk to find samba packet or what? (1 Reply)
Discussion started by: salvor_hardin
1 Replies

9. Linux

apt-get craziness.....

I had mysql client installed, then I upgraded my version of perl using apt-get install. Now, I want to get mysql-client working again and when I try to install it, I get: /usr/bin# apt-get install mysql-client Sorry, but the following packages have unmet dependencies: mysql-client: Depends:... (2 Replies)
Discussion started by: natter
2 Replies
Login or Register to Ask a Question