Re: aptitude new packages list forgets old

2019-07-09 Thread Matus UHLAR - fantomas
> On 2019-07-08 19:21 +0200, Matus UHLAR - fantomas wrote:
> 
>> I am trying to look which packages are new in buster that were not in
>> stretch. I am using aptitude since it't great tool for browsing packages.

Sven Joachim  wrote:
> Beware that the list of new packages in buster is way too large to
> browse casually.  In main alone there are over 13,000 new binary
> packages!

I did it for 20 years, I'm not going to stop now ;-)
... I know it takes more than a day to browse for new packages.
but I have good overview of what all can packages in Debian do, worth it.

>> until now it was easy:
>>
>> do 'f'orget new packages in aptitude
>> change sources.list to point to new release
>> do 'u'pdate packages list
>> ... voila
>>
>> but now, when I do this, aptitude seems to forget all info about packages
>> previously available.
> 
> Indeed.  I have seen this before, also when switching mirrors in
> sources.list.  I seems that aptitude somehow forgets about the
> previously available packages before it sees the one from the new
> repository, which could be called a bug.

seems a bug, since in jessie this didn't happen.

>> What do I wrong? Thanks
> 
> I don't think you did actually anything wrong, since what you did ought
> to work.  To work around that, you could do either:
> 
> - run "apt update" rather than aptitude after you changed sources.list,
>   or
> 
> - _add_ an entry for the new release in sources.list rather than
>   replacing the current one (you may remove the old entry later).

I have tried this as workaround and it helper. However, it doesn't show
obsolete packages then.

btw, if running update fails, the old lists are not removed, but
intentionally failing the update is not what I want to do.

> If you want to actually do that now, you need to point back your
> sources.list to stretch temporarily and run
> "aptitude update && aptitude forget-new" before proceeding with one of
> the above suggestions.

-- 
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
I'm not interested in your website anymore.
If you need cookies, bake them yourself.



Re: aptitude new packages list forgets old

2019-07-08 Thread Sven Joachim
On 2019-07-08 19:21 +0200, Matus UHLAR - fantomas wrote:

> I am trying to look which packages are new in buster that were not in
> stretch. I am using aptitude since it't great tool for browsing packages.

Beware that the list of new packages in buster is way too large to
browse casually.  In main alone there are over 13,000 new binary
packages!

> until now it was easy:
>
> do 'f'orget new packages in aptitude
> change sources.list to point to new release
> do 'u'pdate packages list
> ... voila
>
> but now, when I do this, aptitude seems to forget all info about packages
> previously available.

Indeed.  I have seen this before, also when switching mirrors in
sources.list.  I seems that aptitude somehow forgets about the
previously available packages before it sees the one from the new
repository, which could be called a bug.

> What do I wrong? Thanks

I don't think you did actually anything wrong, since what you did ought
to work.  To work around that, you could do either:

- run "apt update" rather than aptitude after you changed sources.list,
  or

- _add_ an entry for the new release in sources.list rather than
  replacing the current one (you may remove the old entry later).

If you want to actually do that now, you need to point back your
sources.list to stretch temporarily and run
"aptitude update && aptitude forget-new" before proceeding with one of
the above suggestions.

HTH,
Sven



aptitude new packages list forgets old

2019-07-08 Thread Matus UHLAR - fantomas

Hello,

I am trying to look which packages are new in buster that were not in
stretch. I am using aptitude since it't great tool for browsing packages.

until now it was easy:

do 'f'orget new packages in aptitude
change sources.list to point to new release
do 'u'pdate packages list
... voila

but now, when I do this, aptitude seems to forget all info about packages
previously available.

What do I wrong? Thanks

--
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
Saving Private Ryan...
Private Ryan exists. Overwrite? (Y/N)



Re: new packages

2017-03-23 Thread songbird
Greg Wooledge wrote:
> On Thu, Mar 23, 2017 at 02:42:20PM -0400, songbird wrote:
>>   when you run:
>> 
>> $ apt-get upgrade
>> 
>> it will not add any new programs, but when you run:
>> 
>> $ apt-get dist-upgrade
>> 
>> it will tell you which are new of the updates it is
>> going to perform (if any).
>
> I strongly recommend using the half-documented -u option here:
>
> apt-get -u upgrade
>
> It's not in the man page, but it IS in the "apt-get -h" output.
>
> That way you'll have some warning of which services are going to be
> affected.  If, for example, you see that your database server is
> going to be upgraded, and you know that this will impact your users,
> you may want to wait until a less busy time to do the upgrade, and
> shut down your database-client application(s), etc.
>
> This is also one of the reasons why unattended upgrades are not on
> by default.

  not to worry, only one person uses this system
and i never do unattended upgrades (running testing 
or unstable at times).

  when i ran a production system there was a whole
series of things needed to take the system down and
up again.  when people today complain that the system
takes a few seconds longer to boot i mention that
ours took 12hrs (or longer).


  songbird



Re: new packages

2017-03-23 Thread Greg Wooledge
On Thu, Mar 23, 2017 at 09:00:05PM +0100, Dejan Jocic wrote:
> Actually, it is in the man page of apt-get:
> 
>  -u, --show-upgraded

Hmm... missing in stretch.  Present in jessie.  Maybe stretch decided
to turn it on by default?  (Stretch documents a "--no-show-upgraded"
option with no short equivalent.  Also, the -u option is accepted
without complaint.  Backward compatibility?)

Also, the -u in "apt-get -h" was from jessie... my bad, for reading
the man page on stretch, but then using apt-get -h on jessie.  I didn't
expect there to be such a large difference between the two.

So, testing... yes.  It does appear that "apt-get upgrade" and
"apt-get -u upgrade" both do the same thing on stretch.  I'll probably
still type the -u anyway, out of habit, and because I have many older
systems that need it.



Re: new packages

2017-03-23 Thread Dejan Jocic
On 23-03-17, Greg Wooledge wrote:
> On Thu, Mar 23, 2017 at 02:42:20PM -0400, songbird wrote:
> >   when you run:
> > 
> > $ apt-get upgrade
> > 
> > it will not add any new programs, but when you run:
> > 
> > $ apt-get dist-upgrade
> > 
> > it will tell you which are new of the updates it is
> > going to perform (if any).
> 
> I strongly recommend using the half-documented -u option here:
> 
> apt-get -u upgrade
> 
> It's not in the man page, but it IS in the "apt-get -h" output.
> 
> That way you'll have some warning of which services are going to be
> affected.  If, for example, you see that your database server is
> going to be upgraded, and you know that this will impact your users,
> you may want to wait until a less busy time to do the upgrade, and
> shut down your database-client application(s), etc.
> 
> This is also one of the reasons why unattended upgrades are not on
> by default.
> 
Actually, it is in the man page of apt-get:

 -u, --show-upgraded
Show upgraded packages; print out a list of all packages
that are
   to be upgraded. Configuration Item:
   APT::Get::Show-Upgraded.


Also, another option that could be more useful:

-s, --simulate, --just-print, --dry-run, --recon, --no-act
No action; perform a simulation of events that would occur based on
the current system state but do not actually change the system.
Locking will be disabled (Debug::NoLocking) so the system state
could change while apt-get is running. Simulations can also be
executed by non-root users which might not have read access to all
apt configuration distorting the simulation. A notice expressing
this warning is also shown by default for non-root users
(APT::Get::Show-User-Simulation-Note). Configuration Item:
APT::Get::Simulate.
   
Have fun :)



Re: new packages

2017-03-23 Thread Greg Wooledge
On Thu, Mar 23, 2017 at 02:42:20PM -0400, songbird wrote:
>   when you run:
> 
> $ apt-get upgrade
> 
> it will not add any new programs, but when you run:
> 
> $ apt-get dist-upgrade
> 
> it will tell you which are new of the updates it is
> going to perform (if any).

I strongly recommend using the half-documented -u option here:

apt-get -u upgrade

It's not in the man page, but it IS in the "apt-get -h" output.

That way you'll have some warning of which services are going to be
affected.  If, for example, you see that your database server is
going to be upgraded, and you know that this will impact your users,
you may want to wait until a less busy time to do the upgrade, and
shut down your database-client application(s), etc.

This is also one of the reasons why unattended upgrades are not on
by default.



Re: new packages

2017-03-23 Thread songbird
Pol Hallen wrote:
> Hi all :-)
>
> is there a tool to see periodically new packages added to 
> repository?(mainly I use testing)
>
> thanks!

  when you run:

$ apt-get upgrade

it will not add any new programs, but when you run:

$ apt-get dist-upgrade

it will tell you which are new of the updates it is
going to perform (if any).

if you want the gui approach synaptic will show you 
which packages are new in the repository (under the
status option).

  those are the only two things i use for upgrades
these days (i purged aptitude a while ago after i
realized i never use it any longer).


  songbird



Re: new packages

2017-03-23 Thread Reco
Hi.

On Thu, 23 Mar 2017 13:17:18 +0100
Pol Hallen <de...@fuckaround.org> wrote:

> Hi all :-)
> 
> is there a tool to see periodically new packages added to 
> repository?(mainly I use testing)

aptitude forget-new
aptitude update
aptitude search ~N

Reco



new packages

2017-03-23 Thread Pol Hallen

Hi all :-)

is there a tool to see periodically new packages added to 
repository?(mainly I use testing)


thanks!

Pol



New packages isc-dhcp-client and common break network

2010-07-16 Thread Charles Kroeger
I don't know where to look or what to do about this newly arrived problem. I
have it on good authority that isc-dhcp-client and isc-dhcp-common have not
created problems for others and indeed I've not seen any post related to these
packages. It would appear they are part of the dhcp4 upgrade but twice now
I've installed them and after I can't connect to the ISP. I've ruled out the
firewall. I use a cable modem only, eth0 no router. These are the NEW packages
sid wants to install:

isc-dhcp-client isc-dhcp-common libexiv2-9 libicu44 libmpfr4 libpodofo0.8.0
libwildmidi1

if I do only an apt-get -u upgrade I can avoid losing the network, but then
dhcp3-client and dhcp3-common can't be upgraded without the new packages so
they're held back after a while it's a mess with dependencies piling up.

I would appreciate any suggestions as to files to edit or areas to check after
this upgrade that could fix the problem.

thanks,

GTK+ 2.20.1 / GLib 2.24.1
Operating System: Linux 2.6.32-5-amd64 (x86_64)

-- 
CK


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100716235103.4de97...@mondo



debian installer ISO: customizing with new packages

2010-05-18 Thread Antonio Diaz Sanchez

 Hi,

 I would like to add two packages to the netiso installer. I have found this 
link, but I think I need more detailed instructions:

http://wiki.debian.org/DebianInstaller/Modify/CD

 Do you know a web resource that describes the necessary steps to create a new 
debian installer ISO including new packages?

 Regards,





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/893812.89466...@web28411.mail.ukl.yahoo.com



Re: debian installer ISO: customizing with new packages

2010-05-18 Thread Wolodja Wentland
On Tue, May 18, 2010 at 06:39 -0700, Antonio Diaz Sanchez wrote:
  I would like to add two packages to the netiso installer. I have
  found this link, but I think I need more detailed instructions:

 http://wiki.debian.org/DebianInstaller/Modify/CD

  Do you know a web resource that describes the necessary steps to
  create a new debian installer ISO including new packages?

I guess you could use simple-cdd for that:

http://wiki.debian.org/Simple-CDD/Howto
-- 
  .''`. Wolodja Wentlandwentl...@cl.uni-heidelberg.de 
 : :'  :
 `. `'` 4096R/CAF14EFC 
   `-   081C B7CD FF04 2BA9 94EA  36B2 8B7F 7D30 CAF1 4EFC


signature.asc
Description: Digital signature


Re: apt-pinning: how to avoid installing of all-new packages?

2010-02-07 Thread Brian C
Adrian Zaugg wrote on Wed, 27 Jan 2010 16:09:30 -0800

 PS: If you see the error:
 
 relocation error: /usr/lib/libkrb5.so.3: symbol krb5_hmac, version
 k5crypto_3_MIT not defined in file libk5crypto.so.3 with link time reference
 
 you were hit by the above mentioned bug. To solve, do the following:
 
 apt-get remove --purge libk5crypto3
 
 (You may need to purge others for hygienic reasons.) Then
 
 apt-get install --reinstall libkrb53

Thank you so much for mentioning this fix. I run (ran) a mixed
Lenny/Squeeze system and after the recent updates something installed
libk5crypto3 and made it so that apache2 would not start. This was on my
webserver, so that was obviously not good. Your message is (right now)
the only thing online that explains a fix. Thanks again.

(I don't know how to prevent libk5crypto3 from being installed again,
but I just set all my sources to Lenny and commented out the Squeeze
sources entirely for the time being, so that should work.)

Additionally, this same problem causes sshd not to work and to give this
deceptive error every time you try to login:

ssh_exchange_identification: Connection closed by remote host

Others who have that error have a hosts.deny problem, or need to
increase the MaxStartups, but none of this fixes the libk5crypto3 issue
that is actually the cause of sshd failing as well.

Brian


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: apt-pinning: how to avoid installing of all-new packages?

2010-02-07 Thread tv.deb...@googlemail.com
Brian C wrote:
 Adrian Zaugg wrote on Wed, 27 Jan 2010 16:09:30 -0800
 
 PS: If you see the error:

 relocation error: /usr/lib/libkrb5.so.3: symbol krb5_hmac, version
 k5crypto_3_MIT not defined in file libk5crypto.so.3 with link time reference

 you were hit by the above mentioned bug. To solve, do the following:

 apt-get remove --purge libk5crypto3

 (You may need to purge others for hygienic reasons.) Then

 apt-get install --reinstall libkrb53
 
 Thank you so much for mentioning this fix. I run (ran) a mixed
 Lenny/Squeeze system and after the recent updates something installed
 libk5crypto3 and made it so that apache2 would not start. This was on my
 webserver, so that was obviously not good. Your message is (right now)
 the only thing online that explains a fix. Thanks again.
 
 (I don't know how to prevent libk5crypto3 from being installed again,
 but I just set all my sources to Lenny and commented out the Squeeze
 sources entirely for the time being, so that should work.)
 

[snip]

Hi, to prevent reinstall of a specific package you can create a
/etc/apt/preferences file (or create one in /etc/apt/preferences.d/,
both methods work) with the following content:

Package: libk5crypto3
Pin: release a=testing
Pin-Priority: -1

Be aware that holding back a package indefinitely may lead to dependency
breakage at some point.

If you are not already using an /etc/apt/apt.conf (or
/etc/apt/apt.conf.d/local) file, you can also benefit from creating one
to keep a mixed system. The following content will set lenny as your
default distribution:

APT::Default-Release lenny;

the command apt-cache policy [package] will print the actual priority
policy for your system (or a specific [package]).

There's a lot more refinement to the art of mixing Debian's levels, and
I don't pretend to be a master in this art, man apt.conf and man
apt_preferences are.

Hope it helps.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: apt-pinning: how to avoid installing of all-new packages?

2010-01-29 Thread Osamu Aoki
Hi,

On Thu, Jan 28, 2010 at 12:46:31AM +0100, Adrian Zaugg wrote:
 Dear list

 How do I prevent apt in a mixed stable/testing environment from  
 installing packages that first time appear in testing using apt-pinning?

As I posted, mixed system comes with negatives.

Let's look at different side.

If you need new gcc to compile and test packages, I guess you are
ready to learn how we developer do this using specialized chroot
environment creation package: pbuilder .

Of course, you can use full featured virtualization tools such as kvm or
virtualbox-ose to use clean unstable desktop and build environment...

Osamu


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: apt-pinning: how to avoid installing of all-new packages?

2010-01-29 Thread Adrian Zaugg
Packages that rely solely on Java or PHP are not problematic to install
from Testing. That's what I do here. The suggestion for apt_prefernces

Package: *
Pin: release a=testing
Pin-Priority: -1

does unfortunately not hinder dselect from installing libk5crypto3. Any
other suggestions?


Regards, Adrian.


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



apt-pinning: how to avoid installing of all-new packages?

2010-01-27 Thread Adrian Zaugg

Dear list

How do I prevent apt in a mixed stable/testing environment from 
installing packages that first time appear in testing using apt-pinning?


Right now gcc-4.4-base would get installed on a mixed system by apt-get 
upgrade, since it does arrange well with all required libraries found in 
stable. It depends furthermore on libk5crypto3, which isn't in stable 
neither, libk5crypto3's dependencies are fullfilled aswell. Once 
installed you run into the bug #566988, which means apache, postgresql, 
ssh, ... do not run anymore. Until this bug has been fixed I want to 
prevent apt from installing packages from testing, that are not found in 
stable, except such, that I mention explicitly in /etc/apt/preferences. 
How can this be achieved?



Thank you, Adrian.


PS: If you see the error:
relocation error: /usr/lib/libkrb5.so.3: symbol krb5_hmac, version 
k5crypto_3_MIT not defined in file libk5crypto.so.3 with link time reference

you were hit by the above mentioned bug. To solve, do the following:

apt-get remove --purge libk5crypto3

(You may need to purge others for hygienic reasons.) Then

apt-get install --reinstall libkrb53

...and finally prevent apt from reinstalling libk5crypto3. How? Read the 
answers...



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Re: apt-pinning: how to avoid installing of all-new packages?

2010-01-27 Thread Boyd Stephen Smith Jr.
In 4b60d057.9020...@ente.limmat.ch, Adrian Zaugg wrote:
How do I prevent apt in a mixed stable/testing environment from
installing packages that first time appear in testing using apt-pinning?

http://wiki.debian.org/AptPreferences

My setup is mostly stable on my server and (by now) mostly testing on my 
desktop, but the configuration is virtually identical:
http://iguanasuicide.net/node/4

Until this bug has been fixed I want to
prevent apt from installing packages from testing, that are not found in
stable, except such, that I mention explicitly in /etc/apt/preferences.
How can this be achieved?

Pin testing @ -1.  Pin the testing packages you use @ 100+.
-- 
Boyd Stephen Smith Jr.   ,= ,-_-. =.
b...@iguanasuicide.net   ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy `-'(. .)`-'
http://iguanasuicide.net/\_/


signature.asc
Description: This is a digitally signed message part.


Re: problem installing new packages

2009-09-05 Thread Bernard

Florian Kulzer wrote:

On Fri, Sep 04, 2009 at 13:11:09 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Thu, Sep 03, 2009 at 19:06:41 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
  

Before the end of install process, I got
this message :


Configuring libc6


[...]

  

Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this
install process of 'audacity' and the upgrade of glibc.



[...]

  

Here is what I get :


r...@new-host:/home/bd# dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
dpkg : « ldconfig » introuvable dans la variable PATH.
dpkg: 1 programme(s) attendu(s) introuvable(s) dans la variable PATH.
NB : la variable PATH du superutilisateur doit normalement contenir
/usr/local/sbin, /usr/sbin et /sbin.
r...@new-host:/home/bd#

Maybe I should run 'ldconfig' ?   I wouldn't dare to test this
without more knowledge ; I wouldn't know what options and arguments
to add.



The problem is that ldconfig (and probably other important stuff) is
missing on your system; dpkg wants to call ldconfig before it installs
the libc6 package, therefore it is jammed. The next thing you can try is
to split the installation into two steps:

dpkg --unpack /var/cache/apt/archives/libc6_2.7-18_i386.deb
dpkg --configure libc6

That might work if --unpack does not require dpkg to run ldconfig;


It does... Therefore that doesn't work


 I
do not know the internals of dpkg well enough to judge the chances of
success.

If the above does not work then you may have to resort to manually
extracting the files contained in libc6_2.7-18_i386.deb:

http://www.debian.org/doc/manuals/reference/ch02.en.html#_extracting_package_without_dpkg

  


So far I had no success with this process. If I go into 
'/var/cache/apt/archives' where my libc6 .deb files are, and type :


ar x libc6_2.9-26_i386.deb

I get nothing


Alternatively you could try to fool dpkg by copying /bin/true to /sbin
and then rename the copy to ldconfig. Again I would not dare to
predict the chances of success of this rather dirty trick.

  



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Re: problem installing new packages

2009-09-05 Thread Florian Kulzer
On Sat, Sep 05, 2009 at 16:58:53 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Fri, Sep 04, 2009 at 13:11:09 +0200, Bernard wrote:

[...]

 r...@new-host:/home/bd# dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
 dpkg : « ldconfig » introuvable dans la variable PATH.
 dpkg: 1 programme(s) attendu(s) introuvable(s) dans la variable PATH.
 NB : la variable PATH du superutilisateur doit normalement contenir
 /usr/local/sbin, /usr/sbin et /sbin.
 r...@new-host:/home/bd#
 
 Maybe I should run 'ldconfig' ?   I wouldn't dare to test this
 without more knowledge ; I wouldn't know what options and arguments
 to add.
 
 The problem is that ldconfig (and probably other important stuff) is
 missing on your system; dpkg wants to call ldconfig before it installs
 the libc6 package, therefore it is jammed.

[...]

 If the above does not work then you may have to resort to manually
 extracting the files contained in libc6_2.7-18_i386.deb:
 
 http://www.debian.org/doc/manuals/reference/ch02.en.html#_extracting_package_without_dpkg
 
 So far I had no success with this process. If I go into
 '/var/cache/apt/archives' where my libc6 .deb files are, and type :
 
 ar x libc6_2.9-26_i386.deb
 
 I get nothing

What does nothing mean here, no output or no files extracted?
(The former would be normal and the latter could be due to missing write
privileges.) There is no reason to clutter /var/cache/apt/archives with
the extracted files; the instructions to which I referred clearly show
the command being run from some other directory (you do not even have to
be root). 

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: problem installing new packages

2009-09-05 Thread Bernard

Florian Kulzer wrote:

On Fri, Sep 04, 2009 at 13:11:09 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Thu, Sep 03, 2009 at 19:06:41 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
  

Before the end of install process, I got
this message :


Configuring libc6


[...]

  

Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this
install process of 'audacity' and the upgrade of glibc.



[...]

  

Here is what I get :


r...@new-host:/home/bd# dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
dpkg : « ldconfig » introuvable dans la variable PATH.
dpkg: 1 programme(s) attendu(s) introuvable(s) dans la variable PATH.
NB : la variable PATH du superutilisateur doit normalement contenir
/usr/local/sbin, /usr/sbin et /sbin.
r...@new-host:/home/bd#

Maybe I should run 'ldconfig' ?   I wouldn't dare to test this
without more knowledge ; I wouldn't know what options and arguments
to add.



The problem is that ldconfig (and probably other important stuff) is
missing on your system; dpkg wants to call ldconfig before it installs
the libc6 package, therefore it is jammed. The next thing you can try is
to split the installation into two steps:

dpkg --unpack /var/cache/apt/archives/libc6_2.7-18_i386.deb
dpkg --configure libc6

That might work if --unpack does not require dpkg to run ldconfig; I
do not know the internals of dpkg well enough to judge the chances of
success.

If the above does not work then you may have to resort to manually
extracting the files contained in libc6_2.7-18_i386.deb:

http://www.debian.org/doc/manuals/reference/ch02.en.html#_extracting_package_without_dpkg

Alternatively you could try to fool dpkg by copying /bin/true to /sbin
and then rename the copy to ldconfig. Again I would not dare to
predict the chances of success of this rather dirty trick.

  
I just tried something new... a really hazardous test... but since I was 
nearly ready to reinstall my Lenny, I thought I could take another chance.


Since all error messages mentioned that 'ldconfig' was missing, I 
checked my DELL laptop on Ubuntu 8.04, which was released about the same 
date as Debian Lenny. On that Ubuntu system, I found two executable 
files that are absent from my Debian system : /usr/sbin/ldconfig and 
/sbin/ldconfig.real. Such files must have been on my system at one time, 
since the man file is still there ; the executable may have been erased 
by God only knows what evil process. So, I recuperated those two files 
from my Ubuntu system and copied them into the same directories with the 
same rights on my Debian machine. Then I typed :


#ldconfig

The shell came back without a word of protest. So, some process took place.

This being done, I first tried to install 'gphoto2', which had 
repeatedly failed so far. This time, it did work. Gphoto2 is now 
installed and its functions appear to operate correctly. Still, the 
install process returned a few remarks, but it went to its end. Below 
are the comments ; they include mentions of 'ttf-mscorefonts-installer' 
which I have not found how to remove from the list of unfinished tasks 
to be retried ; I have abredged most lines concerning 
'ttf-mscorefonts-installer'


# apt-get install gphoto2
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances  
Lecture des informations d'état... Fait

Les paquets supplémentaires suivants seront installés :
 libcdk5
Paquets suggérés :
 gtkam
Les NOUVEAUX paquets suivants seront installés :
 gphoto2 libcdk5
0 mis à jour, 2 nouvellement installés, 0 à enlever et 31 non mis à jour.
1 partiellement installés ou enlevés.
Il est nécessaire de prendre 0o/319ko dans les archives.
Après cette opération, 1233ko d'espace disque supplémentaires seront 
utilisés.

Souhaitez-vous continuer [O/n] ?
Can't exec locale: Aucun fichier ou répertoire de ce type at 
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp 
at /usr/share/perl5/Debconf/Encoding.pm line 17.

Sélection du paquet libcdk5 précédemment désélectionné.
(Lecture de la base de données... 110771 fichiers et répertoires déjà 
installés.)

Dépaquetage de libcdk5 (à partir de .../libcdk5_5.0.20060507-1_i386.deb) ...
Sélection du paquet gphoto2 précédemment désélectionné.
Dépaquetage de gphoto2 (à partir de .../gphoto2_2.4.0-1_i386.deb) ...
Traitement des actions différées (« triggers ») pour « man-db »...
Paramétrage de ttf-mscorefonts-installer (2.7) ...
Can't exec locale: Aucun fichier ou répertoire de ce type at 
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp 
at /usr/share/perl5/Debconf/Encoding.pm line 17.


These fonts were provided by 

Re: problem installing new packages

2009-09-05 Thread Osamu Aoki
On Sat, Sep 05, 2009 at 06:28:15PM +0200, Bernard wrote:
...
 I just tried something new... a really hazardous test... but since I was  
 nearly ready to reinstall my Lenny, I thought I could take another 
 chance.

 Since all error messages mentioned that 'ldconfig' was missing, I  
 checked my DELL laptop on Ubuntu 8.04, which was released about the same  
 date as Debian Lenny. On that Ubuntu system, I found two executable  
 files that are absent from my Debian system : /usr/sbin/ldconfig and  
 /sbin/ldconfig.real. Such files must have been on my system at one time,  
 since the man file is still there ; the executable may have been erased  
 by God only knows what evil process. So, I recuperated those two files  
 from my Ubuntu system and copied them into the same directories with the  
 same rights on my Debian machine. Then I typed :

