LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Security
User Name
Password
Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here.

Notices


Reply
  Search this Thread
Old 03-03-2015, 08:53 AM   #1
khalil-person
LQ Newbie
 
Registered: Jan 2015
Posts: 9

Rep: Reputation: Disabled
itry install package but it delete a lot of files


Hello, i was try to install clamfs on ubuntu 12 by this command:
aptitude install clamfs,the result was suppression of lot of package about 47 is it normal and how can i reload this packages,here is the manupulaton,thanks for your help:

:~$ sudo aptitude install clamfs
Les paquets suivants seront ENLEVÉS*:
freetds-common{u} gir1.2-gstreamer-0.10{u} gir1.2-timezonemap-1.0{u}
lesstif2{u} libcfg4{u} libconfdb4{u} libcoroipcc4{u} libcoroipcs4{u}
libcorosync4{u} libcpg4{u} libevs4{u} libiksemel3{u}
libiptables-chainmgr-perl{u} libiptables-parse-perl{u} liblogsys4{u}
libnetfilter-queue1{u} libnetwork-ipv4addr-perl{u} libopencore-amrnb0{u}
libopencore-amrwb0{u} libpload4{u} libquorum4{u} libradiusclient-ng2{u}
libresample1{u} libsaclm3{u} libsaevt3{u} libsam4{u} libsensors4{u}
libsnmp-base{u} libsnmp15{u} libsox-fmt-alsa{u} libsox-fmt-base{u}
libsox1b{u} libspandsp2{u} libsqlite0{u} libsrtp0{u} libsybdb5{u}
libtimezonemap1{u} libtotem-pg4{u} libunix-syslog-perl{u}
libvotequorum4{u} libvpb0{u} linux-headers-3.2.0-74{u}
linux-headers-3.2.0-74-generic{u} module-assistant{u} sox{u}
vpb-driver-source{u}
0 paquets mis à jour, 0 nouvellement installés, 46 à enlever et 0 non mis à jour.
Il est nécessaire de télécharger 0 o d'archives. Après dépaquetage, 83,4 Mo seront libérés.
Voulez-vous continuer*? [Y/n/?] y
(Lecture de la base de données... 272074 fichiers et répertoires déjà installés.)
Suppression de libsybdb5 ...
Suppression de freetds-common ...
Suppression de gir1.2-gstreamer-0.10 ...
Suppression de gir1.2-timezonemap-1.0 ...
Suppression de lesstif2 ...
Suppression de libsaevt3 ...
Suppression de libsaclm3 ...
Suppression de libcorosync4 ...
Suppression de libcfg4 ...
Suppression de libconfdb4 ...
Suppression de libvotequorum4 ...
Suppression de libquorum4 ...
Suppression de libpload4 ...
Suppression de libevs4 ...
Suppression de libcpg4 ...
Suppression de libcoroipcc4 ...
Suppression de libcoroipcs4 ...
Suppression de libiksemel3 ...
Suppression de libiptables-chainmgr-perl ...
Suppression de libiptables-parse-perl ...
Suppression de liblogsys4 ...
Suppression de libnetfilter-queue1 ...
Suppression de libnetwork-ipv4addr-perl ...
Suppression de sox ...
Suppression de libsox-fmt-base ...
Suppression de libopencore-amrnb0 ...
Suppression de libopencore-amrwb0 ...
Suppression de libradiusclient-ng2 ...
Suppression de libresample1 ...
Suppression de libsam4 ...
Suppression de libsnmp15 ...
Suppression de libsensors4 ...
Suppression de libsnmp-base ...
Suppression de libsox-fmt-alsa ...
Suppression de libsox1b ...
Suppression de libspandsp2 ...
Suppression de libsqlite0 ...
Suppression de libsrtp0 ...
Suppression de libtimezonemap1 ...
Suppression de libtotem-pg4 ...
Suppression de libunix-syslog-perl ...
Suppression de libvpb0 ...
Suppression de linux-headers-3.2.0-74-generic ...
Suppression de linux-headers-3.2.0-74 ...
Suppression de vpb-driver-source ...
Suppression de module-assistant ...
Traitement des actions différées («*triggers*») pour «*libc-bin*»...
ldconfig deferred processing now taking place
Traitement des actions différées («*triggers*») pour «*man-db*»...
 
Old 03-03-2015, 12:12 PM   #2
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by khalil-person View Post
Hello, i was try to install clamfs on ubuntu 12 by this command:
Code:
aptitude install clamfs
the result was suppression of lot of package about 47 is it normal
well, my French isn't good at all, but a quick look into a dictionary tells me that "enlever" means "remove".
So you were going to install a package, and aptitude tells you that nothing has to be downloaded, nothing has to be updated, but a lot of packages have to be removed. And this doesn't puzzle you? At that point, when being asked if I wanted to continue, I would have said NO! NO! NO!

Quote:
Originally Posted by khalil-person View Post
and how can i reload this packages
Sure, you could re-install the removed packages one after another. Unfortunately, there isn't a comfortable "undo" function. And next time, please read what aptitude is telling you, and think about it before you continue. Reconsider. Does it makes sense? Removing many packages, but not adding a single one clearly doesn't make sense if you're going to install something.
But I have no idea what went wrong with aptitude.

Besides, is there a reason why you use aptitude instead of apt-get? Usually, aptitude is supposed to be a semi-graphical console front-end for apt-get. But if you use aptitude purely as a console program, you could just as well use apt-get (which is what aptitude does behind the scenes). And apt-get has a wonderful command line switch: -s for simulation. So if you give
Code:
apt-get -s install clamfs
then apt-get would run through the entire process in simulation mode, without actually changing your system. That's good to check if there is some surprise connected with a certain (un)installation.

[X] Doc CPU
 
1 members found this post helpful.
Old 03-03-2015, 02:41 PM   #3
khalil-person
LQ Newbie
 
Registered: Jan 2015
Posts: 9

Original Poster
Rep: Reputation: Disabled
thanks,i do that but if in the future i don't know the names of the packages how to redownload them?
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Package manager wants to REMOVE a lot of stuff when trying to install Wine deps mike4ty4 Debian 1 06-29-2014 03:04 AM
[SOLVED] Delete lot of files sedo Linux - Server 6 05-23-2013 03:57 AM
Attempting to install W7 using iso files - need a lot of help... WeasuhL Linux - Desktop 3 06-16-2012 02:53 AM
How to install a lot of .deb files? Dims Linux - Newbie 7 05-26-2009 08:09 AM
how to delete and re-install package manager MFA Linux - Newbie 3 03-15-2009 02:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Security

All times are GMT -5. The time now is 01:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration