Re: repos for squeeze as a base install.

2011-01-09 Thread Boyd Stephen Smith Jr.
In <4d2aaa20.ca7a0e0a.49e1.3...@mx.google.com>, Sthu Deus wrote:
>Andrei wrote:
>> $ apt-cache policy
>> [snip]
>> 
>>1 http://www.backports.org lenny-backports/main Packages
>>
>>  release o=Debian Backports,a=lenny-backports,l=Debian
>> 
>> Backports,c=main origin www.backports.org
>> [snip]
>> 
>> The correct origin is "Debian Backports" according to o=...
>
>Yea, right. But can You show the command line for the aptitude?
>I have tried this:
>
>/usr/bin/aptitude search ~O 'Debian Backports'

This calls aptitude with 3 arguments: "search" "~O" and "Debian Backports"

>/usr/bin/aptitude search ~O Debian\ Backports

Same thing.

>/usr/bin/aptitude search ~O Debian Backports

This calls aptitude with 4 arguments: "search" "~O" "Debian" and "Backports"

>- all returned same bunch of packages that lets me think I have not
>  achieved my goal.

I think you want:
aptitude search '~O"Debian Backports"'

This calls aptitude with 2 arguments: "search" and ~O"Debian Backports".

(aptitude has no control over your shell, so you'll need to learn how to quote 
things in your shell before you can even properly communicate with aptitude.)

When aptitude has the search action chosen and is given multiple search terms, 
it logically OR's them, which is not what you want, particularly the search 
term of '~O'.  (aptitude search gnome kde) finds package with names containing 
either 'gnome' or 'kde'.

Within a search term, ' ' is the same as '&' and performs a logical AND of two 
sub-terms.  However, ' ' is not treated that way inside a quoted string, which 
is indicated by the double-quote characters '"'.  '~ODebian Backports' looks 
for something with an origin of 'Debian' AND having "Backports" in the package 
name.  '~O"Debian Backports"' looks for something with an origin of 'Debian 
Backports'.
-- 
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: repos for squeeze as a base install.

2011-01-09 Thread Sthu Deus
Andrei wrote:

> $ apt-cache policy
> [snip]
>1 http://www.backports.org lenny-backports/main Packages
>  release o=Debian Backports,a=lenny-backports,l=Debian
> Backports,c=main origin www.backports.org
> [snip]
> 
> The correct origin is "Debian Backports" according to o=...

Yea, right. But can You show the command line for the aptitude?
I have tried this:

/usr/bin/aptitude search ~O 'Debian Backports'

/usr/bin/aptitude search ~O Debian\ Backports

/usr/bin/aptitude search ~O Debian Backports

- all returned same bunch of packages that lets me think I have not
  achieved my goal.


-- 
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/4d2aaa20.ca7a0e0a.49e1.3...@mx.google.com



Re: repos for squeeze as a base install.

2011-01-09 Thread Sthu Deus
Thank You for Your time and answer, Doug:

> Where is this sources list, and where do you find a list of repos to
> add to it?

I've seen that in some debian news - they announced that there will be
diver repos for lenny and squeeze - so that people might slightly move
from one repo version to another still having appropriate backports
repos for it provided.

Also, if Yo concerned about it You can look at the link I have provided
before and make appropriate lines in Your sources file - there is
nothing uncommon as to other repos You are using now.

> And then how do you make synaptic open the "correct" repo, or does it
> combine all the various sources into one humongous list?  Sorry to be

Well. Do You mean "to open correct repo"? There pining or extra setting
at apt/aptitude command line to use the repos.


PS I do not use synaptic.


-- 
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/4d2aa741.cc7e0e0a.7064.3...@mx.google.com



How to automatically start with a desktop environment (was: repos for squeeze as a base install.)

2011-01-08 Thread Camaleón
On Sat, 08 Jan 2011 08:29:54 -0430, Edward Monsalve wrote:

Edward, you have hijacked a thread (you replied to a message instead of 
creating a new one).

> Buenas Dias,

And this is an English-speaking list, you better send the message to the 
Spanish mailing list:

http://lists.debian.org/debian-user-spanish/

> tengo un problema con el entorno grafico, no se inicia automaticamente
> con el sistema operativo,
> tengo debian squeeze amd64 usando gnome
> 
> yo puedo loguearme en consola y luego stratx y funciona, pero me
> gustaria que se iniciara automaticamente

It seems you want Debian starts with a graphical desktop session instead 
having to type "startx" every time at start-up.

Did you install the GDM package or any other display manager?

Greetings,

-- 
Camaleón


-- 
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/pan.2011.01.08.14.53...@gmail.com



Re: repos for squeeze as a base install.

2011-01-08 Thread Edward Monsalve
Buenas Dias,

tengo un problema con el entorno grafico, no se inicia automaticamente con
el sistema operativo,
tengo debian squeeze amd64 usando gnome

yo puedo loguearme en consola y luego stratx y funciona, pero me gustaria
que se iniciara automaticamente

saludos

Edward Monsalve
Analista de tecnologia A
Metro de Caracas CA
telf: 04129743438


Re: repos for squeeze as a base install.

2011-01-08 Thread Andrei Popescu
On Sb, 08 ian 11, 14:12:44, Sthu Deus wrote:
> Andrei wrote:
> 
> > Add the repository to your sources.list, update and then use aptitude
> > to search for packages with the respective origin [~O or 
> > ?origin(repository)], but it's simpler to just open the repository in
> 
> I've got plenty of packages trying w/:
> 
> /usr/bin/sudo /usr/bin/aptitude search ~O backports
> 
> or
> 
> /usr/bin/aptitude search ~O bpo
> 
> I do not believe I understood You correctly though.
 
Yes you did, but there's one small detail missing:

$ apt-cache policy
[snip]
   1 http://www.backports.org lenny-backports/main Packages
 release o=Debian Backports,a=lenny-backports,l=Debian Backports,c=main
 origin www.backports.org
[snip]

The correct origin is "Debian Backports" according to o=...

(BTW, this reminds me I forgot to update this machine to the new 
location, but the origin is the same ;)]

> > a browser and look in the pool directory ;)
> 
> The dir. contains other repos packages mixed - making it impossible to
> to discern to which backports version it relates to. - As I understand.
> 
> Also, I guess You can try it Yourself, here is the link:
> 
> http://backports.debian.org/debian-backports/

Right... didn't think of that. Ok, look at the file:

http://backports.debian.org/debian-backports/dists/squeeze-backports/main/binary-amd64/Packages.gz

As you can see the file is empty, which means there are no packages ;)

(replace binary-amd64 with the arch you need)

Regards,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: repos for squeeze as a base install.

2011-01-07 Thread Doug

On 01/08/2011 02:12 AM, Sthu Deus wrote:

Andrei wrote:


Add the repository to your sources.list, update and then use aptitude
to search for packages with the respective origin [~O or
?origin(repository)], but it's simpler to just open the repository in

/snip/

Where is this sources list, and where do you find a list of repos to add 
to it?

And then how do you make synaptic open the "correct" repo, or does it
combine all the various sources into one humongous list?  Sorry to be so
dense, but I've wondered about that for some time now.

--doug

--
Blessed are the peacemakers...for they shall be shot at from both sides. --A. 
M. Greeley


--
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/4d2813ee.4070...@optonline.net



Re: repos for squeeze as a base install.

2011-01-07 Thread Sthu Deus
Andrei wrote:

> Add the repository to your sources.list, update and then use aptitude
> to search for packages with the respective origin [~O or 
> ?origin(repository)], but it's simpler to just open the repository in

I've got plenty of packages trying w/:

/usr/bin/sudo /usr/bin/aptitude search ~O backports

or

/usr/bin/aptitude search ~O bpo

I do not believe I understood You correctly though.

> a browser and look in the pool directory ;)

The dir. contains other repos packages mixed - making it impossible to
to discern to which backports version it relates to. - As I understand.

Also, I guess You can try it Yourself, here is the link:

http://backports.debian.org/debian-backports/

:)


-- 
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/4d280e77.ca7a0e0a.546b.c...@mx.google.com



Re: repos for squeeze as a base install.