How do you know those files from  Ubuntu system works on Debian.  I do
not think you even checked version.  There is no binary compatibility
gurantee even though it works sometims.

FYI: I only have /sbin/ldconfig and no /sbin/ldconfig.real on my lenny.

Your action may have work as emergency tactics but this kind of action
requires full reinstall after backing up your data on the system.

It looks to me you have broken system sometime ago by yourself.
Reinstall is the easiest way to get same state for such case. 

Osamu


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: problem installing new packages

2009-09-04 Thread Florian Kulzer
On Thu, Sep 03, 2009 at 19:06:41 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
 Before the end of install process, I got
 this message :
 
 
 Configuring libc6
 [...]
 
 Do you want to upgrade glibc now ?
 
 
 I replied 'no', and, so far, I have not attempted to continue this
 install process of 'audacity' and the upgrade of glibc.
 [...]
 
 Ever since then, I am encountering problems and error messages when
 trying to install something. For instance, if I do :
 
 #apt-get install gphoto2
 
 the install process starts... then :
 
 
 Can't exec locale: no file or directory of this type at
 /usr/share/perl5/Debconf/Encoding.pm line 16.
 Use of uninitialized value $Debconf::Encoding::charmap in scalar
 chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
 dpkg : « ldconfig » not found in the variable PATH.
 dpkg: 1 expected program not found in the variable PATH.
 NB : the variable PATH of the superuser should contain
 /usr/local/sbin, /usr/sbin et /sbin.
 E: Sub-process /usr/bin/dpkg returned an error code (2)

[...]

 new-host:/home/bd# dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
 Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
 rc libc-bin 2.9-25
 un libc-dev néant
 ii libc6 2.7-18
 ii libc6-dev 2.7-18
 ii libc6-i686 2.7-18
 un libc6.1 néant

[...]

 Here is what I get :
 
 file /sbin/ldconfig
 /sbin/ldconfig: ERROR: cannot open `/sbin/ldconfig' (No such file or 
 directory)
 
 dpkg -L libc6 | grep ldconfig
 (it just returns the shell, nothing else)

It seems that dpkg is confused: It claims that libc6 version 2.7-18 is
installed without problems, but it does not know about /sbin/ldconfig
and the file itself is not present on your system.

 r...@new-host:/home/bd# echo $PATH
 /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

That is OK at least.

I propose to try reinstalling libc6 2.7-18 with dpkg. The necessary .deb
file should still be in your apt cache, so this might work:

dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb

If the .deb is missing then you can download it manually with your
favorite browser:

http://packages.debian.org/lenny/libc6

(Scroll down to the section Download libc6 and click on the link for
 your architecture in the table.)

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: problem installing new packages

2009-09-04 Thread Bernard

Florian Kulzer wrote:

On Thu, Sep 03, 2009 at 19:06:41 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
  

Before the end of install process, I got
this message :


Configuring libc6


[...]

  

Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this
install process of 'audacity' and the upgrade of glibc.


[...]

  

Ever since then, I am encountering problems and error messages when
trying to install something. For instance, if I do :

#apt-get install gphoto2

the install process starts... then :


Can't exec locale: no file or directory of this type at
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar
chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
dpkg : « ldconfig » not found in the variable PATH.
dpkg: 1 expected program not found in the variable PATH.
NB : the variable PATH of the superuser should contain
/usr/local/sbin, /usr/sbin et /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)



[...]

  

new-host:/home/bd# dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
rc libc-bin 2.9-25
un libc-dev néant
ii libc6 2.7-18
ii libc6-dev 2.7-18
ii libc6-i686 2.7-18
un libc6.1 néant



[...]

  

Here is what I get :

file /sbin/ldconfig
/sbin/ldconfig: ERROR: cannot open `/sbin/ldconfig' (No such file or directory)

dpkg -L libc6 | grep ldconfig
(it just returns the shell, nothing else)



It seems that dpkg is confused: It claims that libc6 version 2.7-18 is
installed without problems, but it does not know about /sbin/ldconfig
and the file itself is not present on your system.

  

r...@new-host:/home/bd# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin



That is OK at least.

I propose to try reinstalling libc6 2.7-18 with dpkg. The necessary .deb
file should still be in your apt cache, so this might work:

dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
  


I will test this right away. Before doing this, so as to make sure I 
won't forget later, I am pasting an output below :


b...@new-host:/var/cache/apt/archives$ ls -l libc6*
-r--r--r-- 1 root root 4437976 aoû 26 03:06 libc6_2.7-18_i386.deb
-rw-r--r-- 1 root root 3802420 aoû 17 00:05 libc6_2.9-25_i386.deb
-rw-r--r-- 1 root root 3802602 aoû 31 19:02 libc6_2.9-26_i386.deb
-rw-r--r-- 1 root root 3377088 jan  5  2009 libc6-dev_2.7-18_i386.deb
-rw-r--r-- 1 root root 4802506 aoû 17 00:05 libc6-dev_2.9-25_i386.deb
-rw-r--r-- 1 root root 4803706 aoû 31 19:02 libc6-dev_2.9-26_i386.deb
-rw-r--r-- 1 root root 1234710 aoû 17 00:05 libc6-i686_2.9-25_i386.deb
-rw-r--r-- 1 root root 1234902 aoû 31 19:02 libc6-i686_2.9-26_i386.deb

The file dates are interresting. I have several libc6 packages. The ones 
dated aug 31 (libc6_2.9-26_i386.deb and libc6-i686_2.9-26_i386.deb) must 
be the ones that tried to get install in the process of installing 
'audacity 1.3.8 testing'. The install process clearly stated that it was 
going to update my libc6. The only package dated aug 26 must be the one 
that got installed in the process of setting up my new Lenny at that 
date ; there was no associated dev package. I don't know what are 
packages dated aug17, since it was a few days before I installed Lenny ; 
at the time I was still running Sarge and, since I did not upgrade but 
reformated and installed from scratch, I should have no remains from old 
Sarge in my system. What is puzzling me is that the package dated aug 16 
is of a newer version than the one dated aug 26. An other thing that 
come to my attention is that all of these deb package files are 'rw', 
except the first one that appears on the list, dated aug26, the date of 
my Lenny install.


This being said, I will be trying to re-install libc6. Coming back soon.

If the .deb is missing then you can download it manually with your
favorite browser:

http://packages.debian.org/lenny/libc6

(Scroll down to the section Download libc6 and click on the link for
 your architecture in the table.)

  



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Re: problem installing new packages

2009-09-04 Thread Bernard

Florian Kulzer wrote:

On Thu, Sep 03, 2009 at 19:06:41 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
  

Before the end of install process, I got
this message :


Configuring libc6


[...]

  

Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this
install process of 'audacity' and the upgrade of glibc.


[...]

  

Ever since then, I am encountering problems and error messages when
trying to install something. For instance, if I do :

#apt-get install gphoto2

the install process starts... then :


Can't exec locale: no file or directory of this type at
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar
chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
dpkg : « ldconfig » not found in the variable PATH.
dpkg: 1 expected program not found in the variable PATH.
NB : the variable PATH of the superuser should contain
/usr/local/sbin, /usr/sbin et /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)



[...]

  

new-host:/home/bd# dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
rc libc-bin 2.9-25
un libc-dev néant
ii libc6 2.7-18
ii libc6-dev 2.7-18
ii libc6-i686 2.7-18
un libc6.1 néant



[...]

  

Here is what I get :

file /sbin/ldconfig
/sbin/ldconfig: ERROR: cannot open `/sbin/ldconfig' (No such file or directory)

dpkg -L libc6 | grep ldconfig
(it just returns the shell, nothing else)



It seems that dpkg is confused: It claims that libc6 version 2.7-18 is
installed without problems, but it does not know about /sbin/ldconfig
and the file itself is not present on your system.

  

r...@new-host:/home/bd# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin



That is OK at least.

I propose to try reinstalling libc6 2.7-18 with dpkg. The necessary .deb
file should still be in your apt cache, so this might work:

dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
  


Here is what I get :


r...@new-host:/home/bd# dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
dpkg : « ldconfig » introuvable dans la variable PATH.
dpkg: 1 programme(s) attendu(s) introuvable(s) dans la variable PATH.
NB : la variable PATH du superutilisateur doit normalement contenir 
/usr/local/sbin, /usr/sbin et /sbin.

r...@new-host:/home/bd#

Maybe I should run 'ldconfig' ?   I wouldn't dare to test this without 
more knowledge ; I wouldn't know what options and arguments to add.



If the .deb is missing then you can download it manually with your
favorite browser:

http://packages.debian.org/lenny/libc6

(Scroll down to the section Download libc6 and click on the link for
 your architecture in the table.)

  



--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Re: problem installing new packages

2009-09-04 Thread Florian Kulzer
On Fri, Sep 04, 2009 at 13:11:09 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Thu, Sep 03, 2009 at 19:06:41 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
 Before the end of install process, I got
 this message :
 
 
 Configuring libc6
 [...]
 
 Do you want to upgrade glibc now ?
 
 
 I replied 'no', and, so far, I have not attempted to continue this
 install process of 'audacity' and the upgrade of glibc.

[...]

 Here is what I get :
 
 
 r...@new-host:/home/bd# dpkg -i /var/cache/apt/archives/libc6_2.7-18_*.deb
 dpkg : « ldconfig » introuvable dans la variable PATH.
 dpkg: 1 programme(s) attendu(s) introuvable(s) dans la variable PATH.
 NB : la variable PATH du superutilisateur doit normalement contenir
 /usr/local/sbin, /usr/sbin et /sbin.
 r...@new-host:/home/bd#
 
 Maybe I should run 'ldconfig' ?   I wouldn't dare to test this
 without more knowledge ; I wouldn't know what options and arguments
 to add.

The problem is that ldconfig (and probably other important stuff) is
missing on your system; dpkg wants to call ldconfig before it installs
the libc6 package, therefore it is jammed. The next thing you can try is
to split the installation into two steps:

dpkg --unpack /var/cache/apt/archives/libc6_2.7-18_i386.deb
dpkg --configure libc6

That might work if --unpack does not require dpkg to run ldconfig; I
do not know the internals of dpkg well enough to judge the chances of
success.

If the above does not work then you may have to resort to manually
extracting the files contained in libc6_2.7-18_i386.deb:

http://www.debian.org/doc/manuals/reference/ch02.en.html#_extracting_package_without_dpkg

Alternatively you could try to fool dpkg by copying /bin/true to /sbin
and then rename the copy to ldconfig. Again I would not dare to
predict the chances of success of this rather dirty trick.

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: problem installing new packages

2009-09-03 Thread Florian Kulzer
On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
 Florian Kulzer wrote:
 On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:

 Before the end of install process, I got
 this message :
 
 
 Configuring libc6
 
 [...]
 
 Do you want to upgrade glibc now ?
 
 
 I replied 'no', and, so far, I have not attempted to continue this
 install process of 'audacity' and the upgrade of glibc.
 
 [...]
 
 Ever since then, I am encountering problems and error messages when
 trying to install something. For instance, if I do :
 
 #apt-get install gphoto2
 
 the install process starts... then :
 
 
 Can't exec locale: no file or directory of this type at
 /usr/share/perl5/Debconf/Encoding.pm line 16.
 Use of uninitialized value $Debconf::Encoding::charmap in scalar
 chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
 dpkg : « ldconfig » not found in the variable PATH.
 dpkg: 1 expected program not found in the variable PATH.
 NB : the variable PATH of the superuser should contain
 /usr/local/sbin, /usr/sbin et /sbin.
 E: Sub-process /usr/bin/dpkg returned an error code (2)
 
 /usr/bin/locale and especially /sbin/ldconfig are important programs
 which are part of the libc-bin package. Your aborted libc6 upgrade seems
 to have removed this package (and possibly others), or something is
 wrong with your $PATH.
 
 Please post the output of this command
 dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
 
 so that we can see the status of libc-related packages on your system.
 Here it is :
 
 new-host:/home/bd# dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
 Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
 rc libc-bin 2.9-25
 un libc-dev néant
 ii libc6 2.7-18
 ii libc6-dev 2.7-18
 ii libc6-i686 2.7-18
 un libc6.1 néant

That does not look too bad on first glance, you seem to have the Lenny
versions of the libc6* packages installed, and the testing version of
libc-bin was removed again. In that case /sbin/ldconfig should still be
part of libc6 itself. What do you get from:

file /sbin/ldconfig

dpkg -L libc6 | grep ldconfig

echo $PATH

(the last one as root)

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: problem installing new packages

2009-09-03 Thread Bernard

Florian Kulzer wrote:

On Thu, Sep 03, 2009 at 00:09:07 +0200, Bernard wrote:
  

Florian Kulzer wrote:


On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
  

Before the end of install process, I got
this message :


Configuring libc6


[...]

  

Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this
install process of 'audacity' and the upgrade of glibc.


[...]

  

Ever since then, I am encountering problems and error messages when
trying to install something. For instance, if I do :

#apt-get install gphoto2

the install process starts... then :


Can't exec locale: no file or directory of this type at
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar
chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
dpkg : « ldconfig » not found in the variable PATH.
dpkg: 1 expected program not found in the variable PATH.
NB : the variable PATH of the superuser should contain
/usr/local/sbin, /usr/sbin et /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)


/usr/bin/locale and especially /sbin/ldconfig are important programs
which are part of the libc-bin package. Your aborted libc6 upgrade seems
to have removed this package (and possibly others), or something is
wrong with your $PATH.

Please post the output of this command
dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'

so that we can see the status of libc-related packages on your system.
  

Here it is :

new-host:/home/bd# dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
rc libc-bin 2.9-25
un libc-dev néant
ii libc6 2.7-18
ii libc6-dev 2.7-18
ii libc6-i686 2.7-18
un libc6.1 néant



That does not look too bad on first glance, you seem to have the Lenny
versions of the libc6* packages installed, and the testing version of
libc-bin was removed again. In that case /sbin/ldconfig should still be
part of libc6 itself. What do you get from:

file /sbin/ldconfig

dpkg -L libc6 | grep ldconfig

echo $PATH

(the last one as root)

  


Here is what I get :

file /sbin/ldconfig
/sbin/ldconfig: ERROR: cannot open `/sbin/ldconfig' (No such file or directory)

