Pantek Library
Hosting Provided By
CybrHost
High Speed Hosting

debian-user-digest Digest V2007 #2721

From: <debian-user-digest-request(at)lists.debian.org>
Date: Thu Nov 01 2007 - 15:30:16 EDT


Content-Type: text/plain

debian-user-digest Digest Volume 2007 : Issue 2721

Today's Topics:

  Re: package                           [ David Paleino  ]
  Re: fglrx upgrade to 8.42.3           [ Elimar Riesebieter  ]
  Re: GLIBC_2.4                         [ hyjial  ]
  Re: package                           [ Andrew Sackville-West  ]
  Re: fglrx upgrade to 8.42.3           [ "Jayson Vaughn"  ]
  Re: package                           [ Florian Kulzer  ]
  Re: WINE under Lenny                  [ Tyler Smith  ]
  Re: Apt-Get or Aptitude               [ Ken Irving  ]

Date: Thu, 1 Nov 2007 18:15:48 +0100
From: David Paleino <d.paleino@gmail.com> To: debian-user@lists.debian.org
Subject: Re: package
Message-ID: <20071101181548.7dccec0f@matrix> Content-Type: multipart/signed; boundary="Sig_/qaT_fXXOC7HPiOOeOCbLjo8";  protocol="application/pgp-signature"; micalg=PGP-SHA1

--Sig_/qaT_fXXOC7HPiOOeOCbLjo8
Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable

Il giorno Thu, 01 Nov 2007 16:52:50 +0100 Mathias Brodala <info@noctus.net> ha scritto:

> Hi.

>=20

> ann kok, 01.11.2007 16:39:
> > what is package including command ip addr?
>=20

> The command "ip" is in the "iproute" package.
>=20

> > how can I know the package info?
>=20

> # apt-get install apt-file
> # apt-file update
> $ apt-file search `which ip`
Do you need help?X

I'd suggest piping the result through grep. In fact, you get every file name containing "/bin/ip".

This means:

$ apt-file search `which ip` | grep "ip$"

which will get all the paths _ending_ with "ip".

A better, and more *general* approach would involve some sed magic:

$ prog=3D`which <program>`
$ apt-file search $prog | grep "$(echo $prog | sed 's/^\///g')$"

HTH,
David

--=20

 . ''`.  Debian maintainer | 
http://snipurl.com/qa_page/
 : :'  :  Linuxer #334216  |  
http://www.hanskalabs.net/
 `. `'`    GPG: 1392B174   | 
