LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 08-30-2015, 06:33 PM   #1
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Rep: Reputation: Disabled
error exit status 1


Hellow everyone.
I'm not new in Linux, but still far to expert. Something, somewhere goes terrible wrong. I can't install Chromium, or Opera, I have installed earlier SRWare Iron, but doesn’t work.
When I want install Chromium or Opera:
The following packages will be REMOVED:
gerbv kipi-plugins libamd2.2.0 libatk-wrapper-java-jni libatkmm-1.6-1 libaudcore1 libbabl-0.1-0 libcairo-gobject2 libcanberra-gtk3-0 libcolamd2.7.1
libdb5.1-java-jni libexo-1-0 libfarstream-0.1-0 libgail-3-0 libgail18 libgcr-3-1 libgegl-0.2-0 libgimp2.0 libgksu2-0 libgpod4-nogtk libgraphicsmagick++3
libgraphicsmagick3 libgtk-3-0 libgtkglext1 libgtkmm-2.4-1c2a libgtkmm-3.0-1 libgtkspell0 libkeybinder0 libksane0 libmpdclient2 libnotify4 libopencv-calib3d2.3
libopencv-contrib2.3 libopencv-features2d2.3 libopencv-highgui2.3 libopencv-legacy2.3 libopencv-objdetect2.3 libpangomm-1.4-1 libpurple0 librsvg2-2 libscim8c2a
libtelepathy-farstream2 libtelepathy-qt4-farstream2 libthunarx-2-0 libtiff5 libtumbler-1-0 libumfpack5.4.0 libvisio-0.0-0 libwebkitgtk-1.0-0 libwebkitgtk-3.0-0
libwmf0.2-7 libwnck22 libwps-0.2-2 libwxgtk2.8-0 libxfce4ui-1-0 xfce4-panel xfce4-session
The following NEW packages will be installed:
chromium chromium-inspector chromium-l10n
The following packages will be upgraded:
libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-0:i386 libgdk-pixbuf2.0-common
...
and all the time is "dpkg: error processing kipi-plugins (--remove):
subprocess installed post-removal script returned error exit status 1
"
I trying solve this problem, I searching web, but still I do not solved this problem, so I decided to ask for help on forum, plz. Thanx.
 
Old 08-31-2015, 01:03 PM   #2
twork
LQ Newbie
 
Registered: Mar 2015
Posts: 20

Rep: Reputation: Disabled
The message "exit status 1" is a general shell error message. All it means is that the shell tried to call some process which failed without providing any reason why.

In your case,

dpkg: error processing kipi-plugins (--remove):
subprocess installed post-removal script returned error exit status 1

...tells us that the process which failed was when dpkg tried to run 'kipi-plugins (--remove)'.

I'm not familiar with kipi, but looking further up the output you posted, I find:

The following packages will be REMOVED:
gerbv kipi-plugins [...]

All of this tells us that when dpkg tries to remove 'kipi-plugins', something goes wrong; it doesn't tell us much more than that.

One thing you could do is to try removing just dkg-plugins by itself. That might provide better clues, or it might just throw the same error you're already seeing.

One possibility here (a guess) is that you have installed software which kipi-plugins uses, but which dpkg isn't aware of. So when dpkg tries to remove kipi-plugins, it finds pieces of kipi-plugins that it (dpkg) did not install, and stops to give you the chance to clean things up. From the name "kipi-plugins" that seems like a fair guess. So, maybe try running kipi-plugins, and remove whatever plugins are there?
 
1 members found this post helpful.
Old 08-31-2015, 03:40 PM   #3
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
error exit status 1

Thanx. Still I not sure how to do that, I don't want have a bigger problem with the system...
And when I want run update:
apt-get update
E: Could not get lock /var/lib/apt/list/lock -  open (11: Resource temporarily unavailable)
E: Unable to lock directory /var/apt/lists/
How to run kipi-plugins??
Kipi-plugins are based on the old digiKam-plugins. I don't have, I trying install, but are still errors.

Last edited by LinuxSU; 08-31-2015 at 04:45 PM.
 
Old 08-31-2015, 04:50 PM   #4
hortageno
Member
 
Registered: Aug 2015
Distribution: Ubuntu 22.04 LTS
Posts: 240

Rep: Reputation: 67
Quote:
Originally Posted by LinuxSU View Post
Thanx. Still I not sure how to do that, I don't want have a bigger problem with the system...
And when I want run update:
apt-get update
E: Could not get lock /var/lib/apt/list/lock -* open (11: Resource temporarily unavailable)
E: Unable to lock directory /var/apt/lists/
How to run kipi-plugins??
Kipi-plugins are based on the old digiKam-plugins. I don't have, I trying install, but are still errors.
That usually means that you have synaptic or the software updater open while you try to use apt-get. Or you simply just forgot to run it with "sudo".
 
Old 08-31-2015, 04:57 PM   #5
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
error exit status 1

sudo apt-get install digikam
...
Errors
On aptitude this same.
 
Old 08-31-2015, 09:06 PM   #6
twork
LQ Newbie
 
Registered: Mar 2015
Posts: 20

Rep: Reputation: Disabled
Quote:
Originally Posted by LinuxSU View Post
Thanx. Still I not sure how to do that, I don't want have a bigger problem with the system...
And when I want run update:
apt-get update
E: Could not get lock /var/lib/apt/list/lock -* open (11: Resource temporarily unavailable)
E: Unable to lock directory /var/apt/lists/
Either you ran apt-get as a regular user (not root), or some other process has control of the package list. Usually,

Code:
# sudo apt-get update
...will work.

Quote:
How to run kipi-plugins??
Open a shell window and type "kipi-plugins".

If that fails, copy the error messages and post them here.

If that runs, my guess is that a window will pop up where you can manage a list of plugins.
 
1 members found this post helpful.
Old 09-01-2015, 04:56 PM   #7
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
error exit status 1

sudo apt-get update
E: Could not get lock /var/lib/apt/lists/lock - open (11: Resource temporarily unavailable)
E: Unable lock directory /var/lib/apt/lists/

kipi-plugins
bash: kipi-plugins: command not found

Sorry for late respond, but in day time I working, no time for linux.

Last edited by LinuxSU; 09-01-2015 at 05:16 PM.
 
Old 09-03-2015, 10:03 AM   #8
twork
LQ Newbie
 
Registered: Mar 2015
Posts: 20

Rep: Reputation: Disabled
Okay, we have a few issues to sort out:

First, why are our package management utilities failing to get a lock on /var/lib/apt/lists/lock? That has nothing to do with the package you're actually trying to remove, but it will help us understand what's going wrong. Try this:
% lsof /var/lib/apt/lists/lock
That will give us a list of processes using that file, if any. Once we have a better understanding there, we may be able to use better tools to resolve the situation.

Second, our real issue:
- Why does the system have kipi-plugins in the first place? Do any of the packages that we actually want need it?
- Why won't dpkg remove it? Usually this is because of something like:
- We used the package management system (dpkg) to install a package;
- That package has its own way of handling other software, and we used it to install something that dpkg is not aware of;
- Then, when we try to use dpkg to remove the original package, it finds pieces it isn't aware of. So, rather than risk breaking the system, it stops to let the user sort things out.
That's the situation we need to resolve. It may be possible to force dpkg to remove kipi-plugins (I'm not sure), but we shouldn't do that until we're sure that we actually need it for something.

dpkg has tools to help us answer those questions, but dpkg (and its wrapper, apt) won't operate right now because something else is also trying to do the job that they do.
 
Old 09-03-2015, 03:55 PM   #9
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
Question

I trying... respond from bash is:
bash: fg: : no such job

Quote:
Originally Posted by twork View Post
Try this:
% lsof /var/lib/apt/lists/lock
First time I have problem with any error and I don't know how to solve this problem. I searched in the web any help, but do not helped me this too much to understand and solve this problem. Thanks for this explanation on forum, I know bit more. But what next??

Last edited by LinuxSU; 09-03-2015 at 03:57 PM.
 
Old 09-03-2015, 04:56 PM   #10
hortageno
Member
 
Registered: Aug 2015
Distribution: Ubuntu 22.04 LTS
Posts: 240

Rep: Reputation: 67
try again without the % at the beginning
 
Old 09-03-2015, 04:59 PM   #11
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
At this time, nothing happen.
root@LinuxSU:/home/linuxsu# lsof /var/lib/apt/lists/lock
root@LinuxSU:/home/linuxsu#
 
Old 09-04-2015, 01:52 PM   #12
twork
LQ Newbie
 
Registered: Mar 2015
Posts: 20

Rep: Reputation: Disabled
That "%" is just a symbol to say "this is the beginning of my command line," it's not something to type yourself.

What about:

% ls -al /var/lib/apt/lists

...?

If that directory is really empty now, it could be because the process that was locking the package system is no longer running, and it won't get in the way when we try to remove kipi-plugins. So try again now?

Last edited by twork; 09-04-2015 at 01:53 PM.
 
Old 09-04-2015, 04:41 PM   #13
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
I trying. Again nothing.
bash: fg: %: no such job

I like working on debian, but this problem I can't still solve... first time I have some seriously problem, which is really for me difficult to solve.
 
Old 09-04-2015, 05:02 PM   #14
hortageno
Member
 
Registered: Aug 2015
Distribution: Ubuntu 22.04 LTS
Posts: 240

Rep: Reputation: 67
error exit status 1

http://www.linuxquestions.org/questions/linux-software-2/error-exit-status-1-a-4175552171/#post5415467

You have to read what people write. Don't type that % sign,
 
Old 09-04-2015, 05:06 PM   #15
LinuxSU
LQ Newbie
 
Registered: Jul 2015
Posts: 25

Original Poster
Rep: Reputation: Disabled
Ok. Sorry.
ls -al /var/lib/apt/lists
total 149112
drwxr-xr-x 3 root root 20480 Sep 5 00:01 .
drwxr-xr-x 5 root root 4096 Aug 31 02:00 ..
-rw-r--r-- 1 root root 6535 Aug 13 20:02 download.virtualbox.org_virtualbox_debian_dists_wheezy_contrib_binary-amd64_Packages
-rw-r--r-- 1 root root 6537 Aug 13 20:02 download.virtualbox.org_virtualbox_debian_dists_wheezy_contrib_binary-i386_Packages
-rw-r--r-- 1 root root 5398 Aug 13 20:03 download.virtualbox.org_virtualbox_debian_dists_wheezy_Release
-rw-r--r-- 1 root root 33826 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-amd64_Packages
-rw-r--r-- 1 root root 262 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-amd64_Packages.ed
-rw-r--r-- 1 root root 5611 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-amd64_Packages.IndexDiff
-rw-r--r-- 1 root root 19860 Feb 3 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-armhf_Packages
-rw-r--r-- 1 root root 53 Feb 3 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-armhf_Packages.ed
-rw-r--r-- 1 root root 3403 Feb 3 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-armhf_Packages.IndexDiff
-rw-r--r-- 1 root root 33776 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-i386_Packages
-rw-r--r-- 1 root root 261 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-i386_Packages.ed
-rw-r--r-- 1 root root 5611 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_binary-i386_Packages.IndexDiff
-rw-r--r-- 1 root root 20770 Nov 14 2014 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_i18n_Translation-en
-rw-r--r-- 1 root root 2161 Nov 22 2014 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_i18n_Translation-en.IndexDiff
-rw-r--r-- 1 root root 29848 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_source_Sources
-rw-r--r-- 1 root root 29 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_source_Sources.ed
-rw-r--r-- 1 root root 7819 Jun 3 10:30 ftp.uk.debian.org_debian_dists_wheezy-backports_contrib_source_Sources.IndexDiff
-rw-r--r-- 1 root root 2867983 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-amd64_Packages
-rw-r--r-- 1 root root 33 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-amd64_Packages.ed
-rw-r--r-- 1 root root 7819 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-amd64_Packages.IndexDiff
-rw-r--r-- 1 root root 2749208 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-armhf_Packages
-rw-r--r-- 1 root root 33 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-armhf_Packages.ed
-rw-r--r-- 1 root root 7819 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-armhf_Packages.IndexDiff
-rw-r--r-- 1 root root 2865930 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-i386_Packages
-rw-r--r-- 1 root root 33 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-i386_Packages.ed
-rw-r--r-- 1 root root 7819 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_binary-i386_Packages.IndexDiff
-rw-r--r-- 1 root root 2061245 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_i18n_Translation-en
-rw-r--r-- 1 root root 33 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_i18n_Translation-en.ed
-rw-r--r-- 1 root root 7819 Aug 16 15:35 ftp.uk.debian.org_debian_dists_wheezy-backports_main_i18n_Translation-en.IndexDiff
-rw-r--r-- 1 root root 2390465 Aug 21 15:56 ftp.uk.debian.org_debian_dists_wheezy-backports_main_source_Sources
-rw-r--r-- 1 root root 33 Aug 21 15:56 ftp.uk.debian.org_debian_dists_wheezy-backports_main_source_Sources.ed
-rw-r--r-- 1 root root 7819 Aug 21 15:56 ftp.uk.debian.org_debian_dists_wheezy-backports_main_source_Sources.IndexDiff
-rw-r--r-- 1 root root 115059 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-amd64_Packages
-rw-r--r-- 1 root root 256 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-amd64_Packages.ed
-rw-r--r-- 1 root root 6853 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-amd64_Packages.IndexDiff
-rw-r--r-- 1 root root 20438 Feb 2 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-armhf_Packages
-rw-r--r-- 1 root root 295 Feb 2 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-armhf_Packages.ed
-rw-r--r-- 1 root root 2713 Feb 2 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-armhf_Packages.IndexDiff
-rw-r--r-- 1 root root 122526 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-i386_Packages
-rw-r--r-- 1 root root 257 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-i386_Packages.ed
-rw-r--r-- 1 root root 6715 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_binary-i386_Packages.IndexDiff
-rw-r--r-- 1 root root 130217 Jan 26 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_i18n_Translation-en
-rw-r--r-- 1 root root 345 Jan 26 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_i18n_Translation-en.ed
-rw-r--r-- 1 root root 4507 Jan 26 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_i18n_Translation-en.IndexDiff
-rw-r--r-- 1 root root 37565 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_source_Sources
-rw-r--r-- 1 root root 29 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_source_Sources.ed
-rw-r--r-- 1 root root 6991 Feb 17 2015 ftp.uk.debian.org_debian_dists_wheezy-backports_non-free_source_Sources.IndexDiff
-rw-r--r-- 1 root root 166799 Sep 4 21:42 ftp.uk.debian.org_debian_dists_wheezy-backports_Release
-rw-r--r-- 1 root root 1554 Sep 4 21:42 ftp.uk.debian.org_debian_dists_wheezy-backports_Release.gpg
-rw-r--r-- 1 root root 164412 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_contrib_binary-amd64_Packages
-rw-r--r-- 1 root root 124029 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_contrib_binary-armhf_Packages
-rw-r--r-- 1 root root 165620 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_contrib_binary-i386_Packages
-rw-r--r-- 1 root root 123828 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_contrib_i18n_Translation-en
-rw-r--r-- 1 root root 175723 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_contrib_source_Sources
-rw-r--r-- 1 root root 28478149 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_main_binary-amd64_Packages
-rw-r--r-- 1 root root 27797173 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_main_binary-armhf_Packages
-rw-r--r-- 1 root root 28529643 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_main_binary-i386_Packages
-rw-r--r-- 1 root root 18477139 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_main_i18n_Translation-en
-rw-r--r-- 1 root root 25289574 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_main_source_Sources
-rw-r--r-- 1 root root 370361 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_non-free_binary-amd64_Packages
-rw-r--r-- 1 root root 233309 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_non-free_binary-armhf_Packages
-rw-r--r-- 1 root root 351164 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_non-free_binary-i386_Packages
-rw-r--r-- 1 root root 285566 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_non-free_i18n_Translation-en
-rw-r--r-- 1 root root 373762 Jan 10 2015 ftp.uk.debian.org_debian_dists_wheezy_non-free_source_Sources
-rw-r--r-- 1 root root 168219 Apr 25 11:59 ftp.uk.debian.org_debian_dists_wheezy_Release
-rw-r--r-- 1 root root 2390 Apr 25 12:16 ftp.uk.debian.org_debian_dists_wheezy_Release.gpg
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_contrib_binary-amd64_Packages
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_contrib_binary-armhf_Packages
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_contrib_binary-i386_Packages
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_contrib_i18n_Translation-en
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_contrib_source_Sources
-rw-r--r-- 1 root root 18994 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-amd64_Packages
-rw-r--r-- 1 root root 523 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-amd64_Packages.ed
-rw-r--r-- 1 root root 3403 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-amd64_Packages.IndexDiff
-rw-r--r-- 1 root root 15732 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-armhf_Packages
-rw-r--r-- 1 root root 523 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-armhf_Packages.ed
-rw-r--r-- 1 root root 3403 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-armhf_Packages.IndexDiff
-rw-r--r-- 1 root root 18969 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-i386_Packages
-rw-r--r-- 1 root root 523 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-i386_Packages.ed
-rw-r--r-- 1 root root 3403 Aug 12 22:06 ftp.uk.debian.org_debian_dists_wheezy-updates_main_binary-i386_Packages.IndexDiff
-rw-r--r-- 1 root root 14215 May 7 22:36 ftp.uk.debian.org_debian_dists_wheezy-updates_main_i18n_Translation-en
-rw-r--r-- 1 root root 690 May 7 22:36 ftp.uk.debian.org_debian_dists_wheezy-updates_main_i18n_Translation-en.ed
-rw-r--r-- 1 root root 2023 May 7 22:36 ftp.uk.debian.org_debian_dists_wheezy-updates_main_i18n_Translation-en.IndexDiff
-rw-r--r-- 1 root root 10335 Sep 4 21:16 ftp.uk.debian.org_debian_dists_wheezy-updates_main_source_Sources
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_non-free_binary-amd64_Packages
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_non-free_binary-armhf_Packages
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_non-free_binary-i386_Packages
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_non-free_i18n_Translation-en
-rw-r--r-- 1 root root 0 Sep 4 21:17 ftp.uk.debian.org_debian_dists_wheezy-updates_non-free_source_Sources
-rw-r--r-- 1 root root 150865 Sep 4 21:42 ftp.uk.debian.org_debian_dists_wheezy-updates_Release
-rw-r--r-- 1 root root 1554 Sep 4 21:42 ftp.uk.debian.org_debian_dists_wheezy-updates_Release.gpg
-rw-r----- 1 root root 0 Oct 27 2013 lock
drwxr-xr-x 2 root root 4096 Sep 5 00:01 partial
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_contrib_binary-amd64_Packages
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_contrib_binary-armhf_Packages
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_contrib_binary-i386_Packages
-rw-r--r-- 1 root root 799 Sep 4 09:41 security.debian.org_dists_wheezy_updates_contrib_i18n_Translation-en
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_contrib_source_Sources
-rw-r--r-- 1 root root 1670989 Sep 4 09:41 security.debian.org_dists_wheezy_updates_main_binary-amd64_Packages
-rw-r--r-- 1 root root 1631592 Sep 4 09:41 security.debian.org_dists_wheezy_updates_main_binary-armhf_Packages
-rw-r--r-- 1 root root 1684694 Sep 4 09:41 security.debian.org_dists_wheezy_updates_main_binary-i386_Packages
-rw-r--r-- 1 root root 1138885 Sep 4 09:41 security.debian.org_dists_wheezy_updates_main_i18n_Translation-en
-rw-r--r-- 1 root root 1000312 Sep 4 09:41 security.debian.org_dists_wheezy_updates_main_source_Sources
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_non-free_binary-amd64_Packages
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_non-free_binary-armhf_Packages
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_non-free_binary-i386_Packages
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_non-free_i18n_Translation-en
-rw-r--r-- 1 root root 0 Sep 4 09:41 security.debian.org_dists_wheezy_updates_non-free_source_Sources
-rw-r--r-- 1 root root 102271 Sep 4 09:41 security.debian.org_dists_wheezy_updates_Release
-rw-r--r-- 1 root root 1554 Sep 4 09:41 security.debian.org_dists_wheezy_updates_Release.gpg
-rw-r--r-- 1 root root 40232 Dec 1 2014 http://www.openprinting.org_download...amd64_Packages
-rw-r--r-- 1 root root 40198 Dec 1 2014 http://www.openprinting.org_download...-i386_Packages
-rw-r--r-- 1 root root 0 Mar 7 2014 http://www.openprinting.org_download...Translation-en
-rw-r--r-- 1 root root 8180 Dec 1 2014 http://www.openprinting.org_download...lsb3.2_Release
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
building sge-8.1.3 error - collect2: error: ld returned 1 exit status Reignfire Linux - Software 0 05-08-2013 01:45 PM
Error: collect 2: ld returned 1 exit status Rituparna Linux - Software 11 06-25-2009 02:54 PM
eturned error exit status 2 sulekha Ubuntu 1 11-14-2008 04:05 AM
error exit status 30 debian_dummy Debian 2 09-21-2004 10:26 PM
glibc error: ld retured 1 exit status rahul_jain_9684 Linux From Scratch 2 09-17-2003 02:57 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:08 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