dpkg -L libc6 | grep ldconfig
(it just returns the shell, nothing else)

r...@new-host:/home/bd# echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




problem installing new packages

2009-09-02 Thread Bernard

Hi to Everyone !

I surely made a mistake trying to install 'audacity v1.3.8 beta'. 
Someone told me that this new beta version was really different from 
earlier releases, so I wanted to test it.


Since 'apt-get install audacity' told me that my already installed 1.3.5 
beta version was the last version available, I decided to try 'testing' 
directories in my /etc/apt/sources.list. This and the apt-get update 
being done, I renewed my attempt with apt-get install. This time, it did 
start to install v1.3.8 of audacity. But I encountered a problem ! 
Before the end of install process, I got this message :



Configuring libc6
Running services and programs that are using NSS need to be restarted, 
otherwise they might not be able to do lookup or authentication any 
more. The installation process is able to restart some services (such as 
ssh or telnetd), but other programs cannot be restarted automatically. 
One such program that needs manual stopping and restart after the glibc 
update by yourself is xdm - because automatic restart might disconnect 
your active X11 sessions.
This script detected the following installed services which must be 
stopped before the upgrade : gdm
If you want to interrupt the upgrade now and continue later, please 
answer no to the question below.


Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this 
install process of 'audacity' and the upgrade of glibc. My 
/etc/apt/sources.list have been restaured to what it was before, that is :


deb http://ftp.fr.debian.org/debian/ lenny main non-free contrib
deb-src http://ftp.fr.debian.org/debian/ lenny main non-free contrib

deb http://security.debian.org/ lenny/updates main
deb-src http://security.debian.org/ lenny/updates main

deb http://volatile.debian.org/debian-volatile lenny/volatile main
deb-src http://volatile.debian.org/debian-volatile lenny/volatile main

and I did an 'apt-get update' too.


Ever since then, I am encountering problems and error messages when 
trying to install something. For instance, if I do :


#apt-get install gphoto2

the install process starts... then :


Can't exec locale: no file or directory of this type at 
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar chomp 
at /usr/share/perl5/Debconf/Encoding.pm line 17.

dpkg : « ldconfig » not found in the variable PATH.
dpkg: 1 expected program not found in the variable PATH.
NB : the variable PATH of the superuser should contain /usr/local/sbin, 
/usr/sbin et /sbin.

E: Sub-process /usr/bin/dpkg returned an error code (2)

I got something similar when trying to install flashplugin.

Should I go finish the upgrade of libc6 which I interrupted before the 
end as explained above ?   On the contrary, would I be better cancelling 
the previous unfinished job (but how to cancel it ?) and go back to libc5 ?


Thanks in advance for your help


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Re: problem installing new packages

2009-09-02 Thread Florian Kulzer
On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
 I surely made a mistake trying to install 'audacity v1.3.8 beta'.

[...]

 Since 'apt-get install audacity' told me that my already installed
 1.3.5 beta version was the last version available, I decided to try
 'testing' directories in my /etc/apt/sources.list. This and the
 apt-get update being done, I renewed my attempt with apt-get
 install. This time, it did start to install v1.3.8 of audacity. But
 I encountered a problem ! Before the end of install process, I got
 this message :
 
 
 Configuring libc6

[...]

 Do you want to upgrade glibc now ?
 
 
 I replied 'no', and, so far, I have not attempted to continue this
 install process of 'audacity' and the upgrade of glibc.

[...]

 Ever since then, I am encountering problems and error messages when
 trying to install something. For instance, if I do :
 
 #apt-get install gphoto2
 
 the install process starts... then :
 
 
 Can't exec locale: no file or directory of this type at
 /usr/share/perl5/Debconf/Encoding.pm line 16.
 Use of uninitialized value $Debconf::Encoding::charmap in scalar
 chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
 dpkg : « ldconfig » not found in the variable PATH.
 dpkg: 1 expected program not found in the variable PATH.
 NB : the variable PATH of the superuser should contain
 /usr/local/sbin, /usr/sbin et /sbin.
 E: Sub-process /usr/bin/dpkg returned an error code (2)

/usr/bin/locale and especially /sbin/ldconfig are important programs
which are part of the libc-bin package. Your aborted libc6 upgrade seems
to have removed this package (and possibly others), or something is
wrong with your $PATH.

Please post the output of this command

dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'

so that we can see the status of libc-related packages on your system.

-- 
Regards,| http://users.icfo.es/Florian.Kulzer
  Florian   |


--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: problem installing new packages

2009-09-02 Thread Bernard

Florian Kulzer wrote:

On Wed, Sep 02, 2009 at 20:26:06 +0200, Bernard wrote:
  

I surely made a mistake trying to install 'audacity v1.3.8 beta'.



[...]

  

Since 'apt-get install audacity' told me that my already installed
1.3.5 beta version was the last version available, I decided to try
'testing' directories in my /etc/apt/sources.list. This and the
apt-get update being done, I renewed my attempt with apt-get
install. This time, it did start to install v1.3.8 of audacity. But
I encountered a problem ! Before the end of install process, I got
this message :


Configuring libc6



[...]

  

Do you want to upgrade glibc now ?


I replied 'no', and, so far, I have not attempted to continue this
install process of 'audacity' and the upgrade of glibc.



[...]

  

Ever since then, I am encountering problems and error messages when
trying to install something. For instance, if I do :

#apt-get install gphoto2

the install process starts... then :


Can't exec locale: no file or directory of this type at
/usr/share/perl5/Debconf/Encoding.pm line 16.
Use of uninitialized value $Debconf::Encoding::charmap in scalar
chomp at /usr/share/perl5/Debconf/Encoding.pm line 17.
dpkg : « ldconfig » not found in the variable PATH.
dpkg: 1 expected program not found in the variable PATH.
NB : the variable PATH of the superuser should contain
/usr/local/sbin, /usr/sbin et /sbin.
E: Sub-process /usr/bin/dpkg returned an error code (2)



/usr/bin/locale and especially /sbin/ldconfig are important programs
which are part of the libc-bin package. Your aborted libc6 upgrade seems
to have removed this package (and possibly others), or something is
wrong with your $PATH.

Please post the output of this command
dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'

so that we can see the status of libc-related packages on your system.
  

Here it is :

new-host:/home/bd# dpkg -l libc6\* libc-\* | awk '/^[^D|+]/{print $1,$2,$3}'
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder 
rc libc-bin 2.9-25

un libc-dev néant
ii libc6 2.7-18
ii libc6-dev 2.7-18
ii libc6-i686 2.7-18
un libc6.1 néant
new-host:/home/bd# 





--
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Re: Which new packages?

2008-08-14 Thread Johann Spies
On Wed, Aug 13, 2008 at 07:41:13AM -0700, Daniel Burrows wrote:

  This is on testing. But I suspect the same will be true for sid.
 
 $ aptitude search '?new'
 
   ...although if you've never examined the list of new packages before,
 you might find that there are rather a lot.  Run aptitude forget-new
 if you want to empty the list.

Thanks.  I only read your last paragraph after I was dissapointed with

$ aptitude search '?new' | wc -l
9065
$ aptitude search ~N | wc -l
9065

So now I know.

Regards
Johann
-- 
Johann Spies  Telefoon: 021-808 4036
Informasietegnologie, Universiteit van Stellenbosch

 Let us therefore come boldly unto the throne of grace,
  that we may obtain mercy, and find grace to help in 
  time of need.   Hebrews 4:16 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Which new packages?

2008-08-13 Thread Johann Spies
Sometimes when I do 'aptitude update' I see that new packages are
available.  Is there a log somewhere which will inform me of which new
packages are available?

This is on testing. But I suspect the same will be true for sid.


Regards
Johann
-- 
Johann Spies  Telefoon: 021-808 4036
Informasietegnologie, Universiteit van Stellenbosch

 Watch ye therefore, and pray always, that ye may be 
  accounted worthy to escape all these things that shall
  come to pass, and to stand before the Son of man.
   Luke 21:36 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Which new packages?

2008-08-13 Thread Eugene V. Lyubimkin
Johann Spies wrote:
 Sometimes when I do 'aptitude update' I see that new packages are
 available.  Is there a log somewhere which will inform me of which new
 packages are available?
 
 This is on testing. But I suspect the same will be true for sid.
try 'daptup' utility from sid

-- 
Eugene V. Lyubimkin aka JackYF, Ukrainian C++ developer.



signature.asc
Description: OpenPGP digital signature


Re: Which new packages?

2008-08-13 Thread Celejar
On Wed, 13 Aug 2008 11:50:53 +0300
Eugene V. Lyubimkin [EMAIL PROTECTED] wrote:

 Johann Spies wrote:
  Sometimes when I do 'aptitude update' I see that new packages are
  available.  Is there a log somewhere which will inform me of which new
  packages are available?
  
  This is on testing. But I suspect the same will be true for sid.
 try 'daptup' utility from sid

Or just 'aptitude search ~N'

 Eugene V. Lyubimkin aka JackYF, Ukrainian C++ developer.

Celejar
--
mailmin.sourceforge.net - remote access via secure (OpenPGP) email
ssuds.sourceforge.net - A Simple Sudoku Solver and Generator


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Which new packages?

2008-08-13 Thread Ron Johnson

On 08/13/08 01:38, Johann Spies wrote:

Sometimes when I do 'aptitude update' I see that new packages are
available.  Is there a log somewhere which will inform me of which new
packages are available?

This is on testing. But I suspect the same will be true for sid.


apt-show-versions -u

--
Ron Johnson, Jr.
Jefferson LA  USA

Do not bite at the bait of pleasure till you know there is no
hook beneath it.  -- Thomas Jefferson


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Which new packages?

2008-08-13 Thread Daniel Burrows
On Wed, Aug 13, 2008 at 08:38:25AM +0200, Johann Spies [EMAIL PROTECTED] was 
heard to say:
 Sometimes when I do 'aptitude update' I see that new packages are
 available.  Is there a log somewhere which will inform me of which new
 packages are available?
 
 This is on testing. But I suspect the same will be true for sid.

$ aptitude search '?new'

  ...although if you've never examined the list of new packages before,
you might find that there are rather a lot.  Run aptitude forget-new
if you want to empty the list.

  Daniel


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



apt-get trying to install new packages in floppy disk

2007-07-02 Thread Yi Wang

Hi all,

I just did a minimum net-install to a server. Now when I tried to do
apt-get install openssh-server, I saw the following error messages:

After unpacking 569kB of additional disk sace will be used.
0% [Working ]hde: Invalid capacity for disk in drive
hde: 0kB, 0/0/0 CHS, 0 kBps, 0 sector size, 15536 rpm
hde: Invalid capacity for disk in drive
hde: 0kB, 0/0/0 CHS, 0 kBps, 0 sector size, 45116 rpm
Media change: please insert the disc labeled
'Debian GNU/Libux 4.0 r0 _Etch_ - Official i386 NETINST Binary-1 20070407-11:29'
in the drive '/cdrom/' and press enter

But the hde is the floppy disk... Even if I tried to put the NETINST
installation disk in the DVDROM, nothing happened (of course..)

I have only two partitions on a SCSI RAID: /dev/sda1 mounted on / ,
and a swap partition.

Any hints?

Thank you for your help in advance!


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: apt-get trying to install new packages in floppy disk

2007-07-02 Thread Pol Hallen
 hde: 0kB, 0/0/0 CHS, 0 kBps, 0 sector size, 45116 rpm
 But the hde is the floppy disk... Even if I tried to put the NETINST
 installation disk in the DVDROM, nothing happened (of course..)
dmesg |grep hd
what does show?

 I have only two partitions on a SCSI RAID: /dev/sda1 mounted on / ,
 and a swap partition.
 Thank you for your help in advance!
Which motherboard u using?
 
Pol


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get reports no new packages

2006-11-30 Thread ss11223


