[Dúvida] Pacotes desinstalam com outros

1. [Dúvida] Pacotes desinstalam com outros

Cleio
The Dude

(usa Ubuntu)

Enviado em 11/09/2015 - 20:40h

Saudações.
Uso Debian 8, estou tendo um problema na remoção de alguns programas, por exemplo, quando vou remover o five-or-more, um joguinho que vem instalado, o desinstalador solicita a desinstalação de outros pacotes, nesse caso, o gnome e o gnome-games. Isso acontece com outros pacotes tbm. Só consigo remover o pacote desejado se remover outros. Como faço pra removê-lo sem afetar os outros?




  


2. Re: [Dúvida] Pacotes desinstalam com outros

LinuxWalker
Delusion

(usa Debian)

Enviado em 11/09/2015 - 22:16h

Debian é chato bagaraio com essas deps. principalmente se tiver usando gnome3. Geralmente a resposta é: não tem como.
Uma vez no Debian desinstalei um simples tocador de musicas e foi o gnome inteiro junto, fikei sem GUI, rsrs.
Se você gosta de ter instalado só o que você usa, comece a aprender outras distros e interfaces.



--------------------------------------------------------------------------
Atualmente fã de: Antergos, Xubuntu, Fedora, Sabayon.



3. Re: [Dúvida] Pacotes desinstalam com outros

edps
edps

(usa Slackware)

Enviado em 11/09/2015 - 23:55h

Esses 2 pacotes a serem removidos são meta-pacotes e em tese não haveria problemas em remover o tal five-or-more, porque ele não depende do meta-pacote gnome-games (e sim o contrário), assim sendo, se você remover o pacote five-or-more o gnome-games vai junto porque digamos o mesmo se sente incompleto, veja a listinha dos amiguinhos desse pacote:

https://packages.debian.org/jessie/gnome-games">https://packages.debian.org/jessie/gnome-games

Dai se você resolve reinstalar o gnome-games (que como eu disse é um meta-pacote) ele irá chamar todos os pacotes dos quais depende, entre eles o que você acabou de remover.

O mesmo ocorre com o gnome-games que se removido, leva junto o pacote gnome, sua lista indecente de amigos está em:

https://packages.debian.org/jessie/gnome

A solução para o caso do Debian é NUNCA INSTALAR META-PACOTES! (exceto o build-essential que não faz mal nem ao Ubuntu! rsrs)

Mas como você não sabia disto... geralmente isso ocorre com TODOS os que instalam o Debian no modo automático, isto é, não realizam a instalação via NetInstall.

* embora também dê para fazer titica usando o NetInstall, basta instalar usando tarefas, por exemplo, você acaba de realizar a instalação mínima e você tasca isso no terminal:

# apt-get install task-gnome-desktop task-brazilian-portuguese task-brazilian-portuguese-desktop 


É a mesma coisa que instalar do CD!

Tem uma dica no VOL ensinando como contornar problemas como o seu, mas não me lembro de quem é.

#

Vou lhe passar um modo gambiarra, pois me esqueci como se faz usando apt ou aptitude (marcar pacotes como instalados manualmente|instalados automaticamente), também não estou usando Debian no momento, mas é algo aproximado a isto:

https://www.garron.me/en/bits/apt-mark-set-auto-manual-installation.html
http://manpages.ubuntu.com/manpages/trusty/man8/apt-mark.8.html
http://superuser.com/questions/51158/in-ubuntu-debian-how-do-i-mark-a-package-as-non-auto-removable
http://serverfault.com/questions/87933/how-to-remove-the-installed-manually-flag-and-revert-to-autom...

Voltando ao meu modo... digamos que você remova o pacote (e também são removidos os 2 pacotes citados) e nada mais, daí você roda o comandozinho abaixo (NÃO TECLE Y ou S, senão dá ruim!):

# apt-get autoremove 


Se aparecer alguma lista extensa de pacotes marcados como obsoletos (ou algo parecido) INFORMANDO QUE OS MESMOS PODEM SER removidos, você não faz NADA. Simplesmente copie toda essa lista para um arquivo de texto e acrescenta ao início dela:

# apt-get install  


Pronto! RESOLVIDO.

E de quebra você se livra de 2 meta-pacotes desgraçados! :)

E para concluir este livro que escrevi, antes de postar quanquer coisa no fórum, faça uma simulação em seu Debian:

# apt-get --purge remove five-or-more -s 


* pode TECLAR S ou Y nesse caso, isso é uma simulação. Daí você copia todo o texto e cola no campo de código do post.


4. Re: [Dúvida] Pacotes desinstalam com outros

