Debian :: Download Packages And Dependencies
Jun 15, 2010
I'm hitting my head against the wall trying to figure out (and find any information on) how to download a package and all its dependencies.I've tried to clean the cache,$ sudo apt-get clean and then download a package and its depednencies,but it doesn't download dependencies that are already installed.I need to do this to install a package on a machine that doesn't see the net.I remember doing this somehow ages ago, and I think I might have even combined the package and its dependencies into a single self-contained .deb using dpkg.
View 4 Replies
ADVERTISEMENT
Jun 22, 2011
i'm can't install the g++ compiler. I've got the packages to install with the command "dpkg -i xxxx.deb", but i see a cross dependence between g++-4.3 and libstdc++6-4.3-dev. Or am I missing something?
[URL]
View 4 Replies
View Related
Aug 27, 2015
seems like after a recent upgrade of stretch, i get a message (in italian)
Code: Select all
$ sudo apt-get install kde-full
Lettura elenco dei pacchetti... Fatto
Generazione albero delle dipendenze
Lettura informazioni sullo stato... Fatto
Alcuni pacchetti non possono essere installati. Questo può voler dire
che è stata richiesta una situazione impossibile oppure, se si sta
usando una distribuzione in sviluppo, che alcuni pacchetti richiesti
non sono ancora stati creati o sono stati rimossi da Incoming.
Le seguenti informazioni possono aiutare a risolvere la situazione:
[CODE]..
View 2 Replies
View Related
Feb 22, 2010
On Debian repo I found virtualbox-ose packages there. What will be the difference in operation/function between their packages and the packages download on virtualbox.org website?
View 3 Replies
View Related
Oct 8, 2015
I have been using linux for about a year and have run into a new problem I am unable to solve. It started when I attempted to install some packages I needed to get VirtualBox to run VMs. I am on Jessie.
I am unable to install various packages, including gedit, aptitude etc. I do not think it is a problem with my sources.list as my laptop has the same sources.list and I am not encountering the same problems on it. Packages will not install any dependencies. -f install isn't doing anything for me.
My sources.list...
deb [arch=amd64,i386] http://ftp.ca.debian.org/debian/ jessie main contrib non-free
deb-src [arch=amd64,i386] http://ftp.ca.debian.org/debian/ jessie main contrib non-free
deb http://ftp.ca.debian.org/debian/ jessie-updates main contrib non-free
deb-src http://ftp.ca.debian.org/debian/ jessie-updates main contrib non-free
[Code] ....
I tried to check for held packages with
userone@localhost:~$ dpkg --get-selections | grep hold
But get nothing.
sudo apt-get install -y
View 10 Replies
View Related
Jun 1, 2011
I have an issue with packages. When I try to install any package then I receive error like this one below.
e.g. install Lynx:
Code:
# apt-get -f install lynx
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libperl5.10: Depends: perl-base (= 5.10.0-19lenny3) but 5.10.0-19lenny2 is to be installed
libsnmp15: Depends: libsnmp-base (>= 5.4.1~dfsg-12) but it is not going to be installed
lynx: Depends: lynx-cur (>= 2.8.7dev9-2.1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
So I decided to remove libperl5.10 which apparently mess. But its not that easy, just take a look:
Code:
# apt-get --purge remove libperl5.10
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libsnmp15: Depends: libsnmp-base (>= 5.4.1~dfsg-12) but it is not going to be installed
Depends: libperl5.10 (>= 5.10.0) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
...and now I don't know what to do ?
View 13 Replies
View Related
Aug 4, 2015
I'm trying to install debian in my surface pro but I can't get the network card configured. I installed Arch before and it's wpa_supplicant package was working just fine until the last update. I was wondering if I could download the wpa_supplicant for debian and all it's dependencies from my windows OS to be able to configure my wireless card properly in Debian.
View 4 Replies
View Related
Oct 23, 2015
I am attempting to setup an ftp server as a first project to get me going in the world of Linux however when I run the command apt-get install proftpd-basic ....
View 14 Replies
View Related
Jun 15, 2011
Does aptitude(or apt-get) have the functionality to remove the packages installed from using build-dep? It just seems convenient if you want to remove a program that was built from source.
View 4 Replies
View Related
Mar 5, 2011
what do I need to add to /etc/apt/sources.list? can't really understand the howtos and tutorials
View 7 Replies
View Related
Jan 7, 2011
I was wondering how can I re-download only all currently installed packages. I would like to save them to removable media, because I use netinst disc to install, and on slow connection it's hell to download 1GB of packages with console-only.
View 3 Replies
View Related
Jun 26, 2011
Here's the deal: I'm in the backwoods with this mini-laptop and I'd like to do some composing with it. I don't have much internet here so I can't start googling around or download hundreds of MB's of packages. Anyone able to recommend me a good, lightweight midi notation software?
View 6 Replies
View Related
Oct 30, 2010
I have a computer with internet access with amd64 architecture running Debian stable (Lenny). I have another computer with NO internet access with i386 architecture running Debian stable (Lenny).I want to download some packages for the i386 computer using the amd64 computer. So far, the only way I can see to do this is to use dpkg-architecture to temporarily change to i386 on the internet computer, run aptitude with the download-only option to retrieve the packages I need with all suitable dependencies, then switch the internet computer back over to amd64.
I can't imagine I'm the only person who ever needed to do this, and yet I've had no luck finding any advice. The method I described seems rather awkward - is there a more elegant solution?
I apologize to the membership, I realize now the absurdity of this subject. Having now studied the online repository search functions closer, I see it appears packages are automatically retrieved with all necessary dependencies. As such, it is not necessary to use apt and its various functions to do the job.
View 3 Replies
View Related
Nov 2, 2010
I am currently trying to upgrade over 100 rpms on multiple Red Hat servers. Whenever I try to do a rpm -u /packages/*.rpm i recieve a failed dependencies error on the very first rpm. I know that I can go though each rpm one by one and trace each dependency but that will take forever. Is there a way to skip these errors? I know the -nodeps command for rpm but I dont want to screw something up but running all of these rpms on -nodeps
View 10 Replies
View Related
Jul 17, 2010
I plan to install Debian on a machine that will have no access to the internet but I would like to install some packages in it (such as build-essential). I was thinking of downloading them here and transfer and install them on the other machine at a later time but because of dependencies I don't know what packages I'll need besides of the ones I really want, for example: After the fresh install from the cd, I would like to install build-essential which requires g++, make etc... but is there a way to download all that instead of doing it manually? Since I don't really know when to stop downloading dependencies. I tried aptitude download but it only gives me the meta-package. I also thought of chroot to a fresh system, install the packages and retrieve them from the local folder where they get downloaded but I was looking for something less complicated.
View 4 Replies
View Related
Jul 14, 2011
I'm trying to do a net install with the latest release of debian - but my ethernet card is not recognized/the drivers are not available because I have a card that requires a linux kernel version of 2.6.35. This is obviously a problem because I can't download any additional packages, and I can't update the version because I'm not able to connect to the internet. I have installed it, but it's only text (which I assume is because I could not install the graphical interface, correct me if I'm blaringly wrong here). So what can I do to install debian on my laptop and be able to use my Intel Centrino Advanced-N 620 network card?
View 14 Replies
View Related
Feb 22, 2010
On Fedora repo I found VirtualBox-ose packages there. What will be the difference in operation/function between their packages and the packages download on virtualbox.org website?
View 5 Replies
View Related
Apr 30, 2010
When one installs an application,it brings in other stuff too as dependencies.
When this application is removed,will zypper remove the dependencies that came with it and are not needed by other installed packages?
Is it possible to check before and after removal?
View 9 Replies
View Related
Nov 3, 2010
I have the following error in 10.04. I've tried several times to uninstall, resolve, install these dependencies and am at my wits end now. This morning I gave up on OpenJDK and installed Sun JDK, hence the sun versions below. But this error is stopping me from installing anything else.
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run `apt-get -f install' to correct these:
The following packages have unmet dependencies:
default-jre-headless: Depends: openjdk-6-jre-headless (>= 6b14) but it is not going to be installed
icedtea-6-jre-cacao: Depends: openjdk-6-jre-headless (= 6b18-1.8.2-4ubuntu2) but it is not going to be installed
latexdraw: Depends: libjiu-java but it is not going to be installed
Depends: libjlibeps-java but it is not going to be installed
openjdk-6-jre: Depends: openjdk-6-jre-headless (>= 6b18-1.8.2-4ubuntu2) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
me@andromeda:~/private$ java -version
java version "1.6.0_22"
Java(TM) SE Runtime Environment (build 1.6.0_22-b04)
Java HotSpot(TM) Server VM (build 17.1-b03, mixed mode)
me@andromeda:~/private$ javac -version
javac 1.6.0_22
View 5 Replies
View Related
Jan 26, 2011
I want to remove Evolution and install Thunderbird. I have a general question. WRT any given package, how can I determine if that package is required by any other packages so that I wouldn't want to remove it?
View 9 Replies
View Related
Dec 4, 2009
The upstream provider is supplying samba3x (currently samba 3.3.8) packages in their supplementary repository. I know that most of what is in the supplementary repository is burdened with restrictive or non-free licenses, however, Samba is not.
The samba3x packages are critical for Windows Server 2008 trust relationships as well as Windows 7 client support for a CentOS server acting as a Windows domain controller. I know that I can either roll my own packages or compile from source, but an officially supported version would be a much better option on a production server.Is there any way CentOS can "officially" supply these packages and their associated dependencies?
View 19 Replies
View Related
Feb 7, 2010
I download all packages of Fedora 12 64 bit and all rpmfusion packages , all of them free and nonfree. all of them is near 20GB, I download all of them by rsync.I download them in work,In home I use Fedora12 64 bit and do not have internet connection , I copy all packages with USB flash and copy them to my Fedora box , and I want install VLC and other codecs and Nvidia driver for some games.What I must do ?I said again I do not have internet connection in home but I have all packages , free and nofree and rpmfusion packages
View 14 Replies
View Related
Jun 2, 2010
So recently I've been exploring my options in terms of a desktop environment. trying out different options (Blackbox, Enlightenment ect..) and somehow in the process i managed to uninstall Gnome.
Normally I would just re-install it but whenever I try I get this:
Quote:
The following packages have unmet dependencies:
So I go through synaptic and it tells me, to install 'swfdec-mozilla' i need to uninstall 'epiphany-extensions' so I do that. and then the terminal gives me the same error as before.. only it say that 'epiphany-extensions' is not going to be installed.
I'm running 10.04.
View 4 Replies
View Related
Jun 29, 2010
I have compiled FFMPEG (and also mplayer and x264) from scratch to always run the latest version. I install ffmpeg using "checkinstall". When compiling FFMPEG manual and installing with checkinstall ffmpeg provides the following libraries: libavutil49, libavcodec52, libavdevice52, libavformat52, libavfilter0, libpostproc51, libswscale0
These can NOT be installed via apt-get (or similar) or the checkinstall will fail. So I have not installed them. The problem now is when I need to install a package (.dep or from Synaptic) that requires one of these a prerequisite. Then it is not "registered" by Synaptic that these are already provided through the FFMPEG build. I have tried to use the --provides flag on checkinstall and I can also see in Synaptic that on the ffmpeg package I installed with checkinstall that it says it provides said packages. I even have tried to modify the checkinstall script and add:
Replaces: libavutil49, libavcodec52, libavdevice52, libavformat52, libavfilter0, libpostproc51, libswscale0
This also triggers Synaptic to list that ffmpeg replaces the packages. But still when I try to install anything that needs these packages it is not recongnized that they are provided by FFMPEG and when I install one of them (e.g. apt-get install libavformat52) then it replaces the FFMPEG library and FFMPEG stops working. So what is going wrong? Is this a bug in Synaptic? How is it possible under ubuntu to install manual compiled packages and have them "act" as correct dependencies for others?
View 2 Replies
View Related
Dec 6, 2010
I'd like to update /etc/apt/sources.list with all the packages available on packages.debian.org and packages.ubuntu.com without apt-get, aptitude, and synaptic then trashing my system by trying to update all the obsolete packages. (I'm stuck with 8.04) I only want to update the packages / install new ones with their dependencies as I request them. How do I do that?
View 9 Replies
View Related
Mar 12, 2011
I have a computer with 128 ko of RAM (a very old one). I installed yesterday ubuntu 8 because ubuntu 9 requires 512 ko of RAM and was very slow. Now, I have problems to update packages and to install every thing. I changed the sources.list because it seems that links are no more available according to the error messages. (I have put many adresses for ubuntu 9 because I think the kernel is the same not as the kernel for ubuntu 10). But new problems have occurred like "broken dependencies". Now I want to correct, and I don't know how? I'm still a beginner with this OS.
View 2 Replies
View Related
Apr 15, 2011
I try to install git packages, when I type ./configure it gives me the error:
Code:
C compiler cannot create executable
Search around, and I find a solution, install the g++ packages, simply type:
Code:
apt-get install g++
But it gives me another error
Code:
The following packages have unmet dependencies:
G++ : Depends: g++-4.4 (>= 4.4.3-1) but it is not going to be installed
E: Broken packages
I also tried
Code:
apt-get install build-essential
But I get another error
Code:
The following packages have unmet dependencies:
build-essential : Depends: libc6-dev but it is not going to be installed or
libc-dev : Depends: g++ (>= 4:4.3.1) but it is not going to be installed
E: Broken packages
View 9 Replies
View Related
Apr 29, 2011
I am trying to upgrade to ubuntu 11.04 from my current 10.10 system. If I try to upgrade with Upgrade Manager it stops at calculating upgrade step and I can see red circle at top left corner, hovering over this gives message -
An unresolvable problem occurred while calculating the upgrade.
Please report this bug against the 'update-manager' package and include the following error message:
'E:Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.'
If I run
sudo apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
libappindicator1 : Depends: libdbusmenu-gtk3 but it is not going to be installed
Recommends: indicator-application (>= 0.2.93) but it is not going to be installed
overlay-scrollbar : Depends: liboverlay-scrollbar-0.1-0 but it is not going to be installed
python-aptdaemon-gtk : Depends: python-aptdaemon.gtk3widgets (= 0.41+bzr646-0ubuntu2) but it is not going to be installed
python-couchdb : Breaks: desktopcouch (< 1.0) but 0.6.9b-0ubuntu1 is to be installed
python-desktopcouch-records : Conflicts: desktopcouch (< 1.0.7-0ubuntu2) but 0.6.9b-0ubuntu1 is to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
View 5 Replies
View Related
Apr 22, 2010
I was wondering if there is a trick to manipulate terminal in windows system to use the eg apt-get install gstreamer, what i exactly mean is I dont have internet and would like to install stuff but i always run into dependency problems. i use the internet cafe to download staff.
View 9 Replies
View Related
Jan 7, 2011
I'm having some problems downloading some applications. I was hoping to download Gimp but it says that I'm having problems with the dependencies.
View 2 Replies
View Related