http://www.debianizzati.org/
   `- 2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174 --Sig_/qaT_fXXOC7HPiOOeOCbLjo8
Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc
Do you need more help?X

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHKgnG5qqQFxOSsXQRAlB4AKCecy/vGCeEb/Ix8ts87OXPdfkvOwCgwSfl jzYHYK3DDhbmG2OcAqllCeI=
=hx9E
-----END PGP SIGNATURE----- --Sig_/qaT_fXXOC7HPiOOeOCbLjo8--

Date: Thu, 1 Nov 2007 17:41:33 +0100
From: Elimar Riesebieter <riesebie@lxtec.de> To: debian-user@lists.debian.org
Subject: Re: fglrx upgrade to 8.42.3

Message-ID: <20071101164107.GA675@aragorn.home.lxtec.de>
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline

On Thu, 01 Nov 2007 the mental interface of Jonathan Kaye told:

> Elimar Riesebieter wrote:
>
> > On Thu, 01 Nov 2007 the mental interface of
> > Davide Mancusi told:
> >
> >> 2007/11/1, Jonathan Kaye <jdkaye10@yahoo.es>:
> >> > 1. What's your card - I'm running ATI Radeon 9550
> >>
> >> It's a Radeon 9600 Pro.
> >
> > Why don't you use the r300 driver from Xorg?
> >
> > Elimar
> >
> I don't think it supports 3D acceleration. The proprietary driver does.
> If you know differently, I'd like to hear about it.

The r300 Xorg driver supports 3D acceleration very well! On my Mobility Radeon 9600 M10 glxgears runs 1600 fps in windowmode and around 250 fps in fullscreen mode. The diver supports ATI's up to the X850 which is AFAIR rv480? [0] No tainted kernel;) Just OpenSource;)

Elimar

Can we help you?X

[0] http://dri.freedesktop.org/wiki/ATIRadeon#head-3ddc08075f8272e94cf5759e751db61f720bcbb1

-- 
  Alles was viel bedacht wird ist bedenklich!;-)
         Friedrich Nietzsche

Date: Thu, 1 Nov 2007 10:00:25 -0700 (PDT) From: ann kok <annkok2001@yahoo.com> To: Mathias Brodala <info@noctus.net>, debian-user@lists.debian.org Subject: Re: package Message-ID: <955649.45550.qm@web53309.mail.re2.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable thank you. but I run the "apt-file search `which ip`" can't get the iproute package for command ip addr thank you again apt-file search `which ip` apt-file version 2.0.3 (c) 2002 Sebastien J. Gross <sjg@debian.org> apt-file [options] action [pattern] Configuration options: --sources-list -s <file> sources.list location --cache -c <dir> Cache directory --architecture -a <arch> Use specific architecture --cdrom-mount -d <cdrom> Use specific cdrom mountpoint --package-only -l Only display packages name --fixed-string -F Do not expand pattern --ignore-case -i Ignore case distinctions --regexp -x pattern is a regular expression --verbose -v run in verbose mode --dummy -y run in dummy mode (no action) --help -h Show this help. --version -V Show version number Action: update Fetch Contents files from apt-sources. search <pattern> Search files in packages list <pattern> List files in packages purge Remove cache files --- Mathias Brodala <info@noctus.net> wrote:
> Hi.
>=20
> ann kok, 01.11.2007 16:39:
> > what is package including command ip addr?
>=20
> The command "ip" is in the "iproute" package.
>=20
> > how can I know the package info?
>=20
> # apt-get install apt-file
> # apt-file update
> $ apt-file search `which ip`
>=20 >=20
> Regards, Mathias
>=20
> --=20
> debian/rules
>=20 >=20 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around=20 http://mail.yahoo.com=20

Date: Thu, 1 Nov 2007 18:17:12 +0100 (CET) From: hyjial <hyjial@yahoo.fr> To: debian-user@lists.debian.org Subject: Re: GLIBC_2.4 Message-ID: <953435.41428.qm@web27912.mail.ukl.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable I am not sure I get the point of those of you who are against having PATH=3D~/bin:$PATH. The PATH is just a way to make life easier. If an executable can be run, then it doesn't have to be in your PATH to be run. As someone said before, you usually have in ~/bin programs which are not available system-wide. Logically, if you have them here, you want to run them. Thus having PATH=3D~/bin:$PATH is not such a non-sense. As I've said above, the PATH is meant to make life easier. ___________________________________________________________________= __________=20 Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! M= ail=20

Date: Thu, 1 Nov 2007 10:36:00 -0700 From: Andrew Sackville-West <andrew@farwestbilliards.com> To: debian-user@lists.debian.org Subject: Re: package Message-ID: <20071101173600.GK29856@localhost.localdomain> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="t3tFFy74pA5/PEcJ" Content-Disposition: inline --t3tFFy74pA5/PEcJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Nov 01, 2007 at 10:00:25AM -0700, ann kok wrote:
> thank you.
>=20
> but I run the "apt-file search `which ip`"
> can't get the iproute package for command ip addr
what is the output of=20 which ip you're getting the --help fro apt-file, so I'm guessing you aren't actually getting any output from `which ip` and triggering that usage message.=20 A --t3tFFy74pA5/PEcJ Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHKg6AaIeIEqwil4YRAiZxAJ4gAMWtfGaqc9sG2O8wuiLmbMh1pACdFkPh MW0jPMyeYeRX5qiK0u4+L5U= =nRjV -----END PGP SIGNATURE----- --t3tFFy74pA5/PEcJ--

Date: Thu, 01 Nov 2007 18:25:54 +0100 From: Jonathan Kaye <jdkaye10@yahoo.es> To: debian-user@lists.debian.org Subject: Re: fglrx upgrade to 8.42.3 Message-ID: <fgd272$ilt$1@ger.gmane.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit Elimar Riesebieter wrote: >> > Why don't you use the r300 driver from Xorg? >> > >> > Elimar >> > >> I don't think it supports 3D acceleration. The proprietary driver does. >> If you know differently, I'd like to hear about it.
>
> The r300 Xorg driver supports 3D acceleration very well! On my
> Mobility Radeon 9600 M10 glxgears runs 1600 fps in windowmode and
> around 250 fps in fullscreen mode. The diver supports ATI's up to
> the X850 which is AFAIR rv480? [0] No tainted kernel;) Just
> OpenSource;)
>
> Elimar
>
> [0]
> [http://dri.freedesktop.org/wiki/ATIRadeon#head-3ddc08075f8272e94cf5759e751db61f720bcbb1 Thanks a lot Elimar. I wish it were true. On the link you supplied it says, "Cards below this point are not well supported for 3D, but do have accelerated 2D 9500 denotes a R300 based card." I've tried putting in "ati" in the xorg.conf as the driver and never been able to get 3D acceleration to work. (I think the r300 driver is called "radeon" or "ati" by xserver, yes? I've tried both but not too recently. Cheers, Jonathan -- Registerd Linux user #445917 at http://counter.li.org/

Date: Thu, 1 Nov 2007 17:35:38 +0000 From: "Jayson Vaughn" <vaughn.jayson@gmail.com> To: debian-user@lists.debian.org Subject: Re: fglrx upgrade to 8.42.3 Message-ID: <4b61c6c0711011035m70eeeeb5r8df57e838796af33@mail.gmail.com> Content-Type: multipart/alternative; boundary="----=_Part_9078_26749883.1193938538186" ------=_Part_9078_26749883.1193938538186 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I have installed 8.42.3 by downloading it from AMD's site. I am using an ATI Xpress 200 on my Compax laptop. Everything seemed to work fine, except the 2D rendering is laggy. AIGLX did in fact work and OpenGL 3D DRI seemed to be improved. My fps for fglrx_gears and glxgears improved greatly (I know.. I know... not a good way to benchmark) However, the 2d rendering is just too kludgey and slow. I will be waiting for 8.43 or 8.44 Besides, I could care less about AIGLX. :) On 11/1/07, Elimar Riesebieter <riesebie@lxtec.de> wrote: >
> On Thu, 01 Nov 2007 the mental interface of
> Jonathan Kaye told:
>
> > Elimar Riesebieter wrote:
> >
> > > On Thu, 01 Nov 2007 the mental interface of
> > > Davide Mancusi told:
> > >
> > >> 2007/11/1, Jonathan Kaye <jdkaye10@yahoo.es>:
> > >> > 1. What's your card - I'm running ATI Radeon 9550
> > >>
> > >> It's a Radeon 9600 Pro.
> > >
> > > Why don't you use the r300 driver from Xorg?
> > >
> > > Elimar
> > >
> > I don't think it supports 3D acceleration. The proprietary driver does.
> > If you know differently, I'd like to hear about it.
>
> The r300 Xorg driver supports 3D acceleration very well! On my
> Mobility Radeon 9600 M10 glxgears runs 1600 fps in windowmode and
> around 250 fps in fullscreen mode. The diver supports ATI's up to
> the X850 which is AFAIR rv480? [0] No tainted kernel;) Just
> OpenSource;)
>
> Elimar
>
> [0]
> http://dri.freedesktop.org/wiki/ATIRadeon#head-3ddc08075f8272e94cf5759e751db61f720bcbb1
>
> --
> Alles was viel bedacht wird ist bedenklich!;-)
> Friedrich Nietzsche
> >
> --
> To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmaster@lists.debian.org
> > -- Jayson Vaughn <vaughn.jayson@gmail.com> GnuPG: D7B1E08F ------=_Part_9078_26749883.1193938538186 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I have installed 8.42.3 by downloading it from AMD&#39;s site.<br><br>I am using an ATI Xpress 200 on my Compax laptop.<br><br>Everything seemed to work fine, except the 2D rendering is laggy.<br><br>AIGLX did in fact work and OpenGL 3D DRI seemed to be improved.&nbsp; My fps for fglrx_gears and glxgears improved greatly (I know.. I know... not a good way to benchmark) <br><br>However, the 2d rendering is just too kludgey and slow.&nbsp; <br>I will be waiting for 8.43 or 8.44<br><br>Besides, I could care less about AIGLX.&nbsp; :)<br><br><div><span class="gmail_quote">On 11/1/07, <b class="gmail_sendername"> Elimar Riesebieter</b> &lt;<a href="mailto:riesebie@lxtec.de">riesebie@lxtec.de</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> On Thu, 01 Nov 2007 the mental interface of<br>Jonathan Kaye told:<br><br>&gt; Elimar Riesebieter wrote:<br>&gt;<br>&gt; &gt; On Thu, 01 Nov 2007 the mental interface of<br>&gt; &gt; Davide Mancusi told:<br>&gt; &gt;<br>&gt; &gt;&gt; 2007/11/1, Jonathan Kaye &lt; <a href="mailto:jdkaye10@yahoo.es">jdkaye10@yahoo.es</a>&gt;:<br>&gt; &gt;&gt; &gt; 1. What&#39;s your card - I&#39;m running ATI Radeon 9550<br>&gt; &gt;&gt;<br>&gt; &gt;&gt; It&#39;s a Radeon 9600 Pro.<br>&gt; &gt;<br>&gt; &gt; Why don&#39;t you use the r300 driver from Xorg? <br>&gt; &gt;<br>&gt; &gt; Elimar<br>&gt; &gt;<br>&gt; I don&#39;t think it supports 3D acceleration. The proprietary driver does.<br>&gt; If you know differently, I&#39;d like to hear about it.<br><br>The r300 Xorg driver supports 3D acceleration very well! On my <br>Mobility Radeon 9600 M10 glxgears runs 1600 fps in windowmode and<br>around 250 fps in fullscreen mode. The diver supports ATI&#39;s up to<br>the X850 which is AFAIR rv480? [0] No tainted kernel;) Just<br>OpenSource;) <br><br>Elimar<br><br>[0] http://dri.freedesktop.org/wiki/ATIRadeon#head-3ddc08075f8272e94cf5759e751db61f720bcbb1<br><br> --<br>&nbsp;&nbsp;Alles was viel bedacht wird ist bedenklich!;-)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Friedrich Nietzsche<br><br><br>--<br>To UNSUBSCRIBE, email to <a href="mailto:debian-user-REQUEST@lists.debian.org">debian-user-REQUEST@lists.debian.org</a> <br>with a subject of &quot;unsubscribe&quot;. Trouble? Contact <a href="mailto:listmaster@lists.debian.org">listmaster@lists.debian.org</a><br><br></blockquote></div><br><br clear="all"><br>-- <br>Jayson Vaughn &lt;<a href="mailto:vaughn.jayson@gmail.com"> vaughn.jayson@gmail.com</a>&gt;<br>GnuPG: D7B1E08F ------=_Part_9078_26749883.1193938538186--

Date: Thu, 01 Nov 2007 18:58:58 +0100 From: Mathias Brodala <info@noctus.net> To: debian-user@lists.debian.org Subject: Re: package Message-ID: <472A13E2.6050409@noctus.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigBE73324D87BBCF6FB7482792" This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigBE73324D87BBCF6FB7482792 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi. No need to CC me. And please don=E2=80=99t top post, thanks. ann kok, 01.11.2007 18:00:
> thank you.
>=20
> but I run the "apt-file search `which ip`"
> can't get the iproute package for command ip addr
>=20
> thank you again
>=20
> apt-file search `which ip`
> apt-file version 2.0.3
> (c) 2002 Sebastien J. Gross <sjg@debian.org>
> [=E2=80=A6]
Ah yes, silly me. If "iproute" is not installed it=E2=80=99s obvious that= the "ip" command cannot be found. Just directly search for "bin/ip" then. Regards, Mathias --=20 debian/rules --------------enigBE73324D87BBCF6FB7482792 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHKhPiYfUFJ3ewsJgRAm6iAKCC9Hu7TWPeZyo7simwmlz7LIG1mgCfS7Jm LFKcmkoVfchGH/Qc0so+lKk= =3Scb -----END PGP SIGNATURE----- --------------enigBE73324D87BBCF6FB7482792--

Date: Thu, 1 Nov 2007 18:35:20 +0100 From: Florian Kulzer <florian.kulzer+debian@icfo.es> To: debian-user@lists.debian.org Subject: Re: package Message-ID: <20071101173520.GA1056@pc0197> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Nov 01, 2007 at 18:15:48 +0100, David Paleino wrote:
> Il giorno Thu, 01 Nov 2007 16:52:50 +0100
> Mathias Brodala <info@noctus.net> ha scritto:
>
> > Hi.
> >
> > ann kok, 01.11.2007 16:39:
> > > what is package including command ip addr?
> >
> > The command "ip" is in the "iproute" package.
> >
> > > how can I know the package info?
> >
> > # apt-get install apt-file
> > # apt-file update
> > $ apt-file search `which ip`
>
> I'd suggest piping the result through grep. In fact, you get every file name
> containing "/bin/ip".
>
> This means:
>
> $ apt-file search `which ip` | grep "ip$"
>
> which will get all the paths _ending_ with "ip".
>
> A better, and more *general* approach would involve some sed magic:
>
> $ prog=`which <program>`
> $ apt-file search $prog | grep "$(echo $prog | sed 's/^\///g')$"
If <program> is not installed then `which <program>` will not return anything useful. If <program> is already installed then there is no need to use apt-file; "dpkg -S <program>" and "dlocate <program>" are faster. -- Regards, | http://users.icfo.es/Florian.Kulzer Florian |

Can't find what you're looking for?X

Date: Thu, 1 Nov 2007 11:02:51 -0700 (PDT) From: ann kok <annkok2001@yahoo.com> To: debian-user@lists.debian.org Subject: Re: package Message-ID: <959755.96007.qm@web53307.mail.re2.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi all sorry. I still don't get it I install apt-file as suggestion. but I run this command, I get nothing ! apt-file search `which ip` | grep "ip$" in addition, what do I know what package I should install when I would like to use this command eg: "ip addr" Thank you again --- David Paleino <d.paleino@gmail.com> wrote:
> Il giorno Thu, 01 Nov 2007 16:52:50 +0100
> Mathias Brodala <info@noctus.net> ha scritto:
>=20
> > Hi.
> >=20
> > ann kok, 01.11.2007 16:39:
> > > what is package including command ip addr?
> >=20
> > The command "ip" is in the "iproute" package.
> >=20
> > > how can I know the package info?
> >=20
> > # apt-get install apt-file
> > # apt-file update
> > $ apt-file search `which ip`
>=20
> I'd suggest piping the result through grep. In fact,
> you get every file name
> containing "/bin/ip".
>=20
> This means:
>=20
> $ apt-file search `which ip` | grep "ip$"
>=20
> which will get all the paths _ending_ with "ip".
>=20
> A better, and more *general* approach would involve
> some sed magic:
>=20
> $ prog=3D`which <program>`
> $ apt-file search $prog | grep "$(echo $prog | sed
> 's/^\///g')$"
>=20
> HTH,
> David
>=20
> --=20
> . ''`. Debian maintainer |
> http://snipurl.com/qa_page/
> : :' : Linuxer #334216 |=20
> http://www.hanskalabs.net/
> `. `'` GPG: 1392B174 |
> http://www.debianizzati.org/
> `- 2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392
> B174
>=20 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around=20 http://mail.yahoo.com=20

Date: 01 Nov 2007 17:42:08 GMT From: Tyler Smith <tyler.smith@mail.mcgill.ca> To: debian-user@lists.debian.org Subject: Re: WINE under Lenny Message-ID: <slrnfik400.gvv.tyler.smith@blackbart.mynetwork> On 2007-11-01, Carl Fink <carl@finknetwork.com> wrote:
> I need to run a Windows program or two for work, so rather than powerup my
> laptop for 30 minutes of work per day, I thought I'd try to install the
> programs on my Debian tower using WINE.
>
> Is anyone having any luck with WINE? I tried to trace the problem using
> winedbg, but that locked things up, too. Am I missing something obvious?
> I couldn't figure WINE out. I'm in a similar situation, needing to run a few Windows programs on a regular, if limited basis. I tried crossoveroffice, which installed without a hitch and works as advertised. You can get a free trial version from their website, and if you like it enough to pay for it it'll cost you $40. It is closed-source, but apparently some of the money makes its way into WINE development. Tyler

Date: Thu, 1 Nov 2007 19:11:39 +0100 From: Elimar Riesebieter <riesebie@lxtec.de> To: debian-user@lists.debian.org Subject: Re: fglrx upgrade to 8.42.3 Message-ID: <20071101181139.GA3195@aragorn.home.lxtec.de> Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline On Thu, 01 Nov 2007 the mental interface of Jonathan Kaye told:
> Elimar Riesebieter wrote:
>
[...]
> > The r300 Xorg driver supports 3D acceleration very well! On my
> > Mobility Radeon 9600 M10 glxgears runs 1600 fps in windowmode and
> > around 250 fps in fullscreen mode. The diver supports ATI's up to
> > the X850 which is AFAIR rv480? [0] No tainted kernel;) Just
> > OpenSource;)
> >
> > Elimar
> >
> > [0]
> >
> [http://dri.freedesktop.org/wiki/ATIRadeon#head-3ddc08075f8272e94cf5759e751db61f720bcbb1
> Thanks a lot Elimar. I wish it were true. On the link you supplied it says,
> "Cards below this point are not well supported for 3D, but do have
> accelerated 2D
> 9500 denotes a R300 based card."
> I've tried putting in "ati" in the xorg.conf as the driver and never been
> able to get 3D acceleration to work. (I think the r300 driver is
> called "radeon" or "ati" by xserver, yes? I've tried both but not too
> recently.
Section "Device" Identifier "ATI Technologies, Inc. RV350 [Mobility Radeon 9600 M10]" BusID "PCI:0:16:0" Driver "radeon" Option "MergedFB" "no" Option "UseFBDev" "yes" #Doesn't work with 6.6.2 Option "AGPMode" "4" #Compiz Settings Option "XAANoOffscreenPixmaps" "true" EndSection Section "Dri" group "video" Mode 0660 EndSection $ dpkg -l | grep mesa ii libgl1-mesa-dri 7.0.1-2 ii libgl1-mesa-glx 7.0.1-2 ii libglu1-mesa 7.0.1-2 ii mesa-utils 7.0.1-2 Have fun ;) Elimar -- The path to source is always uphill! -unknown-

Date: Thu, 1 Nov 2007 11:55:01 -0700 From: Andrew Sackville-West <andrew@farwestbilliards.com> To: debian-user@lists.debian.org Subject: Re: package Message-ID: <20071101185501.GP29856@localhost.localdomain> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Wty5iWagpjJlozQq" Content-Disposition: inline --Wty5iWagpjJlozQq Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Nov 01, 2007 at 11:02:51AM -0700, ann kok wrote:
> Hi all
>=20
> sorry. I still don't get it
>=20
> I install apt-file as suggestion.
>=20
> but I run this command, I get nothing !
>=20
> apt-file search `which ip` | grep "ip$"
this command doesn't work, because the this command is structured based on the assumption that the ip command is already installed. But in your case, that command isn't installed, so it fails.=20 >=20 >=20
> in addition, what do I know what package I should
> install when I would like to use this command eg: "ip
> addr"
the package you want to install is iproute. In the future, you can research this yourself with they apt-file command by doing something like: apt-file search <string to search for>=20 A >=20
> Thank you again
>=20 >=20
> --- David Paleino <d.paleino@gmail.com> wrote:
>=20
> > Il giorno Thu, 01 Nov 2007 16:52:50 +0100
> > Mathias Brodala <info@noctus.net> ha scritto:
> >=20
> > > Hi.
> > >=20
> > > ann kok, 01.11.2007 16:39:
> > > > what is package including command ip addr?
> > >=20
> > > The command "ip" is in the "iproute" package.
> > >=20
> > > > how can I know the package info?
> > >=20
> > > # apt-get install apt-file
> > > # apt-file update
> > > $ apt-file search `which ip`
> >=20
> > I'd suggest piping the result through grep. In fact,
> > you get every file name
> > containing "/bin/ip".
> >=20
> > This means:
> >=20
> > $ apt-file search `which ip` | grep "ip$"
> >=20
> > which will get all the paths _ending_ with "ip".
> >=20
> > A better, and more *general* approach would involve
> > some sed magic:
> >=20
> > $ prog=3D`which <program>`
> > $ apt-file search $prog | grep "$(echo $prog | sed
> > 's/^\///g')$"
> >=20
> > HTH,
> > David
> >=20
> > --=20
> > . ''`. Debian maintainer |
> > http://snipurl.com/qa_page/
> > : :' : Linuxer #334216 |=20
> > http://www.hanskalabs.net/
> > `. `'` GPG: 1392B174 |
> > http://www.debianizzati.org/
> > `- 2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392
> > B174
> >=20
>=20 >=20
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around=20
> http://mail.yahoo.com=20
>=20 >=20
> --=20
> To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org=20
> with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian=
=2Eorg >=20 >=20 --=20 --Wty5iWagpjJlozQq Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQFHKiEEaIeIEqwil4YRAnDnAJ42ozJ6pYJRddu1wT4xpzLCZDVWywCglz8B I+vRXrybSscXAEGWyV6udP8= =3s16 -----END PGP SIGNATURE----- --Wty5iWagpjJlozQq--

Date: Thu, 01 Nov 2007 19:51:36 +0100 From: Jonathan Kaye <jdkaye10@yahoo.es> To: debian-user@lists.debian.org Subject: Re: fglrx upgrade to 8.42.3 Message-ID: <fgd77n$5qk$1@ger.gmane.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit Elimar Riesebieter wrote:
>
> Have fun ;)
>
> Elimar
>
Ok, Elimar I'll give it a go. Thanks a lot. Jonathan -- Registerd Linux user #445917 at http://counter.li.org/

Date: Thu, 1 Nov 2007 11:09:07 -0800 From: Ken Irving <fnkci@uaf.edu> To: debian-user@lists.debian.org Subject: Re: Apt-Get or Aptitude Message-ID: <20071101190907.GA31584@localhost> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Nov 01, 2007 at 07:01:53AM -0700, Daniel Burrows wrote:
> On Tue, Oct 30, 2007 at 09:35:02PM -0700, Andrew Sackville-West <andrew@farwestbilliards.com> was heard to say:
> > On Tue, Oct 30, 2007 at 08:19:58PM -0700, Daniel Burrows wrote:
> > > On Tue, Oct 30, 2007 at 09:25:02AM -0700, Andrew Sackville-West <andrew@farwestbilliards.com> was heard to say:
> > > >
> > > > this bothers me, since I mostly use aptitude. When I need a build-dep
> > > > or source, I'm concerned that later aptitude may wipe something
> > > > inadvertantly. Do you know if there are plans to implement these
> > > > commands into aptitude? Or will apt-get always remain, so that its not
> > > > a problem?
> > >
> > > aptitude shouldn't wipe out packages installed with apt-get, period
> > > full stop.
> >
> > you know, that wasn't fair of me. I was once concerned about that
> > problem, but have subsequently learned that it really doesn't
> > happen. So i apologise if that came across wrong.
>
> No, I just come down hard on this meme because it seems to have taken
> on a life of its own and I'd like to squash it before it grows up into a
> full-blown urban legend.
That sounds good, but is it different now than it used to be? I haven't tried it lately, but it used to "seem" to want to remove lots of things. I'm aware of the workarounds (keep-all or whatever), have followed most of the threads (even instigated some...), but am still a command-line apt-get user waiting for a reason to change. Two problems I have with aptitude are the lack of "source" functionality and my inability to spell it as easily as apt-get. ;-) Ken -- Ken Irving, fnkci+debianuser@uaf.edu End of debian-user-digest Digest V2007 Issue #2721 ************************************************** Received on Thu Nov 1 15:30:34 2007

This archive was generated by hypermail 2.1.8 : Wed Mar 19 2008 - 02:55:46 EDT


Contact Us  Legal Notices  Order Services Online 
Pantek Home  Privacy Policy  IT news  Site Map  Pantek Library