Debian Installation :: Have To Manually Track Down All Dependent Packages
Dec 18, 2010
I'm trying to force open office to the 3.2.1 version that is available in backports. When I force the openoffice.org package, and try to install it ( with synaptic ), it complains. I assume this is because the dependencies aren't right. Do I have to manually track down all the dependent packages and force their versions to comply as well?
View 4 Replies
ADVERTISEMENT
Feb 24, 2009
I have wasted lot of time in installing rpm packages which are needed for oracle 11g on Fedora 10. Packages dependencies are going in circle. Is there any better to handle this package install and its dependencies? I was using rpm -ivh command. Following are required packages. Tried to down load packages which are not present in /var/log/rpmpkgs.
In some cases I got higher versions of the following packages.
binutils-2.17.50.0.6-2.el5
compat-libstdc++-33-3.2.3-61
elfutils-libelf-0.125-3.el5
elfutils-libelf-devel-0.125
glibc-2.5-12
glibc-common-2.5-12
glibc-devel-2.5-12
glibc-headers-2.5-12
gcc-4.1.1-52
gcc-c++-4.1.1-52
libaio-0.3.106
libaio-devel-0.3.106
libgcc-4.1.1-52
libstdc++-4.1.1
libstdc++-devel-4.1.1-52.e15
make-3.81-1.1
sysstat-7.0.0
View 1 Replies
View Related
Aug 17, 2010
I'm compiling vlc in Fedora 13 and i'm getting lot of dependent errors. I would like to install the dependencies.getting the vlc dependent packages. I prefer compiling from source codes. Kindly let me know the sites where i can download the codecs
View 5 Replies
View Related
Jan 5, 2010
After updating to Karmic, Synaptic shows almost all of my installed packages in the category "Installed (manual)", including about half of the packages that belong to a clean Ubuntu installation (e.g. apparmor, apt and hundreds of others). As a result, I can't easily get a list of those packages that I did indeed install manually and may want to remove. Is there a way of removing the "Installed (manual)" flag from all packages?
If I could do this, all packages that do not belong to the core Ubuntu system should show up as "Installed (auto removable)" and I could individually mark only those as manually installed that I really still need and let apt/synaptic uninstall everything else. I know that with today's hard disks, disk usage of installed packages is not an issue. But those packages accumulate over time and need to be updated with every security update and every ubuntu dist-upgrade, wasting time and bandwidth.
View 2 Replies
View Related
Apr 10, 2010
going through synaptic and noticed that a ton of packages are marked as being manually installed when they most definitly did NOT installed them, is there a command i can use to reset all the dependencies?
View 2 Replies
View Related
Jun 3, 2011
I want to some how get a list of the packages I installed. I was hoping that I could just list all of the packages that were not installed automatically as a dependency. It turns out that there are 320 packages that match that description (I think). Is there a way to do what I want to do? Shouldn't all of these dependencies have been installed as a handful of meta-packages instead?
View 2 Replies
View Related
Jan 15, 2010
The janitor wants to remove certain applications (svn, virtualbox) which I installed the easy way by going straight to the top and installing a GUI... I then realised the GUIs sucked, so I removed them. Now the computer janitor wants to remove virtuallbox, svn, and who knows what else all because of those stupid packages! how to mark certain packages as deliberatley installed so the computer janitor will take them and their dependencies off the list and let me clean things up?
View 2 Replies
View Related
Sep 17, 2010
I'd like to list all packages I installed since the installation. The tricky part is that I don't care for dependencies - only clean list of what I ordered to install. I went through man pages and I did not find anything relevant. Also /var/log/apt/history* doesn't say what I requested and what came as a dependency.
For gentoo-aware folks, I am looking for something like "world" file.
View 1 Replies
View Related
Nov 6, 2009
for a x problem I reinstall the complete x packages. I remove some packages with force.Before this yum works perfect. Exact at this time we have problem with our internet connections and yum hangs somewhere when yum load the repositories and or start the update process.Now yum hangs at start from the command. I can start yum some times and no locking error is rise.strace brings:
stat("/var/lib/rpm/Packages", {st_mode=S_IFREG|0644, st_size=79855616, ...}) = 0
open("/var/lib/rpm/Packages", O_RDONLY) = 4
fcntl(4, F_SETFD, FD_CLOEXEC) = 0
[code]....
View 3 Replies
View Related
Jul 29, 2011
Is there any way that I can get a list of packages (on the command line) that have been installed manually i.e. all those that haven't been installed as dependencies? I think this must be possible as apt seems to know which dependency packages are no longer required i.e. apt-get autoremove
View 2 Replies
View Related
Feb 21, 2015
I'm trying to manually boot (from the GRUB console) into a system set up as follows: crypt partition -> LVM -> root LV, and I'm having some trouble figuring out how to do this from the GRUB console.
I have successfully manually booted a system which is set up as just LVM -> VG -> root LV. All I have to do is load the LVM module. In GRUB, that partition shows up as (hd0,gpt5). Once I load the GRUB LVM module, I can see the logical volume within the LVM as well. (My volume group name is "caesar", and the single logical volume is named "root".)
Code: Select allgrub> ls
... (hd0,gpt5) ...
grub> insmod lvm
grub> ls
... (lvm/caesar-root) ...
It's fairly simple to manually boot:
Code: Select allgrub> set root=(lvm/caesar-root)
grub> linux /vmlinuz root=/dev/mapper/caesar-root
grub> initrd /initrd.img
grub> boot
Where I am having difficulty is in trying to insert crypt before LVM. I can set up such a scheme, and put a minimal installation on it, without issues. It's booting into it upon reboot that I can't figure out. Once I load the GRUB crypto, cryptodisk and luks modules, I can mount the crypto partition:
Code: Select allgrub> ls
... (hd0,gpt5) ...
grub> insmod crypto
grub> insmod cryptodisk
grub> insmod luks
grub> cryptomount (hd0,gpt5)
Attempting to decrypt master key...
Enter passphrase for hd0,gpt5 (<long hex string here>): <type my password>
Slot 0 opened
grub> ls
... (crypto0) ...
At this point, GRUB sees the crypto partition as (crypto0). But the GRUB LVM module doesn't see "inside" of the crypto partition, so I don't see the root logical volume within the LVM listed; all I see is (crypto0).
Code: Select allgrub> insmod lvm
grub> ls
... (crypt0) ...
Setting it as root doesn't work:
Code: Select allgrub> set root=(crypto0)
grub> ls /
error: disk `crypto0' not found.
So, How do I get GRUB to "see" LVM inside the crypto partition?
View 0 Replies
View Related
Jul 22, 2010
I have just installed Debian Lenny and was trying to upgrade the installed packages from the packages.debian.org site. when i asked synaptic to add the downloaded packages the would not appear, but when i checked the .xsessions file there are entries saying that the packages were being ingnored because they were either different versions, the MD5 did not match or even "can't find pkg". i have to use the local library to download the packages because i dont have an internet connection at home.
[Code]...
View 6 Replies
View Related
May 17, 2010
After installing debian 5.0.4 basic from first dvd, I extracted all other dvd images to hard disk and pointed /etc/apt/sources.list point to all these directories.
after refreshing using synaptic package manager, I got list of all 20,000+ packages, and did a
"apt-get -y install ......(all 20,000 names)". It failed due to some conflicts. So I used "--force-yes -f " option as well.
It went on for nearly two days to install everything. (in between due to power failure, something was done half way and was able to login to KDE boot option and see lots of software installed.)
After complete install - it shows a startup screen of Debian EDu - but fails to boot up.
Is there a way to install all softwares + all XWindow systems simultaneously?
View 5 Replies
View Related
Oct 14, 2010
am trying to upload packages o a PPA (packages that contain custom "sources.list"s designed to make upgrades or downgrades between Ubuntu releases easier) and, even after going through all that work to manually generate a key and sign them with gpg, dput still rejects them as "not signed".
View 3 Replies
View Related
Sep 7, 2011
HW:ACER ASPIRE 4920G with ATI Mobility Radeon HD 2400 XT. I installed debian sid from latest daily testing businesscard the day before yesterday. I did a fresh install,I select LXDE for desktop and checked standard & desktop packages while installing. I got a complete blank screen with broken color when I restart pc while I finished installing. I did a web search and add radeonhd.nomodeset=0 to grub and I run into LXDE. But I still get a problem. I tried to install gnash & gnash-common. I got E: Some index files failed to download. They have been ignored, or old ones used instead.
Reading package lists... Done
Building dependency tree
Reading state information... Done
[code]....
View 1 Replies
View Related
Feb 22, 2011
Does Debian ship with Xen 4.0.1 installed? And if so what CD/DVD contains the packages?
View 1 Replies
View Related
Apr 20, 2011
i like to know if can extract the audio track from a MP4 file sorry to ask is acc track how to extract it
View 10 Replies
View Related
Jun 29, 2015
Is there any way to track packaging progress of Plasma 5 in Debian? I periodically check [URL] .... and [URL] .... debian.org for something related, but it doesn't give any idea how far Plasma 5 is from landing in Debian (unstable / testing). Is there some easy way to track this?
View 2 Replies
View Related
Feb 2, 2011
I have been able to connect through a wired connection for a while, I have checked through many previous threads but I cannot seem to get the wireless to even pick up a signal, which this computer right next to it can pick up.
View 1 Replies
View Related
Nov 11, 2010
Some times ago I used multimedia.org. Now, I don't use them anymore. But some packages were installed from theirs source, for example yesterday I discovered old flashplayer-mozilla... Now I want to know, which of my packages are from multimedia.org repository. How to check this one? Any dpkg or apt magical command?
View 14 Replies
View Related
Dec 15, 2010
I download and install the squeez beta2 netinst iso, now want to install the debian latest upgraded packages with apt, how i can do it?
View 10 Replies
View Related
Apr 12, 2010
I'm running Debian sid on a 64 bits system. I need to install ia32-libs to install 32 bits packages (especially for skype).The problem is the following:
root@debian:/home/pierre# apt-get install ia32-libs
Reading package lists... Done
Building dependency tree
[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
Jun 14, 2011
When a Linux machine with NTP capabilities will start and it does not find the NTP server, how it will determine the time? A clue I have is that it uses some heuristic method but I don't need what does that mean. My main question is: How can I track such an event on a monitoring purpose?
View 1 Replies
View Related
Apr 8, 2015
I am working on a project which targets both 32 and 64 bit architectures at the moment. My system is amd64. I added i386 architecture using this guide. However, my problem is
Code: Select allapt-get install package-name:i386
prompts the removal of currently installed packages (amd64 arch.) which is the problem.
Code: Select allReading package lists... Done
Building dependency tree   Â
Reading state information... Done
The following extra packages will be installed:
 libportaudio0:i386
[Code] ...
Some of the packages I am talking about are
-libegl1-mesa-dev:i386
-libportaudio-dev:i386
Now, as of now, I want to carry out the compilation using 32 bit libraries, however, I really don't want to install 64bit version of all prerequisites each time I switch the compilation from 32 bit to 64. Is there any way to have both architectures at the same time?
View 1 Replies
View Related
May 6, 2015
Without knowing the consequences I added the Sid repository to Wheezy (installed version) in order to install some software. Only much later I discovered that this generated me some mess which does not allow now to install additional software due to library conflicts.
I tried to install some packages needed to build the PhantomJS but here is what I got:
Code: Select allReading package lists...
Building dependency tree...
Reading state information...
build-essential is already the newest version.
g++ is already the newest version.
g++ set to manually installed.
[Code] ....
Is there a way to clean up the mess that Sid introduced and revert back to the Wheezy versions?
I have an old backup, so it would take me much more time to reinstall/reconfigure certain software, so I am looking to alternatives.
Is there a way to check all the packages and find all the potential conflicts and then a way to restore the original Wheezy content?
View 1 Replies
View Related
Jan 1, 2016
During the installation of Debian ( debian-8.2.0-amd64-CD-1.iso ) I couldn't connect to any mirror probably because the internet wasn't configured.
Thus, after the basic installation I wasn't able to install any packages ( trying to install sudo as root prompted me to insert the media disc - the USB drive I used wasn't detected going in an infinite loop ). Judging by the fact that I don't have a window manager installed.
View 14 Replies
View Related
Feb 8, 2016
Looking for the binutils for powerpc in squeeze.
Found a reference here: [URL] ....
But the file [URL] ... is missing, has this been removed or what?
View 6 Replies
View Related
Jan 19, 2010
What is the simplest way to combine an original installation CD with several hundred additional packages that I have downloaded since the installation? My goal is not to waste future bandwidth downloading packages I already have downloaded. Bandwidth has costs both in time and money.
Background Recently I started experimenting in earnest with Debian Lenny in VirtualBox. I am new to Debian but not Linux based systems. I have seen enough the past several days with my experiments that I would like to migrate from my current Linux based system to Debian.
I installed the Debian 5.03 KDE CD to a virtual machine. In the past several days I have downloaded and installed several hundred packages since the initial installation. I have encountered no major hiccups along the way.
For future use and safekeeping, I copied all of the downloaded packages from /var/cache/apt/archives to a different directory. To become more comfortable with the Debian installation process, I want to repeat the installation several times using the original 5.03 KDE CD --- and all of the subsequently downloaded packages.
As I am new to Debian I am looking for advice and instructions for the simplest way to perform these reinstallations. I would like to perform them without any internet connection. If I understand correctly, I can copy the additional packages to a DVD and then use apt-cdrom to add the disk to my sources.list. Then I should be able to 1) use the Debian 5.03 KDE CD to perform the initial installation, 2) install the additional packages manually. If I understand correctly, something like dpkg -i * should work with the additional packages? Doable?
The "common sense" way is to somehow merge the original Debian 5.03 KDE CD with my additional packages to create my own personal Debian 5.03 KDE Plus DVD for my personal installation use. All I would want is to merge the downloaded packages into the original CD to create my own installation DVD. Nothing fancy or dramatic. Being new to Debian I don't pretend to understand the Debian Installer mechanism. Yet I can tell from the original CD image that I need to merge my additional packages into the pool directory.
I found the wiki how-to for simple-cdd. I started to run the app but stopped because I was unsure how much bandwidth the app is using. The simple-cdd tool needs internet access, but is simple-cdd downloading all the deb packages again? I don't want any of the installed packages to be re-downloaded when I already have them at hand. I'm not comprehending the how-to very well or the various options. I also want to perform a complete installation without an internet connection.
View 14 Replies
View Related
Mar 14, 2010
I'm trying to get MRTG working on my Debian Lenny server. I have installed all trhe mrtg packages but when I invoke the mrtg command I get this: $ mrtg -c mrtg.cfg Can't locate MRTG_lib.pm in @INC (@INC contains:
[code]...
where is MRTG_lib.pm?? /usr/lib/mrtg is not there?
View 1 Replies
View Related