On Nov 29, 11:00 pm, William Jensen [EMAIL PROTECTED] wrote:
 I'm following Etch and apt is reporting no new packages for a touch over a 
 week.From past experience I know that this is highly unlikely. Also, a 
 friend runsnearly the same setup as I have and he is still getting daily 
 updates. Any ideas
 what I could check/do?

 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Apparently there is a new Debian key making the rounds without good
instructions for installing it yet.
This broke the local mirror I was using to update my system.

See:
http://www.linuxquestions.org/questions/showthread.php?t=503417
for other discussion


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get reports no new packages

2006-11-30 Thread Wayne Topa
Nate Duehr([EMAIL PROTECTED]) is reported to have said:
 William Jensen wrote:
 I'm following Etch and apt is reporting no new packages for a touch over a 
 week.
 
 Make sure your /etc/apt/sources.list is pointed at an official Debian 
 mirror and if you can get a specific example from your friend of 
 something that updated on his machine but not yours, hunt down which 
 mirror he got it from and see if your mirror is getting updates properly.
 

I found that while testing apt-cacher I had the same problem,  If I
didn't use the cacher, I got 50 updates.  But...  while trying to find 
'working' mirrors, from the current mirror list, I found many that
were just not there.  Some of the mirrors took three tries to get a
working package list. See previous post on that problem.

Here are todays results of a netselect run on the first 7 in the
latest mirror list of US sites.

netselect -vv ftp.us.debian.org http.us.debian.org ftp.debian.org
debian.crosslink.net ftp-linux.cc.gatech.edu ftp.egr.msu.edu
ike.egr.msu.edu

204.152.191.7  251 ms  12 hops   90% ok ( 9/10) [  613]
128.101.240.212225 ms  11 hops   70% ok ( 7/10) [  676]
35.9.37.225218 ms  15 hops   57% ok ( 4/ 7) [  952]
ftp.debian.org 225 ms  11 hops   70% ok ( 7/10) [  674]
debian.crosslink.net   217 ms  15 hops   90% ok ( 9/10) [  605]
128.61.111.11  ms  30 hops0% ok
128.61.111.10  ms  30 hops0% ok
128.61.111.9   ms  30 hops0% ok
ftp.egr.msu.edu198 ms  15 hops   60% ok ( 6/10) [  825]
128.101.80.133 ms  30 hops0% ok
35.9.37.225202 ms  15 hops   50% ok ( 5/10) [ 1010]
216.37.55.114  ms  30 hops0% ok
208.185.25.35  ms  30 hops0% ok
ike.egr.msu.edu200 ms  15 hops   50% ok ( 5/10) [ 1002]
  605 debian.crosslink.net

It seems a waste but it looks like having more then one mirror in the
sources.list might be necessary.

Wayne

-- 
WINDOWS stands for Will Install Needless Data On Whole System.
___


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get reports no new packages

2006-11-30 Thread Greg Norris
On Wed, Nov 29, 2006 at 09:38:00PM -0600, William Jensen wrote:
 I'm following Etch and apt is reporting no new packages for a touch 
 over a week.

I've been seeing the same behaviour over the past week or so, with 
/etc/apt/sources.list configured with:

   deb http://http.us.debian.org/debian etch main

Everything seems to be working again after changing the entry to:

   deb http://ftp.debian.org/debian etch main



signature.asc
Description: Digital signature


apt-get reports no new packages

2006-11-29 Thread William Jensen
I'm following Etch and apt is reporting no new packages for a touch over a week.
From past experience I know that this is highly unlikely. Also, a friend runs
nearly the same setup as I have and he is still getting daily updates. Any ideas
what I could check/do?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get reports no new packages

2006-11-29 Thread Paul Dwerryhouse
On Wed, Nov 29, 2006 at 09:38:00PM -0600, William Jensen wrote:
 I'm following Etch and apt is reporting no new packages for a touch
 over a week.  From past experience I know that this is highly
 unlikely. Also, a friend runs nearly the same setup as I have and he
 is still getting daily updates.  Any ideas what I could check/do?

Try changing the mirror that you're using (in /etc/apt/sources.list).

Sometimes some mirrors don't get updated...

Cheers,

Paul

-- 
Paul Dwerryhouse| PGP Key ID: 0x6B91B584

A look at Ubuntu Server Edition:
http://nepotismia.com/review/ubuntu/server/6.06/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-get reports no new packages

2006-11-29 Thread Nate Duehr

William Jensen wrote:

I'm following Etch and apt is reporting no new packages for a touch over a week.

From past experience I know that this is highly unlikely. Also, a friend runs

nearly the same setup as I have and he is still getting daily updates. Any ideas
what I could check/do?


Make sure your /etc/apt/sources.list is pointed at an official Debian 
mirror and if you can get a specific example from your friend of 
something that updated on his machine but not yours, hunt down which 
mirror he got it from and see if your mirror is getting updates properly.


He also may have other things installed that you don't, so he's getting 
updates to packages you don't have installed.


Nate


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Glen Yu
Hi,A recent apt-get upgrade kinda failed because of some error (forgot what it was, but I think it was trouble overwriting some file). Anyway, as a result of that I can't install any new packages now because it keeps telling me xxx: Depends on yyy blah blah) and apt-get -f install doesn't fix anything because it just tries to install the package which failed before, and fails again. 
What can I do to fix this dependency problem?Thanks,-GY


Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Glen Yu wrote:
 Hi,
 
 A recent apt-get upgrade kinda failed because of some error (forgot what
 it was, but I think it was trouble overwriting some file).  Anyway, as a
 result of that I can't install any new packages now because it keeps
 telling
 me xxx: Depends on yyy blah blah) and apt-get -f install doesn't fix
 anything because it just tries to install the package which failed before,
 and fails again.
 
 What can I do to fix this dependency problem?

Start by giving us more information.

Which branch (stable, testing, unstable, mixture) are you running?

What xxx and what yyy?

If testing or unstable, waiting a day or two will/should solve the
problem.

Removing xxx with dpkg -r should also help.

- --
Ron Johnson, Jr.
Jefferson LA  USA

Is common sense really valid?
For example, it is common sense to white-power racists that
whites are superior to blacks, and that those with brown skins
are mud people.
However, that common sense is obviously wrong.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFE9EtJS9HxQb37XmcRAlxLAKCZzk+UW8wblFwmhBPloRDwH2KGdQCg54AC
8g4CjMiQwHMmve3/pSt8OCc=
=8pmx
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Mathias Brodala
Hello Glen.

 Anyway,
 as a result of that I can't install any new packages now because it
 keeps telling me xxx: Depends on yyy blah blah) and apt-get -f
 install doesn't fix anything because it just tries to install the
 package which failed before, and fails again. 
 
 What can I do to fix this dependency problem?

You could tell us the *exact* error you get now and the package which causes 
this.

If there is really no other way, you can do the following:

# dpkg -i --force-overwrite /var/cache/apt/archives/packagename.deb


Regards, Mathias



signature.asc
Description: OpenPGP digital signature


Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Glen Yu
Sorry, I guess I was looking for a generic solution and didn't think the actual package name mattered. But this is what I get (package = kdebase-kio-plugins (3.3.2-1sarge3)):Unpacking kdebase-kio-plugins (from kdebase-kio-plugins_3.3.2-1sarge3_i386.deb)
...dpkg - warning, overriding problem because --force enabled: trying to overwrite `/usr/lib/kde3/kio_imap4.la`, which is also in package kdepim-kio-pluginsmessage is repeated but for kio_imap4.so, 
imap4.protocol, and imaps.protocol as wellOn 8/29/06, Mathias Brodala [EMAIL PROTECTED] wrote:
Hello Glen. Anyway, as a result of that I can't install any new packages now because it
 keeps telling me xxx: Depends on yyy blah blah) and apt-get -f install doesn't fix anything because it just tries to install the package which failed before, and fails again.
 What can I do to fix this dependency problem?You could tell us the *exact* error you get now and the package which causes this.If there is really no other way, you can do the following:
# dpkg -i --force-overwrite /var/cache/apt/archives/packagename.debRegards, Mathias


Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Mathias Brodala
Hello Glen.

 Sorry, I guess I was looking for a generic solution and didn't think the
 actual package name mattered.  But this is what I get (package =
 kdebase-kio-plugins (3.3.2-1sarge3)):
 
 Unpacking kdebase-kio-plugins (from
 kdebase-kio-plugins_3.3.2-1sarge3_i386.deb)
 ...
 dpkg - warning, overriding problem because --force enabled:
   trying to overwrite `/usr/lib/kde3/kio_imap4.la`, which is also in
 package kdepim-kio-plugins
 message is repeated but for kio_imap4.so, imap4.protocol, and
 imaps.protocol as well

It seems the order in which the packages get installed is important. As I can 
see the
mentioned files do not exist in the „kdepim-kio-plugins“ package[0] (anymore). 
As it seems
they have been moved to the „kdebase-kio-plugins“ package and have been 
replaced by the
„kio_newimap4.*“ files.

So you should try to manually install the current version of 
„kdepim-kio-plugins“ and
thereafter install


Regards, Mathias

[0]
http://packages.debian.org/cgi-bin/search_contents.pl?searchmode=filelistword=kdepim-kio-pluginsversion=stablearch=i386



signature.asc
Description: OpenPGP digital signature


Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Mathias Brodala
Hello again.

 So you should try to manually install the current version of 
 „kdepim-kio-plugins“ and
 thereafter install

What the heck happened here?

So you should try to manually install the current version of 
„kdepim-kio-plugins“ first
and thereafter install „kdebase-kio-plugins“.


Again, Mathias



signature.asc
Description: OpenPGP digital signature


Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Glen Yu wrote:
 Sorry, I guess I was looking for a generic solution and didn't think the
 actual package name mattered.  But this is what I get (package =
 kdebase-kio-plugins (3.3.2-1sarge3)):
 
 Unpacking kdebase-kio-plugins (from
 kdebase-kio-plugins_3.3.2-1sarge3_i386.deb)
 ...
 dpkg - warning, overriding problem because --force enabled:
  trying to overwrite `/usr/lib/kde3/kio_imap4.la`, which is also in package
 kdepim-kio-plugins
 message is repeated but for kio_imap4.so, imap4.protocol, and
 imaps.protocol as well

Hmmm.  Stable, eh?  That should not be possible?

*Attach* your sources.list file.

- --
Ron Johnson, Jr.
Jefferson LA  USA

Is common sense really valid?
For example, it is common sense to white-power racists that
whites are superior to blacks, and that those with brown skins
are mud people.
However, that common sense is obviously wrong.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFE9FeNS9HxQb37XmcRAmOMAJsE//Y4bNiSrzILGAkIduldXiPgMQCgzum3
oKTkZqvuVrU+RO05HEAcNAA=
=pkhS
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Glen Yu
Thanks Mathias,Problem solved! Cheers,-GlenOn 8/29/06, Mathias Brodala [EMAIL PROTECTED]
 wrote:Hello again. So you should try to manually install the current version of „kdepim-kio-plugins" and
 thereafter installWhat the heck happened here?So you should try to manually install the current version of „kdepim-kio-plugins" firstand thereafter install „kdebase-kio-plugins".Again, Mathias



Re: Can't install new packages with apt-get due to unresolved dependencies -- How do I fix them?

2006-08-29 Thread Glen Yu
Ron,In addition to the Debian install sources, I also have:deb http://www.planet-moll.de/debian sarge main # for K3Bdeb 
http://www.backports.org/debian/ sarge-backports main contrib non-free # for firefox  t-birdYou think it may have been installing some packages from backports instead which is why things screwed up for me?
Cheers,-GlenOn 8/29/06, Ron Johnson [EMAIL PROTECTED] wrote:
-BEGIN PGP SIGNED MESSAGE-Hash: SHA1Glen Yu wrote: Sorry, I guess I was looking for a generic solution and didn't think the actual package name mattered.But this is what I get (package =
 kdebase-kio-plugins (3.3.2-1sarge3)): Unpacking kdebase-kio-plugins (from kdebase-kio-plugins_3.3.2-1sarge3_i386.deb) ... dpkg - warning, overriding problem because --force enabled:
trying to overwrite `/usr/lib/kde3/kio_imap4.la`, which is also in package kdepim-kio-plugins message is repeated but for kio_imap4.so, imap4.protocol, and imaps.protocol as well
Hmmm.Stable, eh?That should not be possible?*Attach* your sources.list file.- --Ron Johnson, Jr.Jefferson LAUSAIs common sense really valid?For example, it is common sense to white-power racists that
whites are superior to blacks, and that those with brown skinsare mud people.However, that common sense is obviously wrong.-BEGIN PGP SIGNATURE-Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.orgiD8DBQFE9FeNS9HxQb37XmcRAmOMAJsE//Y4bNiSrzILGAkIduldXiPgMQCgzum3oKTkZqvuVrU+RO05HEAcNAA==pkhS-END PGP SIGNATURE-
--To UNSUBSCRIBE, email to [EMAIL PROTECTED]with a subject of unsubscribe. Trouble? Contact 
[EMAIL PROTECTED]


New packages RSS feed currency

2006-07-28 Thread David Goodenough
I recently came across the new packages RSS feed, and I have noticed a small
problem with it.  Frequently when a package appears on the feed and I click
on the link to get the the packages.debian.org page for the package, it is not
there.  Would it not be possible to put the entries on the RSS feed only when
the URL actually works, i.e. when packages.debian.org has the relevant page?

David


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: aptitude dist-upgrade wants to install 695 new packages

2006-05-18 Thread Wackojacko

John O'Hagan wrote:

On Wednesday 17 May 2006 14:59, rs wrote:

[...]

I'd like to upgrade from stable (sarge) to testing. Tried aptitude
upgrade and it came back with 109 packages kept back.

[...]

Obviously, I want kept back packages to be upgraded too (BTW, is there a
way to find out why, specifically, those packages are kept back?). So, I
tried aptitude dist-upgrade and it wants to install 695 new packages,
including the ones I do not currently have or want (e.g evolution, gnome (I
use KDE), exim, etc).

[...]

Am I missing something? How do I upgrade only the packages that I currently
have, without installing an obscene amount of new and unneeded/unwanted
packages?


This is from man aptitude:

upgrade

Upgrades installed packages to their most recent version. Installed  packages  
   
will not be removed unless they are unused...; packages which are not 
currently installed will not be installed...


dist-upgrade

Upgrades  installed packages to their most recent version, removing or 
installing packages as necessary...


In other words, upgrade will hold back any package whose new version has new 
dependencies or requires the removal of any package. Dist-upgrade will 
install any new dependencies and remove any newly conflicting packages (it 
automatically decides which packages must go when there is a conflict, or you 
can control this by marking packages in various ways). 

So I'm afraid what you're asking is not possible: the packages you have 
installed must have their new dependencies if they are to be upgraded. And a 
major change like the one from stable to testing will usually bring in a lot 
of new dependencies.


It does seem odd that gnome is to be installed; do you mean the whole of 
gnome, desktop environment and all? It must be that something you have 
installed now needs at least parts of gnome.


To examine the situation in more detail, try running aptitude 
with --show-deps.


I use Kpackage (a front-end for apt-get, so don't mix it with aptitude for 
actually installing packages) because it's easy to browse package 
descriptions and dependencies, and manually select multiple packages for 
installation and removal.


I run testing and keep up-to-date by running update; upgrade; if any packages 
are kept back I mark them for upgrade and carefully check what will be 
changed, and only proceed if none of that bothers me (e.g., no packages I 
want to use are to be removed).  


Good luck,

John


Like John I use Kpackage, but when i have looked at aptitude it is 
originally setup to automatically install *recomended* packages by 
default.  You can switch this off in the UI, so i imageine it can be 
configured via the CLI as well.  Try the 'man' page or fire up the UI 
and C-T-Options-Dependency Handling-Automatically install recommends.


HTH

Wackojacko


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: aptitude dist-upgrade wants to install 695 new packages

2006-05-18 Thread Justin Guerin
On Wednesday 17 May 2006 21:27, John O'Hagan wrote:
 On Wednesday 17 May 2006 14:59, rs wrote:

 [...]

 In other words, upgrade will hold back any package whose new version has
 new dependencies or requires the removal of any package. Dist-upgrade
 will install any new dependencies and remove any newly conflicting
 packages (it automatically decides which packages must go when there is a
 conflict, or you can control this by marking packages in various ways).

 So I'm afraid what you're asking is not possible: the packages you have
 installed must have their new dependencies if they are to be upgraded.
 And a major change like the one from stable to testing will usually bring
 in a lot of new dependencies.

There may not be a one command way to do this, but it can be done.  The 
simplest way is a 2 step process:
1) do your normal upgrade.  Don't worry about packages that are held back.
2) after the upgrade, run aptitude in interactive mode.  The packages that 
were previously held back will be in the upgradable packages section.  
Open that section, and for each package you want to upgrade, hit +  Each 
time you hit plus, other packages may be marked for install, removal, or 
upgrade, depending on dependency needs (and aptitudes options: see below).  
If you want to review what aptitude is proposing, hit g after each package 
you mark, and review to make sure you're OK with aptitude's plan.  If not, 
use : to cancel the pending operation on a package by package basis.

Also, you'll want to look at the Options - Dependency handling options, as 
Wackojacko suggests.  In addition to the option of installing recommended 
packages by default, you also have the option to:
Automatically resolve dependencies of a package when it is selected
Automatically fix broken packages before installing or removing
Remove unused packages automatically

The last option also has a filter you can set to negate the global effect of 
this option.

[snip]

Justin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: aptitude dist-upgrade wants to install 695 new packages

2006-05-18 Thread Chris Lale

Wackojacko wrote:

[ ... ]

Like John I use Kpackage, but when i have looked at aptitude it is 
originally setup to automatically install *recomended* packages by 
default.  You can switch this off in the UI, so i imageine it can be 
configured via the CLI as well.  



[ ... ]

|-R|, |--without-recommends|

though I have not tested this.

Chris.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




aptitude dist-upgrade wants to install 695 new packages

2006-05-17 Thread rs

Hi,

I'd like to upgrade from stable (sarge) to testing. Tried aptitude upgrade 
and it came back with 109 packages kept back.

# aptitude update; aptitude upgrade --show-versions --simulate --verbose
...
The following packages have been kept back:
  adduser [3.63 - 3.87] apache2 [2.0.54-5 - 2.0.55-4]
  apache2-common [2.0.54-5 - 2.0.55-4]
  apache2-mpm-prefork [2.0.54-5 - 2.0.55-4]
  apache2-utils [2.0.54-5 - 2.0.55-4] apt [0.5.28.6 - 0.6.43.3]
  apt-utils [0.5.28.6 - 0.6.43.3] aptitude [0.2.15.9-2 - 0.4.1-1]
...
241 packages upgraded, 0 newly installed, 3 to remove and 109 not upgraded.
Need to get 123MB of archives. After unpacking 7145kB will be used.
Do you want to continue? [Y/n/?] n


Obviously, I want kept back packages to be upgraded too (BTW, is there a way to 
find out why, specifically, those packages are kept back?). So, I tried 
aptitude dist-upgrade and it wants to install 695 new packages, including the 
ones I do not currently have or want (e.g evolution, gnome (I use KDE), exim, 
etc).

# aptitude update; aptitude dist-upgrade --show-versions --simulate --verbose;
336 packages upgraded, 695 newly installed, 36 to remove and 0 not upgraded.
Need to get 654MB of archives. After unpacking 1242MB will be used.
Do you want to continue? [Y/n/?] n


Am I missing something? How do I upgrade only the packages that I currently 
have, without installing an obscene amount of new and unneeded/unwanted 
packages?

Thanks in advance




___
No banners. No pop-ups. No kidding.
Make My Way  your home on the Web - http://www.myway.com



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



aptitude dist-upgrade wants to install 695 new packages

2006-05-17 Thread rs

Hi,

I'd like to upgrade from stable (sarge) to testing. Tried aptitude upgrade 
and it came back with 109 packages kept back.

# aptitude update; aptitude upgrade --show-versions --simulate --verbose
...
The following packages have been kept back:
adduser [3.63 - 3.87] apache2 [2.0.54-5 - 2.0.55-4]
apache2-common [2.0.54-5 - 2.0.55-4]
apache2-mpm-prefork [2.0.54-5 - 2.0.55-4]
apache2-utils [2.0.54-5 - 2.0.55-4] apt [0.5.28.6 - 0.6.43.3]
apt-utils [0.5.28.6 - 0.6.43.3] aptitude [0.2.15.9-2 - 0.4.1-1]
...
241 packages upgraded, 0 newly installed, 3 to remove and 109 not upgraded.
Need to get 123MB of archives. After unpacking 7145kB will be used.
Do you want to continue? [Y/n/?] n


Obviously, I want kept back packages to be upgraded too (BTW, is there a way to 
find out why, specifically, those packages are kept back?). So, I tried 
aptitude dist-upgrade and it wants to install 695 new packages, including the 
ones I do not currently have or want (e.g evolution, gnome (I use KDE), exim, 
etc).

# aptitude update; aptitude dist-upgrade --show-versions --simulate --verbose;
336 packages upgraded, 695 newly installed, 36 to remove and 0 not upgraded.
Need to get 654MB of archives. After unpacking 1242MB will be used.
Do you want to continue? [Y/n/?] n


Am I missing something? How do I upgrade only the packages that I currently 
have, without installing an obscene amount of new and unneeded/unwanted 
packages?

Thanks in advance



___
No banners. No pop-ups. No kidding.
Make My Way  your home on the Web - http://www.myway.com



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: aptitude dist-upgrade wants to install 695 new packages

2006-05-17 Thread John O'Hagan
On Wednesday 17 May 2006 14:59, rs wrote:

[...]
 I'd like to upgrade from stable (sarge) to testing. Tried aptitude
 upgrade and it came back with 109 packages kept back.
[...]
 Obviously, I want kept back packages to be upgraded too (BTW, is there a
 way to find out why, specifically, those packages are kept back?). So, I
 tried aptitude dist-upgrade and it wants to install 695 new packages,
 including the ones I do not currently have or want (e.g evolution, gnome (I
 use KDE), exim, etc).
[...]
 Am I missing something? How do I upgrade only the packages that I currently
 have, without installing an obscene amount of new and unneeded/unwanted
 packages?

This is from man aptitude:

upgrade

Upgrades installed packages to their most recent version. Installed  packages  

will not be removed unless they are unused...; packages which are not 
currently installed will not be installed...

dist-upgrade

Upgrades  installed packages to their most recent version, removing or 
installing packages as necessary...

In other words, upgrade will hold back any package whose new version has new 
dependencies or requires the removal of any package. Dist-upgrade will 
install any new dependencies and remove any newly conflicting packages (it 
automatically decides which packages must go when there is a conflict, or you 
can control this by marking packages in various ways). 

So I'm afraid what you're asking is not possible: the packages you have 
installed must have their new dependencies if they are to be upgraded. And a 
major change like the one from stable to testing will usually bring in a lot 
of new dependencies.

It does seem odd that gnome is to be installed; do you mean the whole of 
gnome, desktop environment and all? It must be that something you have 
installed now needs at least parts of gnome.

To examine the situation in more detail, try running aptitude 
with --show-deps.

I use Kpackage (a front-end for apt-get, so don't mix it with aptitude for 
actually installing packages) because it's easy to browse package 
descriptions and dependencies, and manually select multiple packages for 
installation and removal.

I run testing and keep up-to-date by running update; upgrade; if any packages 
are kept back I mark them for upgrade and carefully check what will be 
changed, and only proceed if none of that bothers me (e.g., no packages I 
want to use are to be removed).  

Good luck,

John


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem when trying to install new packages

2005-10-11 Thread Aaron Maxwell
On Sunday 09 October 2005 01:57 pm, Sara Massons wrote:
 Hello,
 I am using Debian testing. I am not a developper and not really
 skilled for installation processes (I usually follow the instructions
 to the letter and it works).
 I tried to install several things using apt-get install command
 (see list below) and I always get an error message saying it needs to

Hi,
It would help to know exactly what apt-get's output is.  Can you reply 
with the text of the whole session?  Just cut-n-paste, or use the 
script command (man script).

-- 
Peace,
Aaron Maxwell - http://redsymbol.net
Skills for higher math - http://InnerAlgebra.com
COMING SOON: Retail Worker's Survival Guide - http://rwsg.us


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



problem when trying to install new packages

2005-10-09 Thread Sara Massons

Hello,

I am using Debian testing. I am not a developper and not really skilled 
for installation processes (I usually follow the instructions to the 
letter and it works).
I tried to install several things using apt-get install command (see 
list below) and I always get an error message saying it needs to 
uninstall e2fsprog :

- gimp plug-ins;
- xsltprog;
- jadetext;
- someting to support phyton.
I understand the packages try to uninstall it in order to replace it by 
a new one. The result is I cannot install anything.

I don't know wether this really is a bug or not.
Please, tell me what to do  to install my packages and/or send a bug 
report in case this is a bug.


Thank you very much

S. Massons
[EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




aptitude : how to merge the new packages directory

2005-07-29 Thread Guillaume TESSIER

Hello.

I have a question about aptitude.
I use to run debian testing sarge and stick to sarge when it got stable.

I usually manage packages with aptitude.
Of course their was a new packages directory as new packages were 
introduced on a regular basis to the debian repository.


But now, since sarge is frozen, i don't understand why this directory is 
still there.
I was just looking for a gnome package and couldn't find it. I know 
alphabet, so i just went : where is this package?
It was neither in the installed and uninstalled directores but in the 
new packages directory.


The directory isn't usefull to me anymore. i'd to merge it.

There is this option forget new packages...

G


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: aptitude : how to merge the new packages directory

2005-07-29 Thread Bryan Donlan
On 7/29/05, Guillaume TESSIER [EMAIL PROTECTED] wrote:
 Hello.
 
 I have a question about aptitude.
 I use to run debian testing sarge and stick to sarge when it got stable.
 
 I usually manage packages with aptitude.
 Of course their was a new packages directory as new packages were
 introduced on a regular basis to the debian repository.
 
 But now, since sarge is frozen, i don't understand why this directory is
 still there.
 I was just looking for a gnome package and couldn't find it. I know
 alphabet, so i just went : where is this package?
 It was neither in the installed and uninstalled directores but in the
 new packages directory.
 
 The directory isn't usefull to me anymore. i'd to merge it.
 
 There is this option forget new packages...

New packages will remain in the new packages list until you select
forget new packages. So hit `f' and it'll merge them for you.



Re: aptitude : how to merge the new packages directory

2005-07-29 Thread Guillaume TESSIER

Bryan Donlan wrote:


On 7/29/05, Guillaume TESSIER [EMAIL PROTECTED] wrote:
 


Hello.

I have a question about aptitude.
I use to run debian testing sarge and stick to sarge when it got stable.

I usually manage packages with aptitude.
Of course their was a new packages directory as new packages were
introduced on a regular basis to the debian repository.

But now, since sarge is frozen, i don't understand why this directory is
still there.
I was just looking for a gnome package and couldn't find it. I know
alphabet, so i just went : where is this package?
It was neither in the installed and uninstalled directores but in the
new packages directory.

The directory isn't usefull to me anymore. i'd to merge it.

There is this option forget new packages...
   



New packages will remain in the new packages list until you select
forget new packages. So hit `f' and it'll merge them for you.


 


thanks Bryan. That's it.

G


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




new packages

2005-07-28 Thread Alle Meije Wink
Hello,

My apt-get, although it appears to be working fine, has not found
updated packages for the the last week. Is this because actually no
packages have been updated or is there another reason?

Best wishes
Alle Meije



___ 
How much free photo storage do you get? Store your holiday 
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: new packages

2005-07-28 Thread John Fleming
On Thursday 28 July 2005 04:49 pm, Alle Meije Wink wrote:
 Hello,

 My apt-get, although it appears to be working fine, has not found
 updated packages for the the last week. Is this because actually no
 packages have been updated or is there another reason?

 Best wishes
 Alle Meije



 ___
 How much free photo storage do you get? Store your holiday
 snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com

Which distro?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: new packages

2005-07-28 Thread Nils-Erik Svangård

John Fleming wrote:


On Thursday 28 July 2005 04:49 pm, Alle Meije Wink wrote:
 


Hello,

My apt-get, although it appears to be working fine, has not found
updated packages for the the last week. Is this because actually no
packages have been updated or is there another reason?

Best wishes
Alle Meije



___
How much free photo storage do you get? Store your holiday
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
   



Which distro?


 


I'm running unstable and experiancing this.
/nisse


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: new packages

2005-07-28 Thread Nils-Erik Svangård
Heh.. I thought it was just my selection of packages. When I run apt-get 
update; apt-get upgrade, I usually get atleast 10 upgrades per day, but 
in recent days none of the packages I use has been updated. A first I 
thougt the mirror I used stopped updating, so I changed to the main 
archive, but there havent been any updates there either.

/nisse

Alle Meije Wink wrote:


Hello,

My apt-get, although it appears to be working fine, has not found
updated packages for the the last week. Is this because actually no
packages have been updated or is there another reason?

Best wishes
Alle Meije



___ 
How much free photo storage do you get? Store your holiday 
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com



 




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: new packages

2005-07-28 Thread Pollywog
On 07/28/2005 09:49 pm, Alle Meije Wink wrote:
 Hello,

 My apt-get, although it appears to be working fine, has not found
 updated packages for the the last week. Is this because actually no
 packages have been updated or is there another reason?

There were two or three security updates yesterday.  If you are using 
stable, be sure you have security URL's in your sources.list.
It is possible that you don't have heimdal, ekg, or libgadu3 on your system 
and if that is the case, you would not have seen updates.  If you are a 
Kopete user, you probably do have libgadu3 libraries on your system and those 
should be upgraded.  The security advisory suggested restarting Kopete after 
updating the packages.


8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: new packages

2005-07-28 Thread Bryan Donlan
On 7/28/05, Nils-Erik Svangård [EMAIL PROTECTED] wrote:
 Heh.. I thought it was just my selection of packages. When I run apt-get
 update; apt-get upgrade, I usually get atleast 10 upgrades per day, but
 in recent days none of the packages I use has been updated. A first I
 thougt the mirror I used stopped updating, so I changed to the main
 archive, but there havent been any updates there either.
 /nisse

ftp-master.d.o was down until just recently. As it is the master
debian mirror, none of the other mirrors were updating during that
time. Package updates should resume soon, hopefully.



Re: new packages

2005-07-28 Thread Nils-Erik Svangård

Bryan Donlan wrote:


On 7/28/05, Nils-Erik Svangård [EMAIL PROTECTED] wrote:
 


Heh.. I thought it was just my selection of packages. When I run apt-get
update; apt-get upgrade, I usually get atleast 10 upgrades per day, but
in recent days none of the packages I use has been updated. A first I
thougt the mirror I used stopped updating, so I changed to the main
archive, but there havent been any updates there either.
/nisse
   



ftp-master.d.o was down until just recently. As it is the master
debian mirror, none of the other mirrors were updating during that
time. Package updates should resume soon, hopefully.

 


:D That would explain everything!
Thanks for the fast reply!
/nisse


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Keeping track of new packages (again)

2004-01-29 Thread Nano Nano
I asked how to rediscover what packages are really new after you 
change your sources.list and everything shows up as new in this message:

http://lists.debian.org/debian-user/2004/debian-user-200401/msg05571.html

Aaron Hall suggested: http://www.debian.org/News/weekly/
I'm using that, but I've another question:

What files on my hard drive do apt-cache reference to display that 
information?  Perhaps if I back those up daily and later diff them.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Keeping track of new packages (again)

2004-01-29 Thread Nano Nano
On Thu, Jan 29, 2004 at 02:22:53PM -0800, Nano Nano wrote:
[snip]
 
 What files on my hard drive do apt-cache reference to display that 
 information?  Perhaps if I back those up daily and later diff them.

What do you think about this?

grep-available . | grep-dctrl -sPackage,Version .  backup


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: New packages

2003-07-24 Thread Paul Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, Jul 23, 2003 at 01:08:59AM +0100, Antony Gelberg wrote:
 I've found a rather useful little app that doesn't appear to be in the
 distribution yet.  How can I go about getting it in there?  I have
 looked through the Debian policy page, but couldn't find what I was
 looking for.

Start following debian-devel and go search through the new maintainer
documentation over on the website. 

Not to discourage you if you want to make a real effort, but if
finding this info sounds hard you might want to stick around until
you're better acquainted with the distro before making Debian
packages, much less applying to maintain your own packages as an
official part of Debian.

- -- 
 .''`. Paul Johnson [EMAIL PROTECTED]
: :'  :proud Debian admin and user
`. `'`
  `-  Debian - when you have better things to do than fix a system
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/H8eCJ5vLSqVpK2kRAnFGAKC+5IYcoGwKWuarDqCGISmer1/U2gCg2mTi
Wf8vhbBHObY3FJvgmBjlUGg=
=uLSk
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: New packages

2003-07-23 Thread Colin Watson
On Wed, Jul 23, 2003 at 01:08:59AM +0100, Antony Gelberg wrote:
 I've found a rather useful little app that doesn't appear to be in the
 distribution yet.  How can I go about getting it in there?  I have
 looked through the Debian policy page, but couldn't find what I was
 looking for.

  http://www.debian.org/devel/wnpp

(The information there is mainly written for a developer audience, so
you might need to read the documentation on the bug tracking system
first.)

 The other thing is that clearly it would need to go into unstable
 first?

Yes.

 And I run Woody all the way.  Does this mean that someone else would
 need to maintain the package?

Probably, although I'm not sure how that follows from your previous
statement. If it were just a matter of getting the thing built for
upload, you could build an unstable chroot to do that. For installing it
on your system, as long as the package doesn't use bleeding-edge build
system features (none of mine do, last time I checked), you could
backport it fairly easily to woody.

Certainly, if you're keen, you'd be welcome to apply to join the project
and do it yourself. However, that takes some time and implies a level of
long-term commitment, so if it's just a matter of getting this one
program packaged it would be easier to file an RFP and see if any
existing developers are interested in picking up the package.

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: New packages

2003-07-23 Thread Antony Gelberg
On Wed, Jul 23, 2003 at 09:45:22AM +0100, Colin Watson wrote:
 Probably, although I'm not sure how that follows from your previous
 statement. If it were just a matter of getting the thing built for
 upload, you could build an unstable chroot to do that. For installing it
 on your system, as long as the package doesn't use bleeding-edge build
 system features (none of mine do, last time I checked), you could
 backport it fairly easily to woody.
 
 Certainly, if you're keen, you'd be welcome to apply to join the project
 and do it yourself. However, that takes some time and implies a level of
 long-term commitment, so if it's just a matter of getting this one
 program packaged it would be easier to file an RFP and see if any
 existing developers are interested in picking up the package.
 

It was requested way back in the mists of time:
http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=nobug=88603
But:
 The person who originately filed this ITP, doesn't seem to have
 any interest in it anymore.  Therefore, I'm retitling it to an
 RFP.  If anyone is interested in packaging this software, feel
 free to take it.

I am happy to join the project and do it myself.  Do I need to submit a new ITP?

Antony


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: New packages

2003-07-23 Thread Colin Watson
On Wed, Jul 23, 2003 at 10:43:05AM +0100, Antony Gelberg wrote:
 On Wed, Jul 23, 2003 at 09:45:22AM +0100, Colin Watson wrote:
  Certainly, if you're keen, you'd be welcome to apply to join the project
  and do it yourself. However, that takes some time and implies a level of
  long-term commitment, so if it's just a matter of getting this one
  program packaged it would be easier to file an RFP and see if any
  existing developers are interested in picking up the package.
 
 It was requested way back in the mists of time:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?archive=nobug=88603
 But:
  The person who originately filed this ITP, doesn't seem to have
  any interest in it anymore.  Therefore, I'm retitling it to an
  RFP.  If anyone is interested in packaging this software, feel
  free to take it.
 
 I am happy to join the project and do it myself.  Do I need to submit
 a new ITP?

Don't file a new bug, but retitle the existing one to an ITP. You can
look for a sponsor on the debian-mentors list.

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



New packages

2003-07-22 Thread Antony Gelberg
Hi all,

I've found a rather useful little app that doesn't appear to be in the
distribution yet.  How can I go about getting it in there?  I have
looked through the Debian policy page, but couldn't find what I was
looking for.

The other thing is that clearly it would need to go into unstable first?
And I run Woody all the way.  Does this mean that someone else would
need to maintain the package?

Antony


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ? (update)

2003-03-12 Thread Shaun Crossley
On Mon, 10 Mar 2003 18:41:10 Shaun Crossley wrote:
You might be interested in this script I came up with upon reading this
thread.  I called it apt-show-versions and placed it in /etc/cron.daily
(and made it executable via chmod +x).
[snip]

#!/bin/sh
# /etc/cron.daily/apt-show-new: email alerts when new packages
# are available
#
# 2003-03-10, Shaun Crossley, [EMAIL PROTECTED]
[EMAIL PROTECTED]
   /usr/bin/apt-get update -qq

/usr/bin/apt-show-versions -u | /usr/bin/sort | /usr/bin/mail -e \
 -s `/bin/hostname`: updated packages available $ADMINMAIL
Oops... if you don't run apt-get update first (as I've shown above) you 
won't get all the new good stuff.  (I also changed it so that the output 
will be sorted.)

Most of you probably already figured that out, but I only just clued in.

Sorry!

--

Shaun Crossley
mailto:[EMAIL PROTECTED]
http://www.whatever.ca
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



apt-* notify for new packages ?

2003-03-10 Thread Konstantin Kostadinov
Hi 
Is anyone knows is there are some scripts,binary that can notify for new packages.

Now I'm use apt-get update ; apt-get upgrade -u -d crontab entry but it is not very 
useful


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ?

2003-03-10 Thread Tim Dijkstra
On Mon, 10 Mar 2003 12:50:59 +0200
Konstantin Kostadinov [EMAIL PROTECTED] wrote:

 Hi 
 Is anyone knows is there are some scripts,binary that can notify for
 new packages.
 
 Now I'm use apt-get update ; apt-get upgrade -u -d crontab entry but
 it is not very useful
 
Depends a little bit on what you mean by 'new'. If you mean new in the
archive you can subscribe to debian-news, they have a summary of new
packages at the end of their message (you'll be up to date on debian
issues at the same time). If you want to know all changes (uploads), you
can subscribe to debian-changes (stable) or debian-devel-changes (sid).
If you want to be notified for a certain package you can use the package
tracking system (PTS), see
http://www.debian.org/doc/developers-reference/ch-resources#s-pkg-tracking-system.

grts Tim


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ?

2003-03-10 Thread Ron Johnson
On Mon, 2003-03-10 at 04:50, Konstantin Kostadinov wrote:
 Hi 
 Is anyone knows is there are some scripts,binary that can notify for new 
 packages.
 
 Now I'm use apt-get update ; apt-get upgrade -u -d crontab entry but it is 
 not very useful

Recently, I asked a question regarding how to know which distro (stable,
testing, unstable) each of my packages comes from.

The answer to that (package apt-show-versions) plus grep is the answer
to your question.

After you install apt-show-versions:
# apt-get update
# apt-show-versions |grep upgradeable|sort

Very big Thank You!!! to whoever wrote that utility...

-- 
+---+
| Ron Johnson, Jr.mailto:[EMAIL PROTECTED]  |
| Jefferson, LA  USA  http://members.cox.net/ron.l.johnson  |
|   |
| Spit in one hand, and wish for peace in the other.|
| Guess which is more effective...  |
+---+


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ?

2003-03-10 Thread Ron Johnson
On Mon, 2003-03-10 at 07:18, Ron Johnson wrote:
 On Mon, 2003-03-10 at 04:50, Konstantin Kostadinov wrote:
  Hi 
  Is anyone knows is there are some scripts,binary that can notify for new 
  packages.
  
  Now I'm use apt-get update ; apt-get upgrade -u -d crontab entry but it is 
  not very useful
 
 Recently, I asked a question regarding how to know which distro (stable,
 testing, unstable) each of my packages comes from.
 
 The answer to that (package apt-show-versions) plus grep is the answer
 to your question.
 
 After you install apt-show-versions:
 # apt-get update
 # apt-show-versions |grep upgradeable|sort

After reading Tim's reply, I should note that apt-show-versions + grep
will only tell you if there are new versions of pkgs you currently have
installed.

-- 
+---+
| Ron Johnson, Jr.mailto:[EMAIL PROTECTED]  |
| Jefferson, LA  USA  http://members.cox.net/ron.l.johnson  |
|   |
| Spit in one hand, and wish for peace in the other.|
| Guess which is more effective...  |
+---+


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ?

2003-03-10 Thread Konstantin Kostadinov
On 10 Mar 2003 08:13:52 -0600
Ron Johnson [EMAIL PROTECTED] wrote:

 On Mon, 2003-03-10 at 07:18, Ron Johnson wrote:
  On Mon, 2003-03-10 at 04:50, Konstantin Kostadinov wrote:
   Hi 
   Is anyone knows is there are some scripts,binary that can notify for new 
   packages.
   
   Now I'm use apt-get update ; apt-get upgrade -u -d crontab entry but it is 
   not very useful
  
  Recently, I asked a question regarding how to know which distro (stable,
  testing, unstable) each of my packages comes from.
  
  The answer to that (package apt-show-versions) plus grep is the answer
  to your question.
  
  After you install apt-show-versions:
  # apt-get update
  # apt-show-versions |grep upgradeable|sort
 
 After reading Tim's reply, I should note that apt-show-versions + grep
 will only tell you if there are new versions of pkgs you currently have
 installed.

tanx
that's the thing i'm looking for.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ?

2003-03-10 Thread Shaun Crossley
On Mon, 10 Mar 2003 09:31:56 Konstantin Kostadinov wrote:
On 10 Mar 2003 08:13:52 -0600
Ron Johnson [EMAIL PROTECTED] wrote:
 On Mon, 2003-03-10 at 07:18, Ron Johnson wrote:
[snip]

  After you install apt-show-versions:
  # apt-get update
  # apt-show-versions |grep upgradeable|sort

 After reading Tim's reply, I should note that apt-show-versions + grep
 will only tell you if there are new versions of pkgs you currently have
 installed.
tanx
that's the thing i'm looking for.
You might be interested in this script I came up with upon reading this
thread.  I called it apt-show-versions and placed it in /etc/cron.daily
(and made it executable via chmod +x).
Perhaps someone in the thread who is more adept at shell scripting will
let me know if I'm doing anything wrong with it.  :-)  (Bear in mind that
I haven't actually tested my assumption that any script placed in
/etc/cron.daily is run daily, but based on the name I think it's a safe
bet.)
I'm going to put it on all of my machines, so that they will alert me when
they need upgrading.  Note that the apt-show-versions command supports a
-u switch which eliminates the need for any grepping.  I'm also not
doing any sorting, but that would be just one more addition in the
pipeline.
#!/bin/sh
# /etc/cron.daily/apt-show-versions: email alerts when new packages
# are available
#
# 2003-03-10, Shaun Crossley, [EMAIL PROTECTED]
[EMAIL PROTECTED]

/usr/bin/apt-show-versions -u | /usr/bin/mail -e \
 -s `/bin/hostname`: updated packages available $ADMINMAIL
--

Shaun Crossley
mailto:[EMAIL PROTECTED]
http://www.whatever.ca
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: apt-* notify for new packages ?

2003-03-10 Thread Shaun Crossley
On Mon, 10 Mar 2003 18:11:56 Shaun Crossley wrote:
You might be interested in this script I came up with upon reading this
thread.  I called it apt-show-versions and placed it in /etc/cron.daily
(and made it executable via chmod +x).
[snip]

#!/bin/sh
# /etc/cron.daily/apt-show-versions: email alerts when new packages
# are available
#
# 2003-03-10, Shaun Crossley, [EMAIL PROTECTED]
[EMAIL PROTECTED]

/usr/bin/apt-show-versions -u | /usr/bin/mail -e \
 -s `/bin/hostname`: updated packages available $ADMINMAIL
Oh, and by the way -- please change the ADMINMAIL line to use your own 
email address.  Otherwise you'd be notifying me about the packages your 
computer needs!

--

Shaun Crossley
mailto:[EMAIL PROTECTED]
http://www.whatever.ca
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



testing - no new packages

2002-12-01 Thread Richard Kimber
I have not seen any new packages in testing for quite a long time.  Is
this because I'm using a mirror that's not being updated, or aren't there
any?

Thanks,
- Richard.
-- 
Richard Kimber
http://www.psr.keele.ac.uk/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: testing - no new packages

2002-12-01 Thread dave mallery
there is a hangup with libc.

On Sun, Dec 01, 2002 at 05:03:50PM +, Richard Kimber wrote:
 I have not seen any new packages in testing for quite a long time.  Is
 this because I'm using a mirror that's not being updated, or aren't there
 any?
 
 Thanks,
 - Richard.
 -- 
 Richard Kimber
 http://www.psr.keele.ac.uk/
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 

-- 
Dave Mallery, K5EN  (debian testing  woody)  
PO Box 520 .~._  Ramah,  NM  87321 
   /V\   -o)
no gates...   /( )\  /\\ running Debian GNU/Linux
  no windows! ^ _\_vfree at last!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: testing - no new packages

2002-12-01 Thread Derrick 'dman' Hudson
On Sun, Dec 01, 2002 at 05:03:50PM +, Richard Kimber wrote:
| I have not seen any new packages in testing for quite a long time.  Is
| this because I'm using a mirror that's not being updated, or aren't there
| any?

There probably aren't any.  It's possible that all the packages you
have installed (since an 'upgrade' won't consider other packages)
haven't had a new version in sid for 2 weeks with no RC bugs filed
against it.  I haven't seen any packages get upgraded in a while
either.  I use http.us.debian.org as the mirror.

-D

-- 
Whoever loves discipline loves knowledge,
but he who hates correction is stupid.
Proverbs 12:1
 
http://dman.ddts.net/~dman/



msg16391/pgp0.pgp
Description: PGP signature


Re: List new packages after an apt-get update

2001-06-10 Thread Joey Hess
USM Bish wrote:
 console-apt (capt) does just that. It has three packet
 dividers:
 
 a) Updated packages
 b) Installed packages (newer version available)
 c) Non-installed packages

This is news to me. Are they in the order you list them? If so, I
probably just didn't notice the divider between b) and c).

-- 
see shy jo



Re: List new packages after an apt-get update

2001-06-09 Thread USM Bish
console-apt (capt) does just that. It has three packet
dividers:

a) Updated packages
b) Installed packages (newer version available)
c) Non-installed packages

USM Bish

On Fri, Jun 08, 2001 at 03:12:11PM -0400, David Z Maze wrote:
 Joey Hess [EMAIL PROTECTED] writes:
 JH AFAIK, deity and aptitude do not single out newly available packages.
 JH Dselect, however, will do everything you want.
 
 aptitude does call out newly available packages, though it considers a 
 package 'new' until the new list is explicitly cleared (with 'f').  My 
 usage with aptitude is generally: update available packages ('u');
 expand newly available packages category ('['); install anything I
 want out of that list ('+'); clear new list ('f'); expand updated
 packages category ('['); examine, resolve conflicts, go ('g').
 
 As far as I'm concerned, though, dselect is a perfectly usable tool; I 
 mostly use aptitude these days out of peer pressure.  :-)
 
 David Maze [EMAIL PROTECTED]  http://people.debian.org/~dmaze/




List new packages after an apt-get update

2001-06-08 Thread Graham Williams
After doing an apt-get update there are two types of packages I'm
particularly interested in: newly available packages (new to Debain
since the last time I did an apt-get update) and packages I have
already installed but that have been updated since the last time I did
an apt-get update. (I.e., ignore packages that have been updated but
not since the previous time I did an apt-get update)

Are there any simple command line methods for getting these two lists
(or do I need to persist in learning what seems to me to be the quite
un-intuitive interfaces in deity and aptitude).

Many thanks in advance,
Graham



Re: List new packages after an apt-get update

2001-06-08 Thread Joey Hess
Graham Williams wrote:
 After doing an apt-get update there are two types of packages I'm
 particularly interested in: newly available packages (new to Debain
 since the last time I did an apt-get update) and packages I have
 already installed but that have been updated since the last time I did
 an apt-get update. (I.e., ignore packages that have been updated but
 not since the previous time I did an apt-get update)
 
 Are there any simple command line methods for getting these two lists
 (or do I need to persist in learning what seems to me to be the quite
 un-intuitive interfaces in deity and aptitude).

AFAIK, deity and aptitude do not single out newly available packages.
Dselect, however, will do everything you want.

-- 
see shy jo



Re: List new packages after an apt-get update

2001-06-08 Thread David Z Maze
Joey Hess [EMAIL PROTECTED] writes:
JH AFAIK, deity and aptitude do not single out newly available packages.
JH Dselect, however, will do everything you want.

aptitude does call out newly available packages, though it considers a 
package 'new' until the new list is explicitly cleared (with 'f').  My 
usage with aptitude is generally: update available packages ('u');
expand newly available packages category ('['); install anything I
want out of that list ('+'); clear new list ('f'); expand updated
packages category ('['); examine, resolve conflicts, go ('g').

As far as I'm concerned, though, dselect is a perfectly usable tool; I 
mostly use aptitude these days out of peer pressure.  :-)

-- 
David Maze [EMAIL PROTECTED]  http://people.debian.org/~dmaze/
Theoretical politics is interesting.  Politicking should be illegal.
-- Abra Mitchell



Re: List new packages after an apt-get update

2001-06-08 Thread Joel Mayes
On Fri, Jun 08, 2001 at 03:52:30PM +1000, Graham Williams wrote:
 After doing an apt-get update there are two types of packages I'm
 particularly interested in: newly available packages (new to Debain
 since the last time I did an apt-get update) and packages I have
 already installed but that have been updated since the last time I did
 an apt-get update. (I.e., ignore packages that have been updated but
 not since the previous time I did an apt-get update)
 
 Are there any simple command line methods for getting these two lists
 (or do I need to persist in learning what seems to me to be the quite
 un-intuitive interfaces in deity and aptitude).
 
 Many thanks in advance,
 Graham
 
G'day Graham,

apt-get -u upgrade will show installed packages that have newer
version then the one on your system. just answer no to the continue
prompt if you want don't want to upgrade them all automaticaly.

If you want to find all new packages you could backup, ( I think this
is correct) you /var/lib/apt/lists directory before the each update,
then compare the backup directory to the newly downloaded list, or
write a script that does the lot.

There might be an easier way to do this ??

Cheers

Joel
-- 
Anagrams reveal the mysteries.
Windows Two Thousand Professional =  Stoned Sonata: Worship Windows foul.



Re: view changelogs of new packages before installing them

2001-03-19 Thread kmself
on Sun, Mar 18, 2001 at 09:05:01PM +0100, Andre Berger ([EMAIL PROTECTED]) 
wrote:
 Hi all,
 
 can I view a package's changelog without having to download it first?
 This would be esp. useful for intended large downloads such as
 kernel-source-*; even kernel-doc-* is more than one meg to download each
 time.

$ apt-get install --download-only package

...You can then browse the package file itself through tools like mc,
gmc, or nautilus, or unpack it (it's a shar shell archive) to a
convenient location.

...I'm not aware that package files are available independently of the
packages themselves.

-- 
Karsten M. Self kmself@ix.netcom.comhttp://kmself.home.netcom.com/
 What part of Gestalt don't you understand?   There is no K5 cabal
  http://gestalt-system.sourceforge.net/ http://www.kuro5hin.org


pgpuL6gLHG0bn.pgp
Description: PGP signature


Re: view changelogs of new packages before installing them

2001-03-19 Thread Eric G. Miller
On Sun, Mar 18, 2001 at 11:27:31PM -0800, kmself@ix.netcom.com wrote:
 on Sun, Mar 18, 2001 at 09:05:01PM +0100, Andre Berger ([EMAIL PROTECTED]) 
 wrote:
  Hi all,
  
  can I view a package's changelog without having to download it first?
  This would be esp. useful for intended large downloads such as
  kernel-source-*; even kernel-doc-* is more than one meg to download each
  time.
 
 $ apt-get install --download-only package
 
 ...You can then browse the package file itself through tools like mc,
 gmc, or nautilus, or unpack it (it's a shar shell archive) to a
 convenient location.
 
 ...I'm not aware that package files are available independently of the
 packages themselves.

One could try adding this changelog script to ~/.bashrc:

changelog() {
[ $# = 1 ]  lynx http://master.debian.org/cgi-bin/get-changelog\?package=$1
}

However, it doesn't seem to work anymore... Maybe the change to package
pools eliminated to changelogs?

-- 
Eric G. Miller egm2@jps.net



  1   2   >