Cleio
The Dude

(usa Ubuntu)

Enviado em 12/09/2015 - 08:41h

edps escreveu:

Esses 2 pacotes a serem removidos são meta-pacotes e em tese não haveria problemas em remover o tal five-or-more, porque ele não depende do meta-pacote gnome-games (e sim o contrário), assim sendo, se você remover o pacote five-or-more o gnome-games vai junto porque digamos o mesmo se sente incompleto, veja a listinha dos amiguinhos desse pacote:

https://packages.debian.org/jessie/gnome-games">https://packages.debian.org/jessie/gnome-games

Dai se você resolve reinstalar o gnome-games (que como eu disse é um meta-pacote) ele irá chamar todos os pacotes dos quais depende, entre eles o que você acabou de remover.

O mesmo ocorre com o gnome-games que se removido, leva junto o pacote gnome, sua lista indecente de amigos está em:

https://packages.debian.org/jessie/gnome

A solução para o caso do Debian é NUNCA INSTALAR META-PACOTES! (exceto o build-essential que não faz mal nem ao Ubuntu! rsrs)

Mas como você não sabia disto... geralmente isso ocorre com TODOS os que instalam o Debian no modo automático, isto é, não realizam a instalação via NetInstall.

* embora também dê para fazer titica usando o NetInstall, basta instalar usando tarefas, por exemplo, você acaba de realizar a instalação mínima e você tasca isso no terminal:

# apt-get install task-gnome-desktop task-brazilian-portuguese task-brazilian-portuguese-desktop 


É a mesma coisa que instalar do CD!

Tem uma dica no VOL ensinando como contornar problemas como o seu, mas não me lembro de quem é.

#

Vou lhe passar um modo gambiarra, pois me esqueci como se faz usando apt ou aptitude (marcar pacotes como instalados manualmente|instalados automaticamente), também não estou usando Debian no momento, mas é algo aproximado a isto:

https://www.garron.me/en/bits/apt-mark-set-auto-manual-installation.html
http://manpages.ubuntu.com/manpages/trusty/man8/apt-mark.8.html
http://superuser.com/questions/51158/in-ubuntu-debian-how-do-i-mark-a-package-as-non-auto-removable
http://serverfault.com/questions/87933/how-to-remove-the-installed-manually-flag-and-revert-to-autom...

Voltando ao meu modo... digamos que você remova o pacote (e também são removidos os 2 pacotes citados) e nada mais, daí você roda o comandozinho abaixo (NÃO TECLE Y ou S, senão dá ruim!):

# apt-get autoremove 


Se aparecer alguma lista extensa de pacotes marcados como obsoletos (ou algo parecido) INFORMANDO QUE OS MESMOS PODEM SER removidos, você não faz NADA. Simplesmente copie toda essa lista para um arquivo de texto e acrescenta ao início dela:

# apt-get install  


Pronto! RESOLVIDO.

E de quebra você se livra de 2 meta-pacotes desgraçados! :)

E para concluir este livro que escrevi, antes de postar quanquer coisa no fórum, faça uma simulação em seu Debian:

# apt-get --purge remove five-or-more -s 


* pode TECLAR S ou Y nesse caso, isso é uma simulação. Daí você copia todo o texto e cola no campo de código do post.



Executei o

# apt-get --purge remove five-or-more -s 


Resultado:

Lendo listas de pacotes... Pronto
Construindo árvore de dependências
Lendo informação de estado... Pronto
Os seguintes pacotes foram instalados automaticamente e já não são necessários:
gnuradio gr-fcdproplus gr-iqbal gr-osmosdr hackrf hdparm ieee-data ipxe-qemu jarwrapper java-wrappers john-data lame ldap-utils libadns1 libafflib0 libaio1 libairspy0 libapache2-mod-php5 libapparmor1
libaugeas0 libavdevice55 libb-hooks-endofscope-perl libb-hooks-op-check-perl libbareword-filehandles-perl libbfio1 libbladerf0 libbluetooth-dev libboost-filesystem1.55.0 libboost-program-options1.55.0
libboost-regex1.55.0 libboost-serialization1.55.0 libboost-test1.55.0 libc-ares2 libcapstone3 libclass-data-inheritable-perl libclass-dbi-abstractsearch-perl libclass-dbi-mysql-perl libclass-dbi-perl
libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl libclass-tiny-perl libclass-trigger-perl libclass-xsaccessor-perl libclone-perl libcmis-0.4-4 libcomedi0 libcrypt-mcrypt-perl
libcrypt-openssl-bignum-perl libcrypt-openssl-rsa-perl libcrypto++9 libdb5.3:i386 libdbd-mysql-perl libdbd-sqlite3-perl libdbi-perl libdbi1 libdbix-contextualfetch-perl libdevel-caller-perl
libdevel-globaldestruction-perl libdevel-lexalias-perl libdevel-partialdump-perl libdevel-stacktrace-perl libdigest-crc-perl libdigest-md4-perl libdigest-md5-file-perl libdist-checkconflicts-perl
libdistorm3-3 libdumbnet1 libeval-closure-perl libevent-core-2.0-5 libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libewf2 libfdt1 libfindrtp libfreetype6:i386 libfuzzy2 libglib2.0-0:i386
libglu1-mesa:i386 libglu1-mesa-dev libgmp10:i386 libgnuradio-analog3.7.5 libgnuradio-atsc3.7.5 libgnuradio-audio3.7.5 libgnuradio-blocks3.7.5 libgnuradio-channels3.7.5 libgnuradio-comedi3.7.5
libgnuradio-digital3.7.5 libgnuradio-dtv3.7.5 libgnuradio-fcd3.7.5 libgnuradio-fcdproplus0 libgnuradio-fec3.7.5 libgnuradio-fft3.7.5 libgnuradio-filter3.7.5 libgnuradio-iqbalance0 libgnuradio-noaa3.7.5
libgnuradio-osmosdr0.1.3 libgnuradio-pager3.7.5 libgnuradio-pmt3.7.5 libgnuradio-qtgui3.7.5 libgnuradio-runtime3.7.5 libgnuradio-trellis3.7.5 libgnuradio-uhd3.7.5 libgnuradio-video-sdl3.7.5
libgnuradio-vocoder3.7.5 libgnuradio-wavelet3.7.5 libgnuradio-wxgui3.7.5 libgnuradio-zeromq3.7.5 libgnutls-deb0-28:i386 libgsoap5 libgstreamer-plugins-base0.10-0:i386 libgstreamer0.10-0:i386
libgtksourceview2.0-0 libgtksourceview2.0-common libguytools2 libhackrf0 libhash-merge-perl libhdb9-heimdal libhiredis0.10 libhogweed2:i386 libhtml-linkextractor-perl libhttp-dav-perl libhttp-parser2.1
libhttp-server-simple-perl libima-dbi-perl libimport-into-perl libindirect-perl libio-all-lwp-perl libio-all-perl libio-socket-socks-perl libio-stringy-perl libiscsi2 libjemalloc1 libjna-java
libjna-jni libjs-jquery-ui libjs-sphinxdoc libjs-underscore libkdc2-heimdal libladr4 liblcms2-2:i386 libldap-2.4-2:i386 liblexical-sealrequirehints-perl liblingua-en-inflect-perl liblist-moreutils-perl
liblog4cpp5 liblvm2app2.2 liblwp-protocol-socks-perl libmcrypt4 libmicrohttpd10 libmigemo1 libmirisdr0 libmodule-implementation-perl libmodule-runtime-conflicts-perl libmodule-runtime-perl libmoo-perl
libmoose-perl libmozjs185-1.0 libmpg123-0:i386 libmultidimensional-perl libmwaw-0.3-3 libmysqlclient18 libnamespace-clean-perl libndpi1a libnet-dns-perl libnet-ip-perl libnet-netmask-perl
libnet-pcap-perl libnet-rawip-perl libnet-snmp-perl libnet-ssh2-perl libnet-telnet-perl libnet-tftp-perl libnetcf1 libnetpacket-perl libnettle4:i386 libnfc5 libnumber-bytes-human-perl libonig2
libopenal1:i386 libopenvas8 liborcus-0.8-0 libosmosdr0 libp11-kit0:i386 libpackage-deprecationmanager-perl libpackage-stash-perl libpackage-stash-xs-perl libpadwalker-perl libparallel-forkmanager-perl
libparams-classify-perl libpff1 libpgm-5.1-0 libphonon4 libpyside1.2 libqdbm14 libqscintilla2-11 libqscintilla2-l10n libqt4-declarative libqt4-designer libqt4-dev libqt4-dev-bin libqt4-help
libqt4-opengl-dev libqt4-qt3support libqt4-script libqt4-scripttools libqt4-sql libqt4-sql-mysql libqt4-sql-sqlite libqt4-test libqt4-xmlpatterns libqtassistantclient4 libqtwebkit-dev libqtwebkit4
libqwt-dev libqwt5-qt4 libqwt6 librados2 librbd1 libreadline5 librecode0 libregfi0 librole-tiny-perl librrd4 librtlsdr0 librxtx-java librygel-core-2.4-2 librygel-renderer-2.4-2
librygel-renderer-gst-2.4-2 librygel-server-2.4-2 libsasl2-2:i386 libsasl2-modules:i386 libsasl2-modules-db:i386 libseccomp2 libserf-1-1 libshiboken1.2 libsmi2ldbl libsnmp-perl libsodium13
libsox-fmt-alsa libsox-fmt-base libsox2 libspice-server1 libspiffy-perl libsql-abstract-limit-perl libsql-abstract-perl libssh-4 libssl1.0.0:i386 libstrictures-perl libstring-random-perl
libsub-exporter-progressive-perl libsub-identify-perl libsvn1 libsybdb5 libtask-weaken-perl libtasn1-6:i386 libterm-readkey-perl libtidy-0.99-0 libtime-piece-mysql-perl libtre5 libtry-tiny-perl libucl1
libuhd003 libuniversal-moniker-perl libuuid-perl libv8-3.14.5 libvariable-magic-perl libvdeplug2 libvirt-daemon libvirt0 libvncserver0 libvolk-bin libvolk0.0.0 libwhisker2-perl libwine libwine:i386
libwine-gecko-2.21 libwireshark-data libwireshark5 libwiretap4 libwps-0.3-3 libwsutil4 libwww-mechanize-perl libwxbase3.0-0 libwxgtk3.0-0 libxcursor1:i386 libxen-4.4 libxenstore3.0 libxml-dom-perl
libxml-perl libxml-regexp-perl libxml-writer-perl libxml2:i386 libxrender1:i386 libyara3 libzmq3 lvm2 macchanger maltego mtd-utils mysql-common nasm nikto nodejs ntop-data p7zip perl-cisco-copyconfig
perlmagick phonon phonon-backend-vlc php5-cli php5-common php5-json php5-ldap php5-mcrypt php5-mysql php5-readline php5-sqlite postgresql prover9 pyrit python-adns python-apsw python-argcomplete
python-async python-beautifulsoup python-blinker python-bluez python-bottle python-bs4 python-bson python-bson-ext python-capstone python-certifi python-characteristic python-cheetah python-clamd
python-cluster python-colorama python-concurrent.futures python-configargparse python-configparser python-ctypeslib python-d2to1 python-darts-lib-utils-lru python-dateutil python-decorator
python-dicttoxml python-distlib python-django python-django-common python-dns python-dnspython python-dpkt python-easygui python-ecdsa python-egenix-mxdatetime python-egenix-mxtools python-esmre
python-feedparser python-flask python-geoip python-gevent python-git python-gitdb python-greenlet python-gridfs python-gtksourceview2 python-guess-language python-halberd python-hpack python-html2text
python-html5lib python-httplib2 python-impacket python-ipy python-itsdangerous python-jinja2 python-jsonpickle python-jsonrpclib python-levenshtein python-libvirt python-m2crypto python-magic
python-markdown python-matplotlib python-matplotlib-data python-mechanize python-metaconfig python-mock python-msgpack python-mysqldb python-netaddr python-netlib python-networkx python-nltk
python-ntlm python-opengl python-openpyxl python-pam python-paramiko python-passlib python-pcapy python-pdfminer python-pefile python-phply python-pip python-prettytable python-psutil python-psycopg2
python-pyasn1-modules python-pybloomfiltermmap python-pycryptopp python-pydeep python-pygithub python-pygraphviz python-pyinotify python-pymongo python-pymongo-ext python-pymssql python-pyparsing
python-pypdf python-pyperclip python-pyqtgraph python-pyregfi python-pyside python-pyside.phonon python-pyside.qtcore python-pyside.qtdeclarative python-pyside.qtgui python-pyside.qthelp
python-pyside.qtnetwork python-pyside.qtopengl python-pyside.qtscript python-pyside.qtsql python-pyside.qtsvg python-pyside.qttest python-pyside.qtuitools python-pyside.qtwebkit python-pyside.qtxml
python-pysnmp4 python-pysnmp4-apps python-pysnmp4-mibs python-pysocks python-pysqlite2 python-pyx python-qscintilla2 python-qt4 python-qt4-gl python-qt4-phonon python-qwt5-qt4 python-ruamel.ordereddict
python-scapy python-scipy python-serial python-service-identity python-simplejson python-sip python-slowaes python-smmap python-sqlalchemy python-sqlalchemy-ext python-sqlparse python-stopit python-svn
python-tblib python-tidylib python-tornado python-twisted python-twisted-bin python-twisted-conch python-twisted-core python-twisted-lore python-twisted-mail python-twisted-names python-twisted-news
python-twisted-runner python-twisted-web python-twisted-words python-tz python-usb python-utidylib python-vulndb python-webkit python-webunit python-werkzeug python-wheel python-wxgtk3.0 python-wxtools
python-wxversion python-xdot python-xlsxwriter python-yaml python-yara python-zmq python-zope.interface python3-bs4 python3-httplib2 python3-lxml python3-psutil python3-psycopg2 python3-urllib3
qemu-kvm qemu-system-common qemu-system-x86 qemu-utils qt4-linguist-tools qt4-qmake qthid-fcd-controller rake recode redis-server redis-tools reglookup-doc rtl-sdr ruby-addressable ruby-afm ruby-ansi
ruby-ascii85 ruby-atomic ruby-awesome-print ruby-buftok ruby-childprocess ruby-coderay ruby-daemons ruby-dataobjects ruby-dataobjects-mysql ruby-dataobjects-postgres ruby-dataobjects-sqlite3
ruby-diff-lcs ruby-dm-core ruby-dm-do-adapter ruby-dm-migrations ruby-dm-serializer ruby-dm-sqlite-adapter ruby-em-websocket ruby-equalizer ruby-erubis ruby-ethon ruby-eventmachine ruby-execjs
ruby-faraday ruby-ffi ruby-geoip ruby-hashery ruby-http ruby-http-parser.rb ruby-httpclient ruby-json ruby-kramdown ruby-librex ruby-libv8 ruby-loofah ruby-mail ruby-memoizable ruby-mime
ruby-mime-types ruby-mini-exiftool ruby-mojo-magick ruby-msfrpc-client ruby-msgpack ruby-multi-json ruby-multipart-post ruby-naught ruby-net-http-digest-auth ruby-nokogiri ruby-oj ruby-oj-mimic-json
ruby-parseconfig ruby-pdf-core ruby-pdf-reader ruby-pony ruby-prawn ruby-prawn-table ruby-qr4r ruby-rack ruby-rack-protection ruby-rainbow ruby-rb-readline ruby-rc4 ruby-ref ruby-rexec ruby-rqrcode
ruby-rspec-expectations ruby-ruby-progressbar ruby-rubydns ruby-selenium-webdriver ruby-simple-oauth ruby-simplecov ruby-sinatra ruby-spider ruby-sqlite3 ruby-stringex ruby-term-ansicolor
ruby-terminal-table ruby-therubyracer ruby-thread-safe ruby-tilt ruby-tins ruby-ttfunk ruby-twitter ruby-typhoeus ruby-uglifier ruby-watir-webdriver ruby-websocket ruby-yajl ruby-zip samba
samba-dsdb-modules samba-vfs-modules screen seabios smartmontools smitools sox sqlite3 sslscan subversion tcpdump tcpwatch-httpproxy tdb-tools thin tshark u3-tool udisks uhd-host uhd-images upx-ucl
volatility-tools w3af-console wine wine32:i386 wine64 wireshark-common xclip
Utilize 'apt-get autoremove' para os remover.
Os pacotes a seguir serão REMOVIDOS:
five-or-more* gnome* gnome-games*
0 pacotes atualizados, 0 pacotes novos instalados, 3 a serem removidos e 34 não atualizados.
Purg gnome [1:3.14+3]
Purg gnome-games [1:3.14+3]
Purg five-or-more [1:3.14.1-1]