2011-01-07 Thread Andrei Popescu
On Vi, 07 ian 11, 15:42:49, Sthu Deus wrote:
> Thank You for Your time and answer, Greg:
> 
> > Are there any packages uploaded to it yet ?
> 
> Well. I do not know how to check it. -  If You know, show me how - and
> I will answer You. :)

Add the repository to your sources.list, update and then use aptitude to 
search for packages with the respective origin [~O or 
?origin(repository)], but it's simpler to just open the repository in a 
browser and look in the pool directory ;)

Regards,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: repos for squeeze as a base install.

2011-01-07 Thread Sthu Deus
Thank You for Your time and answer, Greg:

> Are there any packages uploaded to it yet ?

Well. I do not know how to check it. -  If You know, show me how - and
I will answer You. :)


-- 
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/4d26d20f.ca7a0e0a.546b.9...@mx.google.com



Re: repos for squeeze as a base install.

2011-01-05 Thread Greg Madden


On Wednesday 05 January 2011 10:57:35 am Sthu Deus wrote:

> No. There is backports for squeeze too - to mix up not w/ the backborts
> of now stable branch.

Are there any packages uploaded to it yet ?
-- 
Peace,

Greg


-- 
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/201101051956.59018.gomadtr...@gci.net



Re: repos for squeeze as a base install.

2011-01-05 Thread Andrei Popescu
On Mi, 05 ian 11, 12:31:51, David Jardine wrote:
> 
> Use "testing" and you will move (seamlessly) to wheezy (testing) after 
> the release.  Updates will after that will bring newer versions into 
> your system regularly.

That depends. Immediately after the release it might pour with (more or 
less coordinated) updates. It's probably the most inconsistent period 
during the lifetime of a given release. For this reason I recommend 
moving from stable to testing only after things have settled down a bit.

Regards,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: repos for squeeze as a base install.

2011-01-05 Thread Sthu Deus
Thank You for Your time and answer, Simon:

> You should comment out the backports repo until squeeze gets stable,
> AFAIK backports and volatile are only available for the current
> stable version of Debian.

No. There is backports for squeeze too - to mix up not w/ the backborts
of now stable branch.


-- 
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/4d24cd34.017b0e0a.3dc4.3...@mx.google.com



Re: repos for squeeze as a base install.

2011-01-05 Thread Simon Hollenbach
> So, the only repo I need now is testing, and, may backports for squeeze
> - is it correct?
You should comment out the backports repo until squeeze gets stable, AFAIK 
backports and volatile are only available for the current stable version of 
Debian.

Regards
Simon

Re: repos for squeeze as a base install.

2011-01-05 Thread David Jardine
On Wed, Jan 05, 2011 at 05:08:16PM +0700, Sthu Deus wrote:
> Good day.
> 
> Having made
> 
> aptitude -t testing full-upgrade
> 
> and therefore having squeeze installed and not lenny any more, what
> should my sources.list be pointing to?
> 
> - before it was pointing to stable and testing. Now, as I understand,
>   stable repos as long as it points to lenny, I need not (is it
>   correct?), and I need no more a testing for testing - meaning testing
>   for squeeze (the next coming release after squeeze).
> 
> So, the only repo I need now is testing, and, may backports for squeeze - is 
> it correct?

Use "squeeze" and you will stay on stable (squeeze) after the upcoming 
release.  Updates after that will change little on your system (security 
updates only).

Use "testing" and you will move (seamlessly) to wheezy (testing) after 
the release.  Updates will after that will bring newer versions into 
your system regularly.

HTH,
David


-- 
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/20110105113151.ga1...@gennes.augarten



repos for squeeze as a base install.

2011-01-05 Thread Sthu Deus
Good day.

Having made

aptitude -t testing full-upgrade

and therefore having squeeze installed and not lenny any more, what
should my sources.list be pointing to?

- before it was pointing to stable and testing. Now, as I understand,
  stable repos as long as it points to lenny, I need not (is it
  correct?), and I need no more a testing for testing - meaning testing
  for squeeze (the next coming release after squeeze).

So, the only repo I need now is testing, and, may backports for squeeze - is it 
correct?


Thank You for Your time.


-- 
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/4d244322.017b0e0a.597b.1...@mx.google.com