O links não resolveram. Removi os pacotes e executei o install com os pacotes que resultaram do autoremove, mas tbm não foi.


5. Re: [Dúvida] Pacotes desinstalam com outros

edps
edps

(usa Slackware)

Enviado em 12/09/2015 - 09:01h


Você executou isto exatamente:

$ sudo apt-get update 


e

$ sudo apt-get install gnuradio gr-fcdproplus gr-iqbal gr-osmosdr hackrf hdparm ieee-data ipxe-qemu jarwrapper java-wrappers john-data lame ldap-utils libadns1 libafflib0 libaio1 libairspy0 libapache2-mod-php5 libapparmor1 \
libaugeas0 libavdevice55 libb-hooks-endofscope-perl libb-hooks-op-check-perl libbareword-filehandles-perl libbfio1 libbladerf0 libbluetooth-dev libboost-filesystem1.55.0 libboost-program-options1.55.0 \
libboost-regex1.55.0 libboost-serialization1.55.0 libboost-test1.55.0 libc-ares2 libcapstone3 libclass-data-inheritable-perl libclass-dbi-abstractsearch-perl libclass-dbi-mysql-perl libclass-dbi-perl \
libclass-load-perl libclass-load-xs-perl libclass-method-modifiers-perl libclass-tiny-perl libclass-trigger-perl libclass-xsaccessor-perl libclone-perl libcmis-0.4-4 libcomedi0 libcrypt-mcrypt-perl \
libcrypt-openssl-bignum-perl libcrypt-openssl-rsa-perl libcrypto++9 libdb5.3:i386 libdbd-mysql-perl libdbd-sqlite3-perl libdbi-perl libdbi1 libdbix-contextualfetch-perl libdevel-caller-perl \
libdevel-globaldestruction-perl libdevel-lexalias-perl libdevel-partialdump-perl libdevel-stacktrace-perl libdigest-crc-perl libdigest-md4-perl libdigest-md5-file-perl libdist-checkconflicts-perl \
libdistorm3-3 libdumbnet1 libeval-closure-perl libevent-core-2.0-5 libevent-openssl-2.0-5 libevent-pthreads-2.0-5 libewf2 libfdt1 libfindrtp libfreetype6:i386 libfuzzy2 libglib2.0-0:i386 \
libglu1-mesa:i386 libglu1-mesa-dev libgmp10:i386 libgnuradio-analog3.7.5 libgnuradio-atsc3.7.5 libgnuradio-audio3.7.5 libgnuradio-blocks3.7.5 libgnuradio-channels3.7.5 libgnuradio-comedi3.7.5 \
libgnuradio-digital3.7.5 libgnuradio-dtv3.7.5 libgnuradio-fcd3.7.5 libgnuradio-fcdproplus0 libgnuradio-fec3.7.5 libgnuradio-fft3.7.5 libgnuradio-filter3.7.5 libgnuradio-iqbalance0 libgnuradio-noaa3.7.5 \
libgnuradio-osmosdr0.1.3 libgnuradio-pager3.7.5 libgnuradio-pmt3.7.5 libgnuradio-qtgui3.7.5 libgnuradio-runtime3.7.5 libgnuradio-trellis3.7.5 libgnuradio-uhd3.7.5 libgnuradio-video-sdl3.7.5 \
libgnuradio-vocoder3.7.5 libgnuradio-wavelet3.7.5 libgnuradio-wxgui3.7.5 libgnuradio-zeromq3.7.5 libgnutls-deb0-28:i386 libgsoap5 libgstreamer-plugins-base0.10-0:i386 libgstreamer0.10-0:i386 \
libgtksourceview2.0-0 libgtksourceview2.0-common libguytools2 libhackrf0 libhash-merge-perl libhdb9-heimdal libhiredis0.10 libhogweed2:i386 libhtml-linkextractor-perl libhttp-dav-perl libhttp-parser2.1 \
libhttp-server-simple-perl libima-dbi-perl libimport-into-perl libindirect-perl libio-all-lwp-perl libio-all-perl libio-socket-socks-perl libio-stringy-perl libiscsi2 libjemalloc1 libjna-java \
libjna-jni libjs-jquery-ui libjs-sphinxdoc libjs-underscore libkdc2-heimdal libladr4 liblcms2-2:i386 libldap-2.4-2:i386 liblexical-sealrequirehints-perl liblingua-en-inflect-perl liblist-moreutils-perl \
liblog4cpp5 liblvm2app2.2 liblwp-protocol-socks-perl libmcrypt4 libmicrohttpd10 libmigemo1 libmirisdr0 libmodule-implementation-perl libmodule-runtime-conflicts-perl libmodule-runtime-perl libmoo-perl \
libmoose-perl libmozjs185-1.0 libmpg123-0:i386 libmultidimensional-perl libmwaw-0.3-3 libmysqlclient18 libnamespace-clean-perl libndpi1a libnet-dns-perl libnet-ip-perl libnet-netmask-perl \
libnet-pcap-perl libnet-rawip-perl libnet-snmp-perl libnet-ssh2-perl libnet-telnet-perl libnet-tftp-perl libnetcf1 libnetpacket-perl libnettle4:i386 libnfc5 libnumber-bytes-human-perl libonig2 \
libopenal1:i386 libopenvas8 liborcus-0.8-0 libosmosdr0 libp11-kit0:i386 libpackage-deprecationmanager-perl libpackage-stash-perl libpackage-stash-xs-perl libpadwalker-perl libparallel-forkmanager-perl \
libparams-classify-perl libpff1 libpgm-5.1-0 libphonon4 libpyside1.2 libqdbm14 libqscintilla2-11 libqscintilla2-l10n libqt4-declarative libqt4-designer libqt4-dev libqt4-dev-bin libqt4-help \
libqt4-opengl-dev libqt4-qt3support libqt4-script libqt4-scripttools libqt4-sql libqt4-sql-mysql libqt4-sql-sqlite libqt4-test libqt4-xmlpatterns libqtassistantclient4 libqtwebkit-dev libqtwebkit4 \
libqwt-dev libqwt5-qt4 libqwt6 librados2 librbd1 libreadline5 librecode0 libregfi0 librole-tiny-perl librrd4 librtlsdr0 librxtx-java librygel-core-2.4-2 librygel-renderer-2.4-2 \
librygel-renderer-gst-2.4-2 librygel-server-2.4-2 libsasl2-2:i386 libsasl2-modules:i386 libsasl2-modules-db:i386 libseccomp2 libserf-1-1 libshiboken1.2 libsmi2ldbl libsnmp-perl libsodium13 \
libsox-fmt-alsa libsox-fmt-base libsox2 libspice-server1 libspiffy-perl libsql-abstract-limit-perl libsql-abstract-perl libssh-4 libssl1.0.0:i386 libstrictures-perl libstring-random-perl \
libsub-exporter-progressive-perl libsub-identify-perl libsvn1 libsybdb5 libtask-weaken-perl libtasn1-6:i386 libterm-readkey-perl libtidy-0.99-0 libtime-piece-mysql-perl libtre5 libtry-tiny-perl libucl1 \
libuhd003 libuniversal-moniker-perl libuuid-perl libv8-3.14.5 libvariable-magic-perl libvdeplug2 libvirt-daemon libvirt0 libvncserver0 libvolk-bin libvolk0.0.0 libwhisker2-perl libwine libwine:i386 \
libwine-gecko-2.21 libwireshark-data libwireshark5 libwiretap4 libwps-0.3-3 libwsutil4 libwww-mechanize-perl libwxbase3.0-0 libwxgtk3.0-0 libxcursor1:i386 libxen-4.4 libxenstore3.0 libxml-dom-perl \
libxml-perl libxml-regexp-perl libxml-writer-perl libxml2:i386 libxrender1:i386 libyara3 libzmq3 lvm2 macchanger maltego mtd-utils mysql-common nasm nikto nodejs ntop-data p7zip perl-cisco-copyconfig \
perlmagick phonon phonon-backend-vlc php5-cli php5-common php5-json php5-ldap php5-mcrypt php5-mysql php5-readline php5-sqlite postgresql prover9 pyrit python-adns python-apsw python-argcomplete \
python-async python-beautifulsoup python-blinker python-bluez python-bottle python-bs4 python-bson python-bson-ext python-capstone python-certifi python-characteristic python-cheetah python-clamd \
python-cluster python-colorama python-concurrent.futures python-configargparse python-configparser python-ctypeslib python-d2to1 python-darts-lib-utils-lru python-dateutil python-decorator \
python-dicttoxml python-distlib python-django python-django-common python-dns python-dnspython python-dpkt python-easygui python-ecdsa python-egenix-mxdatetime python-egenix-mxtools python-esmre \
python-feedparser python-flask python-geoip python-gevent python-git python-gitdb python-greenlet python-gridfs python-gtksourceview2 python-guess-language python-halberd python-hpack python-html2text \
python-html5lib python-httplib2 python-impacket python-ipy python-itsdangerous python-jinja2 python-jsonpickle python-jsonrpclib python-levenshtein python-libvirt python-m2crypto python-magic \
python-markdown python-matplotlib python-matplotlib-data python-mechanize python-metaconfig python-mock python-msgpack python-mysqldb python-netaddr python-netlib python-networkx python-nltk \
python-ntlm python-opengl python-openpyxl python-pam python-paramiko python-passlib python-pcapy python-pdfminer python-pefile python-phply python-pip python-prettytable python-psutil python-psycopg2 \
python-pyasn1-modules python-pybloomfiltermmap python-pycryptopp python-pydeep python-pygithub python-pygraphviz python-pyinotify python-pymongo python-pymongo-ext python-pymssql python-pyparsing \
python-pypdf python-pyperclip python-pyqtgraph python-pyregfi python-pyside python-pyside.phonon python-pyside.qtcore python-pyside.qtdeclarative python-pyside.qtgui python-pyside.qthelp \
python-pyside.qtnetwork python-pyside.qtopengl python-pyside.qtscript python-pyside.qtsql python-pyside.qtsvg python-pyside.qttest python-pyside.qtuitools python-pyside.qtwebkit python-pyside.qtxml \
python-pysnmp4 python-pysnmp4-apps python-pysnmp4-mibs python-pysocks python-pysqlite2 python-pyx python-qscintilla2 python-qt4 python-qt4-gl python-qt4-phonon python-qwt5-qt4 python-ruamel.ordereddict \
python-scapy python-scipy python-serial python-service-identity python-simplejson python-sip python-slowaes python-smmap python-sqlalchemy python-sqlalchemy-ext python-sqlparse python-stopit python-svn \
python-tblib python-tidylib python-tornado python-twisted python-twisted-bin python-twisted-conch python-twisted-core python-twisted-lore python-twisted-mail python-twisted-names python-twisted-news \
python-twisted-runner python-twisted-web python-twisted-words python-tz python-usb python-utidylib python-vulndb python-webkit python-webunit python-werkzeug python-wheel python-wxgtk3.0 python-wxtools \
python-wxversion python-xdot python-xlsxwriter python-yaml python-yara python-zmq python-zope.interface python3-bs4 python3-httplib2 python3-lxml python3-psutil python3-psycopg2 python3-urllib3 \
qemu-kvm qemu-system-common qemu-system-x86 qemu-utils qt4-linguist-tools qt4-qmake qthid-fcd-controller rake recode redis-server redis-tools reglookup-doc rtl-sdr ruby-addressable ruby-afm ruby-ansi \
ruby-ascii85 ruby-atomic ruby-awesome-print ruby-buftok ruby-childprocess ruby-coderay ruby-daemons ruby-dataobjects ruby-dataobjects-mysql ruby-dataobjects-postgres ruby-dataobjects-sqlite3 \
ruby-diff-lcs ruby-dm-core ruby-dm-do-adapter ruby-dm-migrations ruby-dm-serializer ruby-dm-sqlite-adapter ruby-em-websocket ruby-equalizer ruby-erubis ruby-ethon ruby-eventmachine ruby-execjs \
ruby-faraday ruby-ffi ruby-geoip ruby-hashery ruby-http ruby-http-parser.rb ruby-httpclient ruby-json ruby-kramdown ruby-librex ruby-libv8 ruby-loofah ruby-mail ruby-memoizable ruby-mime \
ruby-mime-types ruby-mini-exiftool ruby-mojo-magick ruby-msfrpc-client ruby-msgpack ruby-multi-json ruby-multipart-post ruby-naught ruby-net-http-digest-auth ruby-nokogiri ruby-oj ruby-oj-mimic-json \
ruby-parseconfig ruby-pdf-core ruby-pdf-reader ruby-pony ruby-prawn ruby-prawn-table ruby-qr4r ruby-rack ruby-rack-protection ruby-rainbow ruby-rb-readline ruby-rc4 ruby-ref ruby-rexec ruby-rqrcode \
ruby-rspec-expectations ruby-ruby-progressbar ruby-rubydns ruby-selenium-webdriver ruby-simple-oauth ruby-simplecov ruby-sinatra ruby-spider ruby-sqlite3 ruby-stringex ruby-term-ansicolor \
ruby-terminal-table ruby-therubyracer ruby-thread-safe ruby-tilt ruby-tins ruby-ttfunk ruby-twitter ruby-typhoeus ruby-uglifier ruby-watir-webdriver ruby-websocket ruby-yajl ruby-zip samba \
samba-dsdb-modules samba-vfs-modules screen seabios smartmontools smitools sox sqlite3 sslscan subversion tcpdump tcpwatch-httpproxy tdb-tools thin tshark u3-tool udisks uhd-host uhd-images upx-ucl \
volatility-tools w3af-console wine wine32:i386 wine64 wireshark-common xclip



6. Re: [Dúvida] Pacotes desinstalam com outros

Cleio
The Dude

(usa Ubuntu)

Enviado em 12/09/2015 - 09:29h


O resultado da simulação foi esse:

Lendo listas de pacotes... Pronto
Construindo árvore de dependências
Lendo informação de estado... Pronto
Os pacotes a seguir serão REMOVIDOS:
five-or-more* gnome* gnome-games*
0 pacotes atualizados, 0 pacotes novos instalados, 3 a serem removidos e 32 não atualizados.
Purg gnome [1:3.14+3]
Purg gnome-games [1:3.14+3]
Purg five-or-more [1:3.14.1-1]


Ainda tá removendo junto.


7. Re: [Dúvida] Pacotes desinstalam com outros

Cleio
The Dude

(usa Ubuntu)

Enviado em 12/09/2015 - 10:38h


Eu estou tento vários outros problemas com o Debian (fiz muita coisa erra tbm, hehe). Vou voltar para o Ubuntu. Obrigado a todos pela atenção.






Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts