Re: import failures

2010-02-15 Thread Martin Pool
On 13 February 2010 04:09, James Westby jw+deb...@jameswestby.net wrote:
 On Thu, 11 Feb 2010 12:49:22 +1100, Robert Collins 
 robert.coll...@canonical.com wrote:
 On Wed, 2010-02-10 at 21:46 +, James Westby wrote:
 
  Some of them have been upgraded. If it's easier for me to do an info
  against all of them and filter out those not in 2a then I can do so.

 I think thats easiest.

 For some value of easy that involves writing a python script and running
 it for four hours to extract information from the LP database :-)

 Attached is a raw list of branch API url and repository format string,
 it can be massaged in to a list of branches to upgrade using your
 preferred text manipulation tools.

 3336 branches by my reckoning.

So, just to be sure, we want to upgrade all the non-2a ones to 2a, on
Launchpad?  Probably by running the upgrade either on the lp machine
itself or at least on a nearby machine?

-- 
Martin http://launchpad.net/~mbp/

-- 
ubuntu-distributed-devel mailing list
ubuntu-distributed-devel@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-distributed-devel


Re: import failures

2010-02-15 Thread James Westby
On Mon, 15 Feb 2010 19:19:13 +1100, Martin Pool m...@canonical.com wrote:
 So, just to be sure, we want to upgrade all the non-2a ones to 2a, on
 Launchpad?  Probably by running the upgrade either on the lp machine
 itself or at least on a nearby machine?

Yep.

Differing formats cause pain, and there's no need for these to be in an
inferior format.

Doing the upgrade from the codehosting machine would be much more
efficient for these three thousand branches.

Thanks,

James

-- 
ubuntu-distributed-devel mailing list
ubuntu-distributed-devel@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-distributed-devel


Re: import failures

2010-02-15 Thread Michael Hudson
James Westby wrote:
 On Mon, 15 Feb 2010 19:19:13 +1100, Martin Pool m...@canonical.com wrote:
 So, just to be sure, we want to upgrade all the non-2a ones to 2a, on
 Launchpad?  Probably by running the upgrade either on the lp machine
 itself or at least on a nearby machine?
 
 Yep.
 
 Differing formats cause pain, and there's no need for these to be in an
 inferior format.
 
 Doing the upgrade from the codehosting machine would be much more
 efficient for these three thousand branches.

I'm upgrading the branches using a stupid shell script on devpad now.

Cheers,
mwh

-- 
ubuntu-distributed-devel mailing list
ubuntu-distributed-devel@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-distributed-devel


[உபுண்டு_தமிழ்] இணைய கூட்டம்

2010-02-15 Thread பத்மநாதன்
தோழர்களே,
 வணக்கம்!, பிப்ரவரி மாதத்தின் இரண்டாவது கூட்டம்
20.02.2010 அன்று மாலை 3 மணி முதல் 4 மணி வரை  irc.freenode.net எனும்
கூடத்தில் #ubuntu-tam எனும் அறையில் நடைபெற உள்ளது. இக்கூட்டத்தில்
அனைவரும் தவறாது கலந்துகொள்ளவும். மேலும் இக்கூட்டத்தில் உரையாடவோ அல்லது
விவாதிக்கவோ விரும்புபவர்கள் கீழே சுட்டியுள்ள பக்கத்தில் குறிப்பிட்டு
பின்னர் பேசலாம். மேலும் கூட்டம் பற்றிய புதிய தகவல்களையும் இங்கே
காணலாம்.

http://ubuntu-tam.org/wiki/index.php?title=இணையரங்க_உரையாடல்_20_02_2010

பத்மநாதன்

-- 

Padhu,
Pollachi.


Knowledge is power !

Be an Energy (Opti)mizer - Use Electricity Wiser
-- 
Ubuntu-l10n-tam mailing list
Ubuntu-l10n-tam@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-l10n-tam


RE: Thumb2PortingHowto wiki page question

2010-02-15 Thread Dave P. Martin
Hi there, thanks for your questions.

 -Original Message-
 From: John Tytgat [mailto:john.tyt...@aaug.net] 

[...]

 I've read with interest the
 https://wiki.ubuntu.com/ARM/Thumb2PortingHowto page and I'm 
 wondering about the following : in the Quick Reference 
 section it is mentioned that bx lr is a no go for ARMv4 and earlier.

The Thumb instruction set did not exist at all before ARMv4T, and so in
ARMv4 and earlier architectures do not understand the BX instruction which
is used to switch to and from Thumb.

 But further on we have:
 
 #ifdef (___ARM_ARCH_4T__) || defined (__ARM_ARCH_4__)
 movpc, lr
 #else
 bx lr
 #endif
 
 Why do we have the __ARM_ARCH_4T__ test ? ARMv4T happily 
 groks bx lr, no ?

You are right, but to minimise any impact on Debian (who build for ARMv4T
but do not make use of Thumb) I count ARMv4T as a non-Thumb architecture.

As things stand Debian should work on ARMv4 (non-T) platforms, and it's
possible some are still in use; if so, I don't want to break these with our
updates.

ARMv4T has some particular limitations which require less efficient
interworking return sequences for Thumb functions compared with the newer
architectures, so Thumb is less likely to be used for general userspace code
in Debian (unless they migrate completely to a higher architecture baseline
at some point in the future).


Strictly speaking, the test could be

#if defined(__ARM_ARCH_2__) || defined(__ARM_ARCH_3__) || \
defined(__ARM_ARCH_3M__) || \
defined(__ARM_ARCH_4__) || defined(__ARM_ARCH_4T__)

However, this is verbose and easy to get wrong; and ARMv4 is about the
oldest baseline used by anyone at present.

Reversing the sense of the #if (to detect any compatible architecture, as
opposed to rejecting incompatible ones) is difficult to do in an
upwards-compatible way because of the way GCC describes the architecture in
its predefines.


I'll poke the wiki to clarify the rationale here (though discussion is still
welcome).

Cheers
---Dave



-- 
Ubuntu-mobile mailing list
Ubuntu-mobile@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-mobile


[ubuntu-in] A domain name problem

2010-02-15 Thread Dhanada Mishra
Dear All;

We have set up a local DNS server. When I ping the IP of the server from any
client machine, it replys, but when I ping the domain name - hdfsom.ac.in,
it shows unknown host. When I ping hdfsom.ac.in from the server gives reply.


Please let know if anyone who has faced this kind of a problem.

Thank you.

Regards;
Dhanada
-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [ubuntu-in] A domain name problem

2010-02-15 Thread Jkhatri
On 02/15/2010 06:31 PM, Dhanada Mishra wrote:
 Dear All;

 We have set up a local DNS server. When I ping the IP of the server 
 from any client machine, it replys, but when I ping the domain name - 
 hdfsom.ac.in http://hdfsom.ac.in, it shows unknown host. When I ping 
 hdfsom.ac.in http://hdfsom.ac.in from the server gives reply.

 Please let know if anyone who has faced this kind of a problem.

 Thank you.

 Regards;
 Dhanada

what is the output of following[1] command  (run it on the client 
which is not able to ping by domain  name ) ..does it contains the IP of 
your DNS server which you have configured locally


[1] cat /etc/resolv.conf


-- 

Jatin Khatri

Web www.khatrijatin.co.nr http://www.khatrijatin.co.nr/

www.fedoraproject.org/wiki/Jatin http://www.fedoraproject.org/wiki/Jatin

Phone (+91) 98250 20393

Save Paper, Save Environment.**
/*(Plant at least one tree in your life and nurture it !!!)*/



-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [ubuntu-in] A domain name problem

2010-02-15 Thread Mehul Ved
On Mon, Feb 15, 2010 at 6:31 PM, Dhanada Mishra dhana...@gmail.com wrote:

 Dear All;

 We have set up a local DNS server. When I ping the IP of the server from
 any client machine, it replys, but when I ping the domain name -
 hdfsom.ac.in, it shows unknown host. When I ping hdfsom.ac.in from the
 server gives reply.

 Please let know if anyone who has faced this kind of a problem.


1. Please give the diagnostic output of ping in both cases.
2. Paste the contents of /etc/resolv.conf on the clients. Is the DNS on your
server listed in this file?
3. dig and nslookup are more useful as compared to ping in this case.
-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [ubuntu-in] A domain name problem

2010-02-15 Thread Mehul Ved
On Tue, Feb 16, 2010 at 11:32 AM, Nrusinha Das ad...@hdf.ac.in wrote:

 Dear Mehul,
   Please find the resolve.conf detail bellow;

 domain    hdfsom.ac.in
 search hdfsom.ac.in
 nameserver  192.168.20.15

 when i try nslookup in server, it shows;

  hdfsom.ac.in
 Server :   192.168.20.15
 Address :    192.168.20.15#53

 Name : hdfsom.ac.in
 Address : 192.168.20.15

 when i try nslookup from client, it shows;
  hdfsom.ac.in
 Server :   192.168.20.15
 Address :    192.168.20.15#53

 Non-authoritative anser;

 Name :hdfsom.ac.in.hdf.com
 Address : 67.199.96.224

 when i try server ip from client using nslookup ;

 192.168.20.15

 Server :   192.168.20.15
 Address :    192.168.20.15#53

 ** Server can't find 15.20.168.192.in-addr.arpa.: NXDOMAIN

 please suggest

Looks fine to me. You still haven't given the output of ping. Since
the DNS is resolving, your server maybe blocking ping, check your
firewall settings.

PS:- Please send plain text messages when sending to list.

-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [Ubuntu-QC] Son sous Ubuntu 9.10

2010-02-15 Thread Yvon Marcotte

Merci Martin je vais regarder ce que je peux faire avec ça.

From: martin.gama...@gmail.com
To: ubuntu-quebec@lists.ubuntu.com
Date: Sat, 13 Feb 2010 18:47:15 -0500
Subject: Re: [Ubuntu-QC] Son sous Ubuntu 9.10






  
  


Salut Yvon, de mon côté, je n'ai pas encore eu le temps de regarder pour ton 
problème, je regarde dans les prochains jours...



Personnellement. j'observe que l'audio fonctionne moins bien dans Karmic.  J'ai 
eu des problèmes de crépitement audio et de fermeture automatique du son à 
chaque démarrage.  Ce n'est peut-être pas approprié pour ton problème, mais en 
attendant, tu peux toujours regarder ce rapport de bogue, qui comportait des 
instructions qui m'ont été utiles...



https://bugs.launchpad.net/pulseaudio/+bug/352732   (l'instruction #77)





Et en utilisant aussi le dépôt de l'équipe Ubuntu de développement audio, j'ai 
réglé mes problèmes...



Voir ce lien



http://launchpad.net/~ubuntu-audio-dev/+archive/ppa







Tiens moi au courant, de mon côté, je te donne des nouvelles d'ici quelques 
jours... 

 





On Sat, 2010-02-13 at 17:04 -0500, Yvon Marcotte wrote:


Je ne suis pas certain que je comprends très bien ce que tu veux me dire, 
mais ce que je vois c'est que le problême est toujours là à chaque démarrage de 
l'ordi. Je ne suis vraiment pas un expert en informatique.



Yvon



 Date: Sat, 13 Feb 2010 16:40:00 -0500

 From: gzou2...@gmail.com

 To: ubuntu-quebec@lists.ubuntu.com

 Subject: Re: [Ubuntu-QC] Son sous Ubuntu 9.10

 

 alsactl store ne fait que sauvegarder les niveaux de la carte son

 (ceux que tu vois dans alsamixer) sur le disque. Les niveaux sont

 supposés se remettre aux paramètres lors de la sauvegarde à chaque

 démarrage du système

 

 2010/2/13 Yvon Marcotte yvon.a...@live.ca:

  On dirait qu'il ne se passe rien avec la deuxième ligne. Lereset se 
fait

  comme d'habitude mais rien de plus.

 

 

  y...@yvon-desktop:~$ sudo alsactl store

  [sudo] password for yvon:

  y...@yvon-desktop:~$ sudo /etc/init.d/alsa-utils reset

   * Resetting ALSA...
 [

  OK ]

  y...@yvon-desktop:~$ sudo alsactl store

  y...@yvon-desktop:~$

 

  C'est ce que ça donne.

 

  Date: Fri, 12 Feb 2010 10:28:30 -0500

  From: gzou2...@gmail.com

  To: ubuntu-quebec@lists.ubuntu.com

  Subject: Re: [Ubuntu-QC] Son sous Ubuntu 9.10

 

  Si tu éxécute en console :

 

  sudo /etc/init.d/alsa-utils reset

  sudo alsactl store

 

  est-ce que ça fait une différence ?

 

  2010/2/12 Yvon Marcotte yvon.a...@live.ca:

   C'est la version 32 bits. Je suis en train de faire un montage video,

   j'ai

   donc installé : Kino, Avidemux, Devede aussi Camstream qui n'est 
jamais

   apparu dans mes applications et que j'ai donc désinstallé. Je ne me

   rappelle

   pas si le son a disparu tout de suite après une installation. Ubuntu

   fait

   régulièrement des mises à jour, je n'ai pas remarqué s'il y a eu des

   mises à

   jour de pilotes audio.

   Je te mets en pièce jointe la description de mon système.

   Merci pour ta disponibilité.

  

   Yvon

  

  

  

  

  

  

  

   

   From: martin.gama...@gmail.com

   To: ubuntu-quebec@lists.ubuntu.com

   Date: Thu, 11 Feb 2010 20:51:04 -0500

   Subject: Re: [Ubuntu-QC] Son sous Ubuntu 9.10

  

   Salut Yvon

  

   Peux-tu me dire quelle version d'Ubuntu tu utilise, et si elle est 
en 32

   ou

   64 bits?

  

   Aussi, tu dis que le problème est apparu depuis deux jours, qu'est ce

   qui a

   aussi changé il y a deux jours ?  As-tu installé un nouveau 
logiciel, y

   a-t-il eu une mise à jour de pilote audio ?

  

   Si tu peux aussi me préciser la marque et le modèle de l'ordi, avec 
tout

   ça

   je ferai une recherche samedi.

  

   Cordialement

  

  

   On Thu, 2010-02-11 at 19:25 -0500, Yvon Marcotte wrote:

  

   Non, je ne peux pas régler le son par la fenêtre de réglage de son. 
Pour

   récupérer le son après chaque démarrage de l'ordinateur, je dois

   absolument

   taper dans un terminal : sudo /etc/init.d/alsa-utils reset .

  

   Yvon

  

  

   

   From: martin.gama...@gmail.com

   To: ubuntu-quebec@lists.ubuntu.com

   Date: Thu, 11 Feb 2010 11:26:39 -0500

   Subject: Re: [Ubuntu-QC] Son sous Ubuntu 9.10

  

   Yvon, est-ce que le son est réactivable en passant par la fenêtre de

   réglage

   du son, ou bien est-ce que la carte de son est complètement inactive?

  

  

   On Wed, 2010-02-10 at 20:02 -0500, Yvon Marcotte 

[Ubuntu-QC] Existe-t-il un groupe de développeur s MySQL à Montréal ou au Québec?

2010-02-15 Thread Diane Mercier

Bonjour,

Est-ce que vous connaissez un groupe de développeurs MySQL actif dans la 
région de Montréal ou au Québec?



--
Diane Mercier, Ph. D.
Docteure en sciences de l'information

Blogue : http://consultus.qc.ca/carnets/
Praticienne-chercheure et consultante en transfert des connaissances

LindedIn :   http://www.linkedin.com/in/dianemercier
Twitter :  @carnetsDM
Zotero : http://www.zotero.org/dmercier
Chercheure pour le Réseau PHIL, http://phil.uqam.ca
Membre du TIGRE de l'ÉNAP (Transfert intergénérationnel : Groupe de 
recherche et expertise)

http://www.chairelacapitale.enap.ca/fr/index.aspx?sortcode=1.21.31

-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [Ubuntu-QC] Existe-t-il un groupe de développeur s MySQL à Montréal ou au Québec?

2010-02-15 Thread Diane Mercier

Bonjour Jocelyn,

Nous voulons savoir s'il est possible d'utiliser un external language 
procedure à l'intérieur d'une procédure dans MySQL (5.0.67)


Voici la question de mon technicien en informatique (désolée, il 
s'exprime mieux en anglais)


Est-ce permis? Sinon avez-vous des suggestions?

=
HELLO, DIANE

IN MYSQL DATABASE:

I HAVE TABLE /CUSTOMER_HTML_TABLE/ WITH A FIELD /CUSTOMER_HTML/_/FIELD/

I HAVE /CUSTOMER/ TABLE THAT STORES CONTACT INFO FOR CUSTOMERS.

I WANT TO CREATE TRIGGERS ON TABLE /CUSTOMER /THAT EXECUTES WHEN A ROW 
IS INSERTED,OR UPDATED. WHEN A CUSTOMER IS ADDED OR MODIFED, I WANT 
/CUSTOMER_HTML/_/FIELD /IN CORRESPONDING RECORDS OF 
/CUSTOMER_HTML/_/TABLE/ TO BE UPDATED WITH A CONCACTINATED HTML STRING 
OF THE CUSTOMER'S CONTACT INFO.


IN MYSQL TRIGGER FOR /CUSTOMERS, /I WOULD LIKE TO CALL JAVA OR VB STORED 
PROCEDURE, PASSING DATA XML AND XSLT STYLESHEET TO APPLY. THE EXTERNAL 
PROCEDURE WOULD RETURN THE HTML RESULT. THIS HTML RESULT WOULD BE 
ASSIGNED TO /CUSTOMER_HTML/_/FIELD/ OF CORRESPONDING RECORD IN 
/CUSTOMER_HTML_TABLE/






--
Diane Mercier, Ph. D.
Docteure en sciences de l'information

Blogue : http://consultus.qc.ca/carnets/
Praticienne-chercheure et consultante en transfert des connaissances

LindedIn :   http://www.linkedin.com/in/dianemercier
Twitter :  @carnetsDM
Zotero : http://www.zotero.org/dmercier
Chercheure pour le Réseau PHIL, http://phil.uqam.ca
Membre du TIGRE de l'ÉNAP (Transfert intergénérationnel : Groupe de 
recherche et expertise)

http://www.chairelacapitale.enap.ca/fr/index.aspx?sortcode=1.21.31

Le 2010-02-15 11:49, jocelyn st-germain a écrit :
Vous cherchez quoi en particulier. Il vous est possible de précisez. 
Parce que pour des ressources, j'ai ce qui faut. Mais bon faut voir.



Date: Mon, 15 Feb 2010 11:43:48 -0500
From: diane.merc...@gmail.com
To: ubuntu-quebec@lists.ubuntu.com
CC: m...@sachavieuxroy.com
Subject: [Ubuntu-QC] Existe-t-il un groupe de développeurs MySQL à 
Montréal ou au Québec?


Bonjour,

Est-ce que vous connaissez un groupe de développeurs MySQL actif dans 
la région de Montréal ou au Québec?



--
Diane Mercier, Ph. D.
Docteure en sciences de l'information

Blogue : http://consultus.qc.ca/carnets/
Praticienne-chercheure et consultante en transfert des connaissances

LindedIn : http://www.linkedin.com/in/dianemercier
Twitter :  @carnetsDM
Zotero : http://www.zotero.org/dmercier
Chercheure pour le Réseau PHIL, http://phil.uqam.ca
Membre du TIGRE de l'ÉNAP (Transfert intergénérationnel : Groupe de 
recherche et expertise)

http://www.chairelacapitale.enap.ca/fr/index.aspx?sortcode=1.21.31



Vous n'utilisez pas Hotmail sur votre téléphone? Mais pourquoi pas? 
Obtenez-le maintenant! http://go.microsoft.com/?linkid=9708126


-- 
Ubuntu-quebec mailing list
Ubuntu-quebec@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-quebec


Re: [ubuntu-uk] Karmic won't boot with digital projector connected

2010-02-15 Thread Simon Greenwood
On 13 February 2010 19:03, Graham Smith myotis...@gmail.com wrote:

 Simon,

  One of the things that changed in karmic is display detection, which now
  happens through dbus, and there isn't a fixed xorg.conf any more, just a
  stub in /etc/X11. You will probably need to set up the projector as a
 device
  in xorg.conf.
  There might be some clues as to what it's doing in dmesg or
  /var/log/Xorg.0.log. My guess is that the laptop might be attempting to
  switch its default display to the projector.

 Thanks for the response.

 Not that I fully understand this, but does this mean that I will need
 to set up my laptop for every lecture theatre I go into and if I give
 a talk off site find time to sort out the off site projector before I
 start the talk/lecture?

 I have looked at dmesg and /var/log/Xorg.O.log, but they have no dates
 so does this mean they only apply to the most recent boot up?


Stepping back a little, what happens if you plug a projector in after the
laptop has booted and logged in? If that works, do it like that. It sounds
like there's some display detection going on at login that doesn't identify
a projector properly.

I would also guess that you might only need a generic display profile for
all projectors as in my experience they all have similar attributes. I would
also look at how your laptop handles displays. Most laptops would have a
switch between LCD and CRT, which is usually an alt function of one of the
function keys. Something is telling me that Thinkpads have an auto switching
display option in the BIOS which you might need to turn off. I don't know
why it could be the case but it seems possible with the changes to hardware
detection in Karmic.

Simon


-- 
Looking for work
My CV: http://sites.google.com/site/simongreenwoodscv/
Linkedin: http://www.linkedin.com/in/simonfgreenwood
Support for unemployed IT professionals:
http://groups.google.com/group/downtimeuk
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


[ubuntu-uk] Podcast season 3

2010-02-15 Thread Alan Pope
From http://identi.ca/notice/22072786

Season 3 Episode 1 recording tonight! Nearly 2 months since our last
episode. Did we miss anything? Any news or events we should know
about?

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Karmic won't boot with digital projector connected

2010-02-15 Thread Graham Smith
Simon,

 Stepping back a little, what happens if you plug a projector in after the
 laptop has booted and logged in?

I did try that and nothing happens, ie no signal goes to the projector.

However searching for external monitor rather than digital projector
on google and Ubuntu forums has shown many people having similar
problems, with many, like my question to the Ubuntu forum, going
unanswered.

Where it was answered many varied and complex solutions were offered,
and it seems there is a bug report for karmic filed with it hopefully
getting fixed in Lucid.

One of the simplest solutions was to install grandr which gives a
simple gui interface (Multiple Screens item gets added to System|Admin
menu) to randr, and allows manual activation of the external display.
As always the success of the offered solutions seemed to vary, and  I
haven't had an opportunity to try this out yet.


 I would
 also look at how your laptop handles displays. Most laptops would have a
 switch between LCD and CRT, which is usually an alt function of one of the
 function keys.

Its Fn+F7 on the thinkpad, but that didn't do anything, but you may be
correct about the auto detect because while I remember needing to use
this when I had Windows XP on this thinkpad I can't remember needing
it since replacing Windows with Ubuntu.

Thanks for your help, if my Multiple Screens option works I will let you know.

Graham

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Martin Jernberg

Fossdem, http://foss-sthlm.haxx.se and that Ubuntu should switch to Yahoo as 
defualt search engine but you prolly already know about that and also fuckyea!

 From: a...@popey.com
 Date: Mon, 15 Feb 2010 10:40:47 +
 To: ubuntu-uk@lists.ubuntu.com
 Subject: [ubuntu-uk] Podcast season 3
 
 From http://identi.ca/notice/22072786
 
 Season 3 Episode 1 recording tonight! Nearly 2 months since our last
 episode. Did we miss anything? Any news or events we should know
 about?
 
 -- 
 ubuntu-uk@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
 https://wiki.ubuntu.com/UKTeam/
  
_
Lagra alla dina foton på Skydrive. Det är enkelt och säkert!
http://www.skydrive.live.com-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Jamie Bennett
On 15 Feb 2010, at 10:40, Alan Pope wrote:

 From http://identi.ca/notice/22072786
 
 Season 3 Episode 1 recording tonight! Nearly 2 months since our last
 episode.

Welcome back !

Regards,
Jamie.
--
http://www.linuxuk.org




-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Karmic won't boot with digital projector connected

2010-02-15 Thread Bruno Girin
On Mon, 2010-02-15 at 10:55 +, Graham Smith wrote:
 Simon,
 
  Stepping back a little, what happens if you plug a projector in after the
  laptop has booted and logged in?
 
 I did try that and nothing happens, ie no signal goes to the projector.
 
 However searching for external monitor rather than digital projector
 on google and Ubuntu forums has shown many people having similar
 problems, with many, like my question to the Ubuntu forum, going
 unanswered.

Graham,

The way I did it last week on a ThinkPad T42 was to plug in the
projector to the VGA port, then go to System - Preferences - Display.
I will show a second monitor called Unknown and will enable you to
switch it on. It will then advise that it needs to enable something
(can't remember what, maybe randr) and will ask you to log out and log
in again. Once you log in again, the second monitor is operational, you
can set refresh rate, resolution, rotation for it and whether you want
it to mirror the laptop monitor. From that point on, it should all work
and you should then be able to enable an external monitor or projector
in a few clicks whenever you need to.

The only thing is that since I did that, I tend to have refresh
artefacts regularly but it works.

Bruno



-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Karmic won't boot with digital projector connected

2010-02-15 Thread Graham Smith
Bruno,

 The way I did it last week on a ThinkPad T42 was to plug in the
 projector to the VGA port, then go to System - Preferences - Display.
 I will show a second monitor called Unknown and will enable you to
 switch it on. It will then advise that it needs to enable something
 (can't remember what, maybe randr) and will ask you to log out and log
 in again. Once you log in again, the second monitor is operational, you
 can set refresh rate, resolution, rotation for it and whether you want
 it to mirror the laptop monitor. From that point on, it should all work
 and you should then be able to enable an external monitor or projector
 in a few clicks whenever you need to.

Thanks, that sounds promising, and seems to tie in with the grandr
option. I will try this out tomorrow.

Graham

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Steve
On Mon, 15 Feb 2010 10:40:47 -, Alan Pope a...@popey.com wrote:

 From http://identi.ca/notice/22072786

 Season 3 Episode 1 recording tonight! Nearly 2 months since our last
 episode. Did we miss anything? Any news or events we should know
 about?

The default browser in Lubuntu (The Lxde based Ubuntu variant, for low  
mem/power machines) is going to be Chromium

-- 
Steve

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Jamie Bennett

On 15 Feb 2010, at 14:19, Steve wrote:

 On Mon, 15 Feb 2010 10:40:47 -, Alan Pope a...@popey.com wrote:
 
 From http://identi.ca/notice/22072786
 
 Season 3 Episode 1 recording tonight! Nearly 2 months since our last
 episode. Did we miss anything? Any news or events we should know
 about?
 
 The default browser in Lubuntu (The Lxde based Ubuntu variant, for low  
 mem/power machines) is going to be Chromium

As is the plan for Ubuntu ARM.
 
 Steve

Regards,
Jamie.
--
http://www.linuxuk.org




-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Rob Beard
On 15/02/2010 10:40, Alan Pope wrote:
  From http://identi.ca/notice/22072786

 Season 3 Episode 1 recording tonight! Nearly 2 months since our last
 episode. Did we miss anything? Any news or events we should know
 about?


Not entirely Ubuntu related, but Dianne mentioned about the PacMan 25th 
Anniversary at the Museum Of Computing in Swindon sometime in May (I'm 
hoping the beginning of May so I can make it, I'm in Cornwall during 
late May).

Rob



-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Rob Beard
On 15/02/2010 14:19, Steve wrote:
 The default browser in Lubuntu (The Lxde based Ubuntu variant, for low
 mem/power machines) is going to be Chromium


Are there any plans of having an official ISO of Lubuntu with the next 
release?

Rob


-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Simon Wears
Give the Manchester Ubuntu Jam a mention, please!
https://wiki.ubuntu.com/UKTeam/ManchesterJam10-04

Cheers,
-- 
Simon Wears
http://MunkyJunky.com
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Podcast season 3

2010-02-15 Thread Steve
On Mon, 15 Feb 2010 20:21:31 -, Rob Beard r...@esdelle.co.uk wrote:

 On 15/02/2010 14:19, Steve wrote:
 The default browser in Lubuntu (The Lxde based Ubuntu variant, for low
 mem/power machines) is going to be Chromium


 Are there any plans of having an official ISO of Lubuntu with the next
 release?

 Rob

There will be Lubuntu 10.04 it won’t be LTS nor an 'offical' Ubuntu  
derivative either (hopefully a later release will be).

https://wiki.ubuntu.com/Lubuntu

I have got it to boot on 32MB of RAM :)  barely usable though.  Runs quite  
nicely on 266MHz PII with 128MB 66MHz RAM as long as you don’t get carried  
away with apps.  Looks quite pretty too.

-- 
Steve

-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Plymouth

2010-02-15 Thread Dave Hunt
Purging this has eliminated my problems with gdm logins.


Best,


Dave




-- 
Ubuntu-accessibility mailing list
Ubuntu-accessibility@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-accessibility


thunderbird

2010-02-15 Thread Mike Coulombe
Hi, will the latest thunderbird be the one you get with apt-get when lucid is 
released?
Mike.

-- 
Ubuntu-accessibility mailing list
Ubuntu-accessibility@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-accessibility


Re: gdmsetup - offering to assist / asking for direction / solution ppa

2010-02-15 Thread Sebastien Bacher
Le lundi 15 février 2010 à 17:38 +1100, Robert Ancell a écrit :
 We would like to make the utility more obviously available, or
  perhaps even take what ever steps are necessary to offer it into the
  standard Ubuntu distribution channels (perhaps for Lucid?). 

Hi,

Let me start by saying you did great work on this tools. Robert has
replied to your question already but I've some extra ones for you.

Do you plan to contribute some of the options you worked back to the
official gdmsetup utility (the one shipped with Ubuntu)? There is a
specification on
https://blueprints.launchpad.net/ubuntu/+spec/desktop-lucid-gdmsetup
which summarize what was discussed at UDS.
While your tools is nice and will probably benefit many users it would
be even nicer to have common options in the default installation.

One another option would be to consider shipping your tools by default.
We are trying to move away from running graphical interface under gksudo
though so it would be nicer if you would use policykit there. Do you
have any plan for that? The number of options and the tool complexity
would also need to be discussed if we were going to do that. 
It could make sense to keep two different tools though, a simple one
with the most common options in the default set and one with all the
options listed which users who want extra settings access could install.


--
Sebastien Bacher


-- 
ubuntu-desktop mailing list
ubuntu-desktop@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-desktop


Fwd: Re: [Bug 521823] Re: Comments would make translations easier

2010-02-15 Thread Moritz Baumann
Hi everyone,

I just filed a bug report against upstart, asking for comments which would help 
me translate difficult strings. I was told that it'd be my responsibility to 
take a look at the source code if the context was unclear.

I always thought it'd be the developer's responsibility to ensure the 
application is translatable. Apart from the fact that most translators 
probably don't know much C, looking everything up in the source code is not 
part of our normal workflow.

Is there any guideline I can refer to or am I wrong?

Regards,
Moritz

--  Weitergeleitete Nachricht  --

Betreff: Re: [Bug 521823] Re: Comments would make translations easier
Datum: Montag, 15. Februar 2010, 17:13:22
Von: Scott James Remnant sc...@canonical.com
An: flamin...@online.de

On Mon, 2010-02-15 at 15:50 +, Moritz Baumann wrote:

 To name some examples:
 
 stop, start, respawn, pre-start, etc.: Should they even be 
translatable? Context?
 
So go look at the context then.

The source is full of documentation about what these mean.

 Failed to spawn %s %s process: %s: What is missing here?
 
Look at the code?

/* Return non-temporary error condition */
nih_warn (_(Failed to spawn %s %s process: %s),
  job_name (job), process_name (process),
  err-message);

This makes it very clear that those are a job name, a process name and
the error message.

 Of course it's the translators job to look up the terminology and what
 the program does, but then the rest should be self-explanatory. So
 whenever the context is not clear if you only see the string, please
 give us a hint.
 
I'm not interested in doing that; you're not expected to be able to
translate by only seeing the strings - you're expected to read the
context as well - that's why you have the filename and line number.

 status invalid

Scott
-- 
Have you ever, ever felt like this?
Had strange things happen?  Are you going round the twist?


** Changed in: upstart
   Status: Incomplete = Invalid

-- 
Comments would make translations easier
https://bugs.launchpad.net/bugs/521823
You received this bug notification because you are a direct subscriber
of the bug.

Status in Upstart: Invalid

Bug description:
I'm currently trying to translate upstart into German. Since it is impossible 
to find most strings using upstart (everything which hasn't got anything to 
do with command line utilities like shutdown), some strings cannot be properly 
translated without taking a look at the source code, esp. those containing 
placeholders. Comments would definitely help a lot here!

To unsubscribe from this bug, go to:
https://bugs.launchpad.net/upstart/+bug/521823/+subscribe

-

-- 
ubuntu-translators mailing list
ubuntu-translators@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-translators


Re: Fwd: Re: [Bug 521823] Re: Comments would make translations easier

2010-02-15 Thread David Planella
Hi Moritz,

Thanks for letting us know about this bug.

El dl 15 de 02 de 2010 a les 17:36 +0100, en/na Moritz Baumann va
escriure:
 Hi everyone,
 
 I just filed a bug report against upstart, asking for comments which would 
 help 
 me translate difficult strings. I was told that it'd be my responsibility to 
 take a look at the source code if the context was unclear.
 
 I always thought it'd be the developer's responsibility to ensure the 
 application is translatable. Apart from the fact that most translators 
 probably don't know much C, looking everything up in the source code is not 
 part of our normal workflow.
 
 Is there any guideline I can refer to or am I wrong?

You've done the right thing and you are absolutely right in your
assumptions, so don't worry.

I've now commented on the bug. Let's try to move forward and get it from
there.

Thanks!

Regards,
David.

-- 
David Planella
Ubuntu Translations Coordinator
david(dot)planella(at)ubuntu(dot)com
www.ubuntu.com





signature.asc
Description: Això és una part d'un missatge signada digitalment
-- 
ubuntu-translators mailing list
ubuntu-translators@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-translators


[Ubuntu-PH] Tutorial Series - Translate projects using Launchpad (Take 2!)

2010-02-15 Thread Dax Solomon Umaming
Hi again,

Since only a few people attended the Saturday session last week, I'd
like to ask if you want a take 2 on this subject.

Feedback anyone?

Thanks
-- 
Dax Solomon Umaming
http://blog.knightlust.com/

-- 
ubuntu-ph mailing list
ubuntu-ph@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ph


[Ubuntu-BR] Instalação do Certificado A3

2010-02-15 Thread Jean Pierre Jochen
Bom dia pessoal,

Foi adquirido um note Philco Modelo PHN 14103, nativo com mandriva, alterei
pro ubuntu 9.04
o objetivo dessa máquina é dar suporte aos clientes com referência as novas
exigências da RFB.

instalei todas as aplicações necessárias, porém não estou conseguindo achar
na web como instalar a leitora (OmniKey) bem como seus aplicativos (gestor
do smartcad)

alguem poderia me dar uma ajuda ?

grato pela atenção

Jean Pierre Jochen

jeanjochen.wordpress.com | Skype: jean.jochen
Ubuntu User # 29173 .:. Linux User # 480201

A verdade não está nos livros de história, mas sim nos livros contábeis
-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Programa emula GPS

2010-02-15 Thread Jean Pierre Jochen
Bom dia,

Obrigado pelas dicas e atenções,
na verdade precisava achar um endereço em joinville/sc e o maps do google
apenas foi de boa ajuda...

grato pela atenção de todos

[]'s


Jean Pierre Jochen

jeanjochen.wordpress.com | Skype: jean.jochen
Ubuntu User # 29173 .:. Linux User # 480201

A verdade não está nos livros de história, mas sim nos livros contábeis
-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


[Ubuntu-BR] Videos Karmic

2010-02-15 Thread cafrj
Galera, tenho um note com video ATI X1300. Nao e la essas coisas, mas da 
pro gasto...Tenho muitos filmes em AVI e RMVB, mas noto que quando os 
executo no totem, com compiz ativo, o mesmo da uma especie de engasgada, 
a qualidade se perde...isso e problema do totem ou do drive do ubuntu 
que nao e la essas coisas? No sistema inimigo, os videos rodam 
normalmente...

Abs,
-- 
César de Araújo
9.10 Karmic Koala
2.6.31-19-generic i686 GNU/Linux
Linux User is # 355727
Ubuntu User number is # 26536
Machine Register id 403079


-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Time de Documentação Ubuntu-BR.

2010-02-15 Thread Zandre Bran
2010/2/15 André Gondim andre.gon...@gmail.com:
 Olá Zandre,

Ôlas Gondim, obrigado por responder.

 As reuniões sempre são abertas, e caso seja necessário é passado a quem
 assim desejar expor, explicar, se fazer presente de alguma maneira, então
 todos têm direito de participar. Para ver o horário, data e o que será
 discutido, veja em:

 http://wiki.ubuntu-br.org/Conselho/Agenda

Estarei lá como ouvinte ;)

 Abraço,
 André Gondim

- []s
- Zandre.

:: zandrebran.homelinux.org

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO

2010-02-15 Thread Frederico Barnard Ferreira
Impedir acesso ao disco C, isso só aconteceu uma vez comigo, quando 
usava o Avira e, por ser uma versão desatualizada, ele reconhecia um 
arquivo que veio por atualização da MS como vírus.

Para evitar vírus de pen-drive, desabilite o auto-executar (como estou 
no linux agora, não posso te dizer ao certo, mas uma pesquisada rápida 
no google resovle).

Fora isso, se é um vírus simples, qualquer anti-vírus resolve.
Agora, por ignorância minha, nunca ouvi falar de um vírus que infectasse 
executáveis. Já vi os que deletavam, mas nunca se misturar no código.

Espero que você consiga resolver o seu problema.

Boa sorte e []'s

Ribamar Costa wrote:
 Eh caro Frederico, essa seria a coisa mais fácil, mas não é o mais
 produtivo, como eu posso apagar um vírus que infectou por exemplo o
 explorer.exe - Aplicativo navegador de arquivos do windows?  ou se está
 dentro do winword.exe ou de msexcel.exe???
 Formatar é o último caso mesmo.
 Mas sei que ele é um vírus de inicialização que geralmente entra pelo
 autorun de pendrives e outros discos removíveis, depois ele se alastra pelos
 executáveis do sistema.  Uma de suas características é impedir o acesso ao
 disco c:
 Mas vou continuar pesquisando, obrigado a todos!

 Em 14 de fevereiro de 2010 13:01, Frederico Ferreira
 frederic...@gmail.comescreveu:

   
 O jeito mais fácil para remover:
 Acesse o disco do Windows pelo linux, como root, e apague eles (na mão
 mesmo).
 Não precisa de anti-virus.
 Eu só tenho um pra procurar por vírus, quando uso muito o windows (o que
 tem
 se tornado uma raridade).

 []`s

 Em 14 de fevereiro de 2010 07:50, Ribamar Costa lide...@ig.com.br
 
 escreveu:
   
 Sei ele aparece no raiz do disco e dentro de quaisquer arquivos
   
 executáveis
 
 (*.exe) do sistema.

 Em 14 de fevereiro de 2010 12:25, crbr...@gmail.com escreveu:

   
 Ribamar, sabes onde está esse arquivo dentro da partição Windows?

 CR

 Em 14 de fevereiro de 2010 07:50, Jose Ribamar lide...@gmail.com
 escreveu:

 
 Pessoal, peguei um vírus de inicialização na minha particção windows
 tel.xls.exe e estou tendo dificuldades de acabar com ele.  Jah
 instalei o ClamTK, mas o máximo que ele faz é colocar os arquivos
 infectados em quarentena, isso na prática não resolve porque ao usar
   
 o
 
 windows os vírus continuam lá... :-(  Tentei intalar o AVG-for-LINUX,
 mas na hora da instalação ele tá dando um erro de PIPE QUEBRADO
 Confesso que não sei do que se trata e por isso queria receber
 sugestões de como acabar de vez com esse maldito vírus.
 Detalhe:  Não me sugiram excluir a partição windows, pois ainda ganho
 algum dindin dando suporte básico aos usuários do sistema :-D
 Obrigado!
 --

 http://diariodeumleiturista.wordpress.com
 Ser culto, para ser livre!

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

   

 --
 Guardar ressentimentos é como tomar veneno e esperar que a outra
 
 pessoa
 
 morra - William Shakespeare (1564-1616)

 CARLOS E YARA RIBEIRO
 São Luís - Maranhão - Brasil
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

 

 --
 http://diariodeumleiturista.wordpress.com
 --
  Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

   

 --
 Att
 Frederico Ferreira
 (21) 8714-1445
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

 



   

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] restaurar firefox

2010-02-15 Thread Frederico Barnard Ferreira
Isso aconteceu comigo!
Chega até a ser engraçado.

Não se preocupe, seu FF não quebrou, apenas os complementos são para a 
versão 3.5 e como você usa a 3.6, não irão funcionar.

Para restaurar o FF:
- sudo aptitude remove firefox (não sei se o pacote é esse, mas acredito 
que seja)

Depois vá em: Sistema - Administração - Canais de Software
Lá procure pelo repositório mozillateam e desmarque/remova ele.

Depois reinstale o FF:
- sudo aptitude update
- sudo aptitude install firefox

Espero não ter esquecido de nenhum passo.

[]'s

Paulo Horácio wrote:
 tentei atualizar o firefox para versao 3.6 adicionando o seguinte
 repositorio:

 sudo add-apt-repository ppa:mozillateam/firefox-stable  sudo aptitude
 update

 Acontece que meu FF zuou geral: os complementos nao funcionam, os temas
 muito menos, as fontes estao todas serrilhadas (acentuaçao das palavras
 tambem nao funciona mais nele)... nao sei nem por onde começar para
 restaurar pois sequer consigo acessar os menus pois eu usava a extensao
 HideMenu e o Alt que fazia aparecer os menus nao funciona.

 Ao adicionar o repoistório eu fui pelo gerenciador de atualizações, e lá
 indicava a vers/ao 3.5. A questão é que meu FF zuou geral!!!

 Como posso fazer para restaurar a versao anterior 3.5.7 com todos os plungis
 e temas funcionando, ou pelo menos conseguir acessar os complementos do meu
 ff que não consigo acessar os menus para ver que situação estão os addons?
   

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] gerar lista com nomes de pastas e subpastas

2010-02-15 Thread Frederico Barnard Ferreira
Tiago,

é isso mesmo que você disse. Só tomando cuidado para incluir o  
lista.txt ou  lista.html pois isso joga a saida do comando no 
arquivo (sem aspas).

[]'s

Tiago Dib wrote:
 Olá tenta entrar no shell e fazer o seguinte comando:

 - Primeiro entre na pasta que você quer listar *cd /nomepasta*

 - Depois rode o comando abaixo:

 *ls -alR | grep ^d  lista.txt*

 -ou pode se feito assim também:

 *ls -R --format single-column  lista2.txt*

 A diferença do comando 1 para o comando 2 é que o último lista os arquivos e
 o primeiro somente as pastas e subpastas.

 Sinceramente nunca tive necessidade de fazer isso, então eu acredito que
 isso não esteja completamente correto, mas deve estar próximo do que você
 procura, ai é consultar o man do ls para verificar como ordenar a lista de
 forma mais adequada as suas necessidades.

 Espero ter ajudado.

 Abraços

 Tiago Dib.


 Em 14 de fevereiro de 2010 21:16, Paulo Horácio horacl...@gmail.comescreveu:

   
 Como faço para gerar uma lista simples em txt ou html contendo apenas o
 nome
 das pastas e subpastas de um determinado local do disco pelo ubuntu 9.10?
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

 



   

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Videos Karmic

2010-02-15 Thread Frederico Barnard Ferreira
Você instalou todos os codecs?
Se sim, tente vizualisar com o smplayer ou vlc
(sudo aptitude install smplayer vlc)

[]'s

cafrj wrote:
 Galera, tenho um note com video ATI X1300. Nao e la essas coisas, mas da 
 pro gasto...Tenho muitos filmes em AVI e RMVB, mas noto que quando os 
 executo no totem, com compiz ativo, o mesmo da uma especie de engasgada, 
 a qualidade se perde...isso e problema do totem ou do drive do ubuntu 
 que nao e la essas coisas? No sistema inimigo, os videos rodam 
 normalmente...

 Abs,
   

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO

2010-02-15 Thread Robertson Gomes Reis
Frederico,

Alguns virus infectam sim executáveis, na verdade nao é que eles se
misturam ao código, na verdade é adicionado um parametro no cabeçalho
que antes de executar o aplicativo, ele executa o executavel do virus
(em qualquer lugar do disco), após isto ele retorna e abre o aplicativo
em questao..

Sem o Virus
|---|
| Cabeçalho   | Aplicativo  |
|---|

Com o Virus

|---|
| Link para Virus,Cabeçalho | Aplicativo |
|---|

A grosso modo é assim que alguns virus agem.

O Problema é que mesmo o anti-virus detectando e eliminado este virus, o
que ele faz:

Remove o executavel do virus e remove a modificacao feita no cabeçalho
dos arquivos infectados

O problema é que após mexer nestes cabeçalhos e desinfectados,
dificilmente eles voltam a ser os mesmos e acabam causando
frequentemente varios erros no sistema, levando o usuario a formatar o
computador.

Ribamar,

O Norton Anti-Virus costuma ser eficiente nestas remoções, tente roda-lo
e veja como se comporta o sistema depois.

Abraços


Bob Reis
Gestão de Infra-estrutura de TI
Construtivo.com do Brasil Ltda.
rr...@construtivo.com
F. 11 3044-2520
C. 11 8965-4795

LPI-1 Certified - LPI ID: LPI000194913 
 (Verification Code: mt6736rtgd)
Novell CNA Certified - Registry ID: 10110737 

 Mensagem original 
De: Frederico Barnard Ferreira frederic...@gmail.com
Reply-to: Lista de discussão do LoCoTeam Brasileiro
ubuntu-br@lists.ubuntu.com
Para: Lista de discussão do LoCoTeam Brasileiro
ubuntu-br@lists.ubuntu.com
Assunto: Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO
Data: Mon, 15 Feb 2010 10:59:00 -0200


Impedir acesso ao disco C, isso só aconteceu uma vez comigo, quando 
usava o Avira e, por ser uma versão desatualizada, ele reconhecia um 
arquivo que veio por atualização da MS como vírus.

Para evitar vírus de pen-drive, desabilite o auto-executar (como estou 
no linux agora, não posso te dizer ao certo, mas uma pesquisada rápida 
no google resovle).

Fora isso, se é um vírus simples, qualquer anti-vírus resolve.
Agora, por ignorância minha, nunca ouvi falar de um vírus que infectasse 
executáveis. Já vi os que deletavam, mas nunca se misturar no código.

Espero que você consiga resolver o seu problema.

Boa sorte e []'s

Ribamar Costa wrote:
 Eh caro Frederico, essa seria a coisa mais fácil, mas não é o mais
 produtivo, como eu posso apagar um vírus que infectou por exemplo o
 explorer.exe - Aplicativo navegador de arquivos do windows?  ou se está
 dentro do winword.exe ou de msexcel.exe???
 Formatar é o último caso mesmo.
 Mas sei que ele é um vírus de inicialização que geralmente entra pelo
 autorun de pendrives e outros discos removíveis, depois ele se alastra pelos
 executáveis do sistema.  Uma de suas características é impedir o acesso ao
 disco c:
 Mas vou continuar pesquisando, obrigado a todos!

 Em 14 de fevereiro de 2010 13:01, Frederico Ferreira
 frederic...@gmail.comescreveu:

   
 O jeito mais fácil para remover:
 Acesse o disco do Windows pelo linux, como root, e apague eles (na mão
 mesmo).
 Não precisa de anti-virus.
 Eu só tenho um pra procurar por vírus, quando uso muito o windows (o que
 tem
 se tornado uma raridade).

 []`s

 Em 14 de fevereiro de 2010 07:50, Ribamar Costa lide...@ig.com.br
 
 escreveu:
   
 Sei ele aparece no raiz do disco e dentro de quaisquer arquivos
   
 executáveis
 
 (*.exe) do sistema.

 Em 14 de fevereiro de 2010 12:25, crbr...@gmail.com escreveu:

   
 Ribamar, sabes onde está esse arquivo dentro da partição Windows?

 CR

 Em 14 de fevereiro de 2010 07:50, Jose Ribamar lide...@gmail.com
 escreveu:

 
 Pessoal, peguei um vírus de inicialização na minha particção windows
 tel.xls.exe e estou tendo dificuldades de acabar com ele.  Jah
 instalei o ClamTK, mas o máximo que ele faz é colocar os arquivos
 infectados em quarentena, isso na prática não resolve porque ao usar
   
 o
 
 windows os vírus continuam lá... :-(  Tentei intalar o AVG-for-LINUX,
 mas na hora da instalação ele tá dando um erro de PIPE QUEBRADO
 Confesso que não sei do que se trata e por isso queria receber
 sugestões de como acabar de vez com esse maldito vírus.
 Detalhe:  Não me sugiram excluir a partição windows, pois ainda ganho
 algum dindin dando suporte básico aos usuários do sistema :-D
 Obrigado!
 --

 http://diariodeumleiturista.wordpress.com
 Ser culto, para ser livre!

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

   

 --
 Guardar ressentimentos é como tomar veneno e esperar que a outra
 
 pessoa
 
 morra - William Shakespeare (1564-1616)

 CARLOS E YARA 

Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO

2010-02-15 Thread Frederico Barnard Ferreira
Robertson,

muito obrigado!
Como disse, não tinha a menor idéia que isso ocorria.

Obrigado denovo!

[]'s

Robertson Gomes Reis wrote:
 Frederico,

 Alguns virus infectam sim executáveis, na verdade nao é que eles se
 misturam ao código, na verdade é adicionado um parametro no cabeçalho
 que antes de executar o aplicativo, ele executa o executavel do virus
 (em qualquer lugar do disco), após isto ele retorna e abre o aplicativo
 em questao..

 Sem o Virus
 |---|
 | Cabeçalho   | Aplicativo  |
 |---|

 Com o Virus

 |---|
 | Link para Virus,Cabeçalho | Aplicativo |
 |---|

 A grosso modo é assim que alguns virus agem.

 O Problema é que mesmo o anti-virus detectando e eliminado este virus, o
 que ele faz:

 Remove o executavel do virus e remove a modificacao feita no cabeçalho
 dos arquivos infectados

 O problema é que após mexer nestes cabeçalhos e desinfectados,
 dificilmente eles voltam a ser os mesmos e acabam causando
 frequentemente varios erros no sistema, levando o usuario a formatar o
 computador.

 Ribamar,

 O Norton Anti-Virus costuma ser eficiente nestas remoções, tente roda-lo
 e veja como se comporta o sistema depois.

 Abraços


 Bob Reis
 Gestão de Infra-estrutura de TI
 Construtivo.com do Brasil Ltda.
 rr...@construtivo.com
 F. 11 3044-2520
 C. 11 8965-4795
 
 LPI-1 Certified - LPI ID: LPI000194913 
  (Verification Code: mt6736rtgd)
 Novell CNA Certified - Registry ID: 10110737 

  Mensagem original 
 De: Frederico Barnard Ferreira frederic...@gmail.com
 Reply-to: Lista de discussão do LoCoTeam Brasileiro
 ubuntu-br@lists.ubuntu.com
 Para: Lista de discussão do LoCoTeam Brasileiro
 ubuntu-br@lists.ubuntu.com
 Assunto: Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO
 Data: Mon, 15 Feb 2010 10:59:00 -0200


 Impedir acesso ao disco C, isso só aconteceu uma vez comigo, quando 
 usava o Avira e, por ser uma versão desatualizada, ele reconhecia um 
 arquivo que veio por atualização da MS como vírus.

 Para evitar vírus de pen-drive, desabilite o auto-executar (como estou 
 no linux agora, não posso te dizer ao certo, mas uma pesquisada rápida 
 no google resovle).

 Fora isso, se é um vírus simples, qualquer anti-vírus resolve.
 Agora, por ignorância minha, nunca ouvi falar de um vírus que infectasse 
 executáveis. Já vi os que deletavam, mas nunca se misturar no código.

 Espero que você consiga resolver o seu problema.

 Boa sorte e []'s

 Ribamar Costa wrote:
   
 Eh caro Frederico, essa seria a coisa mais fácil, mas não é o mais
 produtivo, como eu posso apagar um vírus que infectou por exemplo o
 explorer.exe - Aplicativo navegador de arquivos do windows?  ou se está
 dentro do winword.exe ou de msexcel.exe???
 Formatar é o último caso mesmo.
 Mas sei que ele é um vírus de inicialização que geralmente entra pelo
 autorun de pendrives e outros discos removíveis, depois ele se alastra pelos
 executáveis do sistema.  Uma de suas características é impedir o acesso ao
 disco c:
 Mas vou continuar pesquisando, obrigado a todos!

 Em 14 de fevereiro de 2010 13:01, Frederico Ferreira
 frederic...@gmail.comescreveu:

   
 
 O jeito mais fácil para remover:
 Acesse o disco do Windows pelo linux, como root, e apague eles (na mão
 mesmo).
 Não precisa de anti-virus.
 Eu só tenho um pra procurar por vírus, quando uso muito o windows (o que
 tem
 se tornado uma raridade).

 []`s

 Em 14 de fevereiro de 2010 07:50, Ribamar Costa lide...@ig.com.br
 
   
 escreveu:
   
 Sei ele aparece no raiz do disco e dentro de quaisquer arquivos
   
 
 executáveis
 
   
 (*.exe) do sistema.

 Em 14 de fevereiro de 2010 12:25, crbr...@gmail.com escreveu:

   
 
 Ribamar, sabes onde está esse arquivo dentro da partição Windows?

 CR

 Em 14 de fevereiro de 2010 07:50, Jose Ribamar lide...@gmail.com
 escreveu:

 
   
 Pessoal, peguei um vírus de inicialização na minha particção windows
 tel.xls.exe e estou tendo dificuldades de acabar com ele.  Jah
 instalei o ClamTK, mas o máximo que ele faz é colocar os arquivos
 infectados em quarentena, isso na prática não resolve porque ao usar
   
 
 o
 
   
 windows os vírus continuam lá... :-(  Tentei intalar o AVG-for-LINUX,
 mas na hora da instalação ele tá dando um erro de PIPE QUEBRADO
 Confesso que não sei do que se trata e por isso queria receber
 sugestões de como acabar de vez com esse maldito vírus.
 Detalhe:  Não me sugiram excluir a partição windows, pois ainda ganho
 algum dindin dando suporte básico aos usuários do sistema :-D
 Obrigado!
 --

 http://diariodeumleiturista.wordpress.com
 Ser culto, para ser livre!

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu 

[Ubuntu-BR] VPN entre Ubuntu 9.10 e Windows Server 2003

2010-02-15 Thread Aldo Lisboa
Bom dia companheiros,

Seguinte, configurei um servidor VPN no Windows Server 2003 numa empresa 
de contabilidade para que alguns usuários possam trabalhar remotamente 
alimentando o banco de dados da aplicação contabil, tudo isso funciona 
perfeitamente no ambiente Micro$oft.

No Ubuntu, para fins de manutenção do servidor, imaginei o seguinte 
cenário, conectar ao túnel e chamar a área de trabalho via rdesktop.
Instalei os seguintes pacotes:
network-manager-vpnc
network-manager-pptp

Criei uma nova conexão VPN e setei a mesma com os respectivos nome de 
usuário, senha e gateway do servidor Micro$oft.

O problema é: quando tento me conectar, aparece a seguinte mensagem de 
erro: A conexão VPN Empresa falhou.

Onde errei?

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


[Ubuntu-BR] Ubuntu ou Windows7 ? Nem precisa pensar...

2010-02-15 Thread Renato Alvim
http://pcworld.uol.com.br/dicas/2010/02/14/windows-7-rc-comeca-a-emitir-mensagens-de-desligamento-1/

-- 
[]´s
--
Renato Alvim - Rio de Janeiro - RJ - OM8 32.375 (Ordem dos Músicos)- -
Budista - Nam-Myoho-Rengue-Kyo
Blog :  http://renatoalvim.blogs.sapo.pt
Sítio : :www.ralvim.com -  Youtube : http://www.youtube.com/user/ralvim27
http://musicapopular.ning.com/
--

Sent from Rio De Janeiro, RJ, Brazil
-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] VPN entre Ubuntu 9.10 e Windows Server 2003

2010-02-15 Thread André Gondim
Olá Aldo,

Eu tive esse problema, às vezes funciona instalar o network-manager-dev,
tenta.

Abraços e boa sorte,
-
André Gondim
E-mail: andregon...@ubuntu.com
Blog: http://andregondim.eti.br
OpenPGP keys: C9721403
-


2010/2/15 Aldo Lisboa aldo.lis...@gmail.com

 Bom dia companheiros,

 Seguinte, configurei um servidor VPN no Windows Server 2003 numa empresa
 de contabilidade para que alguns usuários possam trabalhar remotamente
 alimentando o banco de dados da aplicação contabil, tudo isso funciona
 perfeitamente no ambiente Micro$oft.

 No Ubuntu, para fins de manutenção do servidor, imaginei o seguinte
 cenário, conectar ao túnel e chamar a área de trabalho via rdesktop.
 Instalei os seguintes pacotes:
 network-manager-vpnc
 network-manager-pptp

 Criei uma nova conexão VPN e setei a mesma com os respectivos nome de
 usuário, senha e gateway do servidor Micro$oft.

 O problema é: quando tento me conectar, aparece a seguinte mensagem de
 erro: A conexão VPN Empresa falhou.

 Onde errei?

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] VPN entre Ubuntu 9.10 e Windows Server 2003

2010-02-15 Thread Dirlei Friedrich
Olá Aldo,
tbém tive este problema, o link abaixo te ajuda.

https://lists.ubuntu.com/archives/ubuntu-br/2010-January/068203.html

boa sorte.

Em 15/2/2010 15:09, André Gondim escreveu:
 Olá Aldo,

 Eu tive esse problema, às vezes funciona instalar o network-manager-dev,
 tenta.

 Abraços e boa sorte,
 -
 André Gondim
 E-mail: andregon...@ubuntu.com
 Blog: http://andregondim.eti.br
 OpenPGP keys: C9721403
 -


 2010/2/15 Aldo Lisboaaldo.lis...@gmail.com


 Bom dia companheiros,

 Seguinte, configurei um servidor VPN no Windows Server 2003 numa empresa
 de contabilidade para que alguns usuários possam trabalhar remotamente
 alimentando o banco de dados da aplicação contabil, tudo isso funciona
 perfeitamente no ambiente Micro$oft.

 No Ubuntu, para fins de manutenção do servidor, imaginei o seguinte
 cenário, conectar ao túnel e chamar a área de trabalho via rdesktop.
 Instalei os seguintes pacotes:
 network-manager-vpnc
 network-manager-pptp

 Criei uma nova conexão VPN e setei a mesma com os respectivos nome de
 usuário, senha e gateway do servidor Micro$oft.

 O problema é: quando tento me conectar, aparece a seguinte mensagem de
 erro: A conexão VPN Empresa falhou.

 Onde errei?

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

  

-- 
[]'s
Dirlei Friedrich
dfls.eti...@gmail.com
---
Contrário à crença popular, o Linux é amigável.
O que acontece é que ele é muito seletivo quanto as
amizades que faz.
adaptado da citação de Tollef Fog Henn


-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


[Ubuntu-BR] comando que lista logins anteriores

2010-02-15 Thread Pa downloads
Olá, gostaria de saber quel é o comando que lista logins anteriores (data e
hora). Tanto para root ou usuários.

Obrigada
-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] comando que lista logins anteriores

2010-02-15 Thread Allan Carvalho
Já tentou o *last*??

Em 15 de fevereiro de 2010 17:21, Pa downloads
pa.downlo...@gmail.com escreveu:
 Olá, gostaria de saber quel é o comando que lista logins anteriores (data e
 hora). Tanto para root ou usuários.

 Obrigada
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] gerar lista com nomes de pastas e subpastas

2010-02-15 Thread Welington R. Braga
Outra alternativa além da já apresentada seria usando o comando find.

find . -type d -ls lista.txt

Ao invés de -ls você pode usar o -print ou suas variações com a
formatação especifica para o seu caso, exibindo apenas os atributos
que te interessar.


Em 14 de fevereiro de 2010 21:16, Paulo Horácio horacl...@gmail.com escreveu:
 Como faço para gerar uma lista simples em txt ou html contendo apenas o nome
 das pastas e subpastas de um determinado local do disco pelo ubuntu 9.10?
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br




-- 
Welington Rodrigues Braga
--
Web: http://www.welrbraga.eti.br
MSN: welrbraga[*]msn·com
Gtalk: welrbraga[*]gmail·com
Yahoo / Skype:  welrbraga
PGP Key: 0x6C7654EB
Linux User #253605

Em tudo somos atribulados, porém não angustiados; perplexos, porém
não desanimados; perseguidos, porém não desamparados; abatidos, porém
não destruídos; - 2Co 4:8,9

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


[Ubuntu-BR] Giliarde Alves Oliveira quer conversar

2010-02-15 Thread Giliarde Alves Oliveira
---
Giliarde Alves Oliveira deseja ter mais contato usando alguns dos
produtos mais interessantes do Google.

Se você já tem o Gmail ou o Google Talk, visite:
http://mail.google.com/mail/b-c7cde71898-2835778168-2c70f1209abe3b87
É necessário clicar neste link para bater papo com Giliarde Alves Oliveira.

Para obter o Gmail - uma conta de e-mail gratuita do Google com mais
de 2.800 megabytes de
armazenamento - e bater papo com Giliarde Alves Oliveira, visite:
http://mail.google.com/mail/a-c7cde71898-2835778168-2c70f1209abe3b87

O Gmail oferece:
- Mensagem instantânea diretamente do Gmail
- Proteção avançada contra spam
- Pesquisa integrada para localizar suas mensagens e uma maneira útil
de organizar os e-mails em conversas
- Apenas anúncios de texto e informações relacionadas, relevantes ao
conteúdo das suas mensagens - nenhum anúncio pop-up ou banners não
direcionados

Tudo isso, grátis! E ainda tem mais! Ao abrir uma conta do Gmail, você
também recebe acesso ao serviço de mensagem instantânea do Google, o
Google Talk:

http://www.google.com/talk/intl/pt-BR/

O Google Talk oferece:
- Bate-papo baseado na web que você pode usar em qualquer lugar, sem
precisar fazer download
- Uma lista de contatos que é sincronizada com a sua conta do Gmail
- Chamadas por voz gratuitas e de alta qualidade entre computadores
com o download do cliente Google Talk

Estamos trabalhando muito para adicionar novos recursos e fazer
melhorias e por essa razão pediremos, com frequência, seus comentários
e sugestões. Agradecemos a sua colaboração para tornar nossos produtos
ainda melhores!

Obrigado,
A Equipe do Google

Para saber mais sobre o Gmail e o Google Talk, visite:
http://mail.google.com/mail/help/intl/pt_BR/about.html
http://www.google.com/talk/intl/pt-BR/about.html

(Se clicar nos URLs desta mensagem não funcionar, copie e cole os URLs
na barra de endereços do seu navegador).

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO

2010-02-15 Thread Ribamar Costa
Eh pessoal, a solução mesmo parece morar na tal da formatação... :-(
A questão dos autorun é mesmo importante e recomendo que quem utiliza
o Windws desative essa droga e nunca, nunca nunca, insira um pendrive
ou hd-externo sem passar um inti-vírus neles.
Mais uma coisa:  Alguém tem uma sugestão de como instalar um
anti-vírus no Ubuntu que realmente funcione, obrigado por toda a
ajuda... Ahhh... ninguém comentou o que pode ser PIPE QUEBRADO
Mas mesmo assim valeu pessoal, abraços!!!

Em 15/02/10, Frederico Barnard Ferreirafrederic...@gmail.com escreveu:
 Robertson,

 muito obrigado!
 Como disse, não tinha a menor idéia que isso ocorria.

 Obrigado denovo!

 []'s

 Robertson Gomes Reis wrote:
 Frederico,

 Alguns virus infectam sim executáveis, na verdade nao é que eles se
 misturam ao código, na verdade é adicionado um parametro no cabeçalho
 que antes de executar o aplicativo, ele executa o executavel do virus
 (em qualquer lugar do disco), após isto ele retorna e abre o aplicativo
 em questao..

 Sem o Virus
 |---|
 | Cabeçalho   | Aplicativo  |
 |---|

 Com o Virus

 |---|
 | Link para Virus,Cabeçalho | Aplicativo |
 |---|

 A grosso modo é assim que alguns virus agem.

 O Problema é que mesmo o anti-virus detectando e eliminado este virus, o
 que ele faz:

 Remove o executavel do virus e remove a modificacao feita no cabeçalho
 dos arquivos infectados

 O problema é que após mexer nestes cabeçalhos e desinfectados,
 dificilmente eles voltam a ser os mesmos e acabam causando
 frequentemente varios erros no sistema, levando o usuario a formatar o
 computador.

 Ribamar,

 O Norton Anti-Virus costuma ser eficiente nestas remoções, tente roda-lo
 e veja como se comporta o sistema depois.

 Abraços


 Bob Reis
 Gestão de Infra-estrutura de TI
 Construtivo.com do Brasil Ltda.
 rr...@construtivo.com
 F. 11 3044-2520
 C. 11 8965-4795
 
 LPI-1 Certified - LPI ID: LPI000194913
  (Verification Code: mt6736rtgd)
 Novell CNA Certified - Registry ID: 10110737

  Mensagem original 
 De: Frederico Barnard Ferreira frederic...@gmail.com
 Reply-to: Lista de discussão do LoCoTeam Brasileiro
 ubuntu-br@lists.ubuntu.com
 Para: Lista de discussão do LoCoTeam Brasileiro
 ubuntu-br@lists.ubuntu.com
 Assunto: Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO
 Data: Mon, 15 Feb 2010 10:59:00 -0200


 Impedir acesso ao disco C, isso só aconteceu uma vez comigo, quando
 usava o Avira e, por ser uma versão desatualizada, ele reconhecia um
 arquivo que veio por atualização da MS como vírus.

 Para evitar vírus de pen-drive, desabilite o auto-executar (como estou
 no linux agora, não posso te dizer ao certo, mas uma pesquisada rápida
 no google resovle).

 Fora isso, se é um vírus simples, qualquer anti-vírus resolve.
 Agora, por ignorância minha, nunca ouvi falar de um vírus que infectasse
 executáveis. Já vi os que deletavam, mas nunca se misturar no código.

 Espero que você consiga resolver o seu problema.

 Boa sorte e []'s

 Ribamar Costa wrote:

 Eh caro Frederico, essa seria a coisa mais fácil, mas não é o mais
 produtivo, como eu posso apagar um vírus que infectou por exemplo o
 explorer.exe - Aplicativo navegador de arquivos do windows?  ou se
 está
 dentro do winword.exe ou de msexcel.exe???
 Formatar é o último caso mesmo.
 Mas sei que ele é um vírus de inicialização que geralmente entra pelo
 autorun de pendrives e outros discos removíveis, depois ele se alastra
 pelos
 executáveis do sistema.  Uma de suas características é impedir o acesso
 ao
 disco c:
 Mas vou continuar pesquisando, obrigado a todos!

 Em 14 de fevereiro de 2010 13:01, Frederico Ferreira
 frederic...@gmail.comescreveu:



 O jeito mais fácil para remover:
 Acesse o disco do Windows pelo linux, como root, e apague eles (na mão
 mesmo).
 Não precisa de anti-virus.
 Eu só tenho um pra procurar por vírus, quando uso muito o windows (o que
 tem
 se tornado uma raridade).

 []`s

 Em 14 de fevereiro de 2010 07:50, Ribamar Costa lide...@ig.com.br


 escreveu:

 Sei ele aparece no raiz do disco e dentro de quaisquer arquivos


 executáveis


 (*.exe) do sistema.

 Em 14 de fevereiro de 2010 12:25, crbr...@gmail.com escreveu:



 Ribamar, sabes onde está esse arquivo dentro da partição Windows?

 CR

 Em 14 de fevereiro de 2010 07:50, Jose Ribamar lide...@gmail.com
 escreveu:



 Pessoal, peguei um vírus de inicialização na minha particção windows
 tel.xls.exe e estou tendo dificuldades de acabar com ele.  Jah
 instalei o ClamTK, mas o máximo que ele faz é colocar os arquivos
 infectados em quarentena, isso na prática não resolve porque ao usar


 o


 windows os vírus continuam lá... :-(  Tentei intalar o AVG-for-LINUX,
 mas na hora da instalação ele tá dando um erro de PIPE QUEBRADO
 Confesso que 

Re: [Ubuntu-BR] gerar lista com nomes de pastas e subpastas

2010-02-15 Thread Frederico Barnard Ferreira
sudo updatedb
locate arquivo  lista.html

Acho que esse também funciona.

[]'s

Welington R. Braga wrote:
 Outra alternativa além da já apresentada seria usando o comando find.

 find . -type d -ls lista.txt

 Ao invés de -ls você pode usar o -print ou suas variações com a
 formatação especifica para o seu caso, exibindo apenas os atributos
 que te interessar.


 Em 14 de fevereiro de 2010 21:16, Paulo Horácio horacl...@gmail.com 
 escreveu:
   
 Como faço para gerar uma lista simples em txt ou html contendo apenas o nome
 das pastas e subpastas de um determinado local do disco pelo ubuntu 9.10?
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

 



   

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO

2010-02-15 Thread Frederico Barnard Ferreira
Sobre o pipe, realmente não sei o que fazer.
Sobre o Ubuntu, como disse, já usei AVG, Avira, Avast e F-Prot.
Desses, só recomendo *NÃO* usar o F-Prot. Ele me gerou um log de 30gb, 
ou seja, ficou rodando até eu mandar ele parar.

[]'s

Ribamar Costa wrote:
 Eh pessoal, a solução mesmo parece morar na tal da formatação... :-(
 A questão dos autorun é mesmo importante e recomendo que quem utiliza
 o Windws desative essa droga e nunca, nunca nunca, insira um pendrive
 ou hd-externo sem passar um inti-vírus neles.
 Mais uma coisa:  Alguém tem uma sugestão de como instalar um
 anti-vírus no Ubuntu que realmente funcione, obrigado por toda a
 ajuda... Ahhh... ninguém comentou o que pode ser PIPE QUEBRADO
 Mas mesmo assim valeu pessoal, abraços!!!

 Em 15/02/10, Frederico Barnard Ferreirafrederic...@gmail.com escreveu:
   
 Robertson,

 muito obrigado!
 Como disse, não tinha a menor idéia que isso ocorria.

 Obrigado denovo!

 []'s

 Robertson Gomes Reis wrote:
 
 Frederico,

 Alguns virus infectam sim executáveis, na verdade nao é que eles se
 misturam ao código, na verdade é adicionado um parametro no cabeçalho
 que antes de executar o aplicativo, ele executa o executavel do virus
 (em qualquer lugar do disco), após isto ele retorna e abre o aplicativo
 em questao..

 Sem o Virus
 |---|
 | Cabeçalho   | Aplicativo  |
 |---|

 Com o Virus

 |---|
 | Link para Virus,Cabeçalho | Aplicativo |
 |---|

 A grosso modo é assim que alguns virus agem.

 O Problema é que mesmo o anti-virus detectando e eliminado este virus, o
 que ele faz:

 Remove o executavel do virus e remove a modificacao feita no cabeçalho
 dos arquivos infectados

 O problema é que após mexer nestes cabeçalhos e desinfectados,
 dificilmente eles voltam a ser os mesmos e acabam causando
 frequentemente varios erros no sistema, levando o usuario a formatar o
 computador.

 Ribamar,

 O Norton Anti-Virus costuma ser eficiente nestas remoções, tente roda-lo
 e veja como se comporta o sistema depois.

 Abraços


 Bob Reis
 Gestão de Infra-estrutura de TI
 Construtivo.com do Brasil Ltda.
 rr...@construtivo.com
 F. 11 3044-2520
 C. 11 8965-4795
 
 LPI-1 Certified - LPI ID: LPI000194913
  (Verification Code: mt6736rtgd)
 Novell CNA Certified - Registry ID: 10110737

  Mensagem original 
 De: Frederico Barnard Ferreira frederic...@gmail.com
 Reply-to: Lista de discussão do LoCoTeam Brasileiro
 ubuntu-br@lists.ubuntu.com
 Para: Lista de discussão do LoCoTeam Brasileiro
 ubuntu-br@lists.ubuntu.com
 Assunto: Re: [Ubuntu-BR] Anti-vírus no Ubuntu e PIPE QUEBRADO
 Data: Mon, 15 Feb 2010 10:59:00 -0200


 Impedir acesso ao disco C, isso só aconteceu uma vez comigo, quando
 usava o Avira e, por ser uma versão desatualizada, ele reconhecia um
 arquivo que veio por atualização da MS como vírus.

 Para evitar vírus de pen-drive, desabilite o auto-executar (como estou
 no linux agora, não posso te dizer ao certo, mas uma pesquisada rápida
 no google resovle).

 Fora isso, se é um vírus simples, qualquer anti-vírus resolve.
 Agora, por ignorância minha, nunca ouvi falar de um vírus que infectasse
 executáveis. Já vi os que deletavam, mas nunca se misturar no código.

 Espero que você consiga resolver o seu problema.

 Boa sorte e []'s

 Ribamar Costa wrote:

   
 Eh caro Frederico, essa seria a coisa mais fácil, mas não é o mais
 produtivo, como eu posso apagar um vírus que infectou por exemplo o
 explorer.exe - Aplicativo navegador de arquivos do windows?  ou se
 está
 dentro do winword.exe ou de msexcel.exe???
 Formatar é o último caso mesmo.
 Mas sei que ele é um vírus de inicialização que geralmente entra pelo
 autorun de pendrives e outros discos removíveis, depois ele se alastra
 pelos
 executáveis do sistema.  Uma de suas características é impedir o acesso
 ao
 disco c:
 Mas vou continuar pesquisando, obrigado a todos!

 Em 14 de fevereiro de 2010 13:01, Frederico Ferreira
 frederic...@gmail.comescreveu:



 
 O jeito mais fácil para remover:
 Acesse o disco do Windows pelo linux, como root, e apague eles (na mão
 mesmo).
 Não precisa de anti-virus.
 Eu só tenho um pra procurar por vírus, quando uso muito o windows (o que
 tem
 se tornado uma raridade).

 []`s

 Em 14 de fevereiro de 2010 07:50, Ribamar Costa lide...@ig.com.br


   
 escreveu:

 Sei ele aparece no raiz do disco e dentro de quaisquer arquivos


 
 executáveis


   
 (*.exe) do sistema.

 Em 14 de fevereiro de 2010 12:25, crbr...@gmail.com escreveu:



 
 Ribamar, sabes onde está esse arquivo dentro da partição Windows?

 CR

 Em 14 de fevereiro de 2010 07:50, Jose Ribamar lide...@gmail.com
 escreveu:



   
 Pessoal, peguei um vírus de inicialização na minha particção 

Re: [Ubuntu-BR] comando que lista logins anteriores

2010-02-15 Thread Frederico Barnard Ferreira
finger usuário

Allan Carvalho wrote:
 Já tentou o *last*??

 Em 15 de fevereiro de 2010 17:21, Pa downloads
 pa.downlo...@gmail.com escreveu:
   
 Olá, gostaria de saber quel é o comando que lista logins anteriores (data e
 hora). Tanto para root ou usuários.

 Obrigada
 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

 

   

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] restaurar firefox

2010-02-15 Thread Zandre Bran
2010/2/15 Paulo Horácio horacl...@gmail.com:

Ôlas Horácio.

[...] Não é a primeira vez que tenho problemas em atualização de softwares no
 ubuntu, para dizer a verdade estou evitando atualizar softwares no ubuntu,
 ou pelo menos, a experiência tem me mostrado que uma atualização de software
 no ubuntu eu nunca sei o que vai acontecer depois, no win isso é basicamente
 indolor!

Huuummm. *Isto*não*é*verdade*. Veja que todas as atualizações que
disse ter problemas foram feitas do repositório Proposed e/ou de
terceiros. Então não pode dizer que as atualizações do Ubuntu lhe
causam problemas.

- []s
- Zandre.

:: zandrebran.homelinux.org

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] restaurar firefox

2010-02-15 Thread Paulo Horácio
Ora, mas acabei de contar minha experi~encia com a atualização do FF de
3.5.7 para 3.6! Tanto no Win como no Ubuntu, no primeiro foi indolor, no
segundo uma catástrofe que me fez voltar ao processo anterior!

Não sei se é repositório oficial ou não, sei que só queria fazer uma
atualização de navegador web!

Em 15 de fevereiro de 2010 19:37, Zandre Bran zandreb...@gmail.comescreveu:

 2010/2/15 Paulo Horácio horacl...@gmail.com:

Ôlas Horácio.

 [...] Não é a primeira vez que tenho problemas em atualização de softwares
 no
  ubuntu, para dizer a verdade estou evitando atualizar softwares no
 ubuntu,
  ou pelo menos, a experiência tem me mostrado que uma atualização de
 software
  no ubuntu eu nunca sei o que vai acontecer depois, no win isso é
 basicamente
  indolor!

 Huuummm. *Isto*não*é*verdade*. Veja que todas as atualizações que
 disse ter problemas foram feitas do repositório Proposed e/ou de
 terceiros. Então não pode dizer que as atualizações do Ubuntu lhe
 causam problemas.

 - []s
 - Zandre.

 :: zandrebran.homelinux.org

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


[Ubuntu-BR] OFF-TOPIC - Lista Wireless.

2010-02-15 Thread Armando Barsotini Neto
Boa Noite!

Desculpem o OFF-TOPIC, mas estou precisando assinar uma lista que discuta o
assunto WIRELESS...

Alguém conhece alguma lista sobre wireless que seja bem ativa (Estilo essa
do UBUNTU ?)

Agradeço!

Att,

Armando Barsotini Neto

Linux User # 503670
Ubuntu User # 30175
-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] restaurar firefox

2010-02-15 Thread Frederico Barnard Ferreira
Paulo,

os repositórios PPA são de teste. Quando uma versão sai, ela não é 
atualizada no repositório.
Ex: se eu não me engano, o FF 3.6, no repositório se chama Shitokiri. 
Esses nomes estranhos são só para versões em desenvolvimento.
Como complementos são feito por terceiros, a culpa não é do firefox, e 
sim das pessoas que fizeram os add-ons.

Para você ter uma idéia, aqui, o sistema está up-to-date em relação a 
Canonnical mas continuo com o 3.5.7.
O 3.6 ainda não faz parte dos repositórios, por isso, deve ser de um 
repositório de teste.

Outra coisa, se pretende atualizar como no Windows, vá no site da 
Mozilla e baixe a versão para Linux do browser, onde a Mozilla se 
encarregará das atualizações (no caso, ficaria igual ao Windows).

[]'s

Paulo Horácio wrote:
 Ora, mas acabei de contar minha experi~encia com a atualização do FF de
 3.5.7 para 3.6! Tanto no Win como no Ubuntu, no primeiro foi indolor, no
 segundo uma catástrofe que me fez voltar ao processo anterior!

 Não sei se é repositório oficial ou não, sei que só queria fazer uma
 atualização de navegador web!

 Em 15 de fevereiro de 2010 19:37, Zandre Bran zandreb...@gmail.comescreveu:

   
 2010/2/15 Paulo Horácio horacl...@gmail.com:

Ôlas Horácio.

 
 [...] Não é a primeira vez que tenho problemas em atualização de softwares
   
 no
 
 ubuntu, para dizer a verdade estou evitando atualizar softwares no
   
 ubuntu,
 
 ou pelo menos, a experiência tem me mostrado que uma atualização de
   
 software
 
 no ubuntu eu nunca sei o que vai acontecer depois, no win isso é
   
 basicamente
 
 indolor!
   
 Huuummm. *Isto*não*é*verdade*. Veja que todas as atualizações que
 disse ter problemas foram feitas do repositório Proposed e/ou de
 terceiros. Então não pode dizer que as atualizações do Ubuntu lhe
 causam problemas.

 - []s
 - Zandre.

 :: zandrebran.homelinux.org

 --
 Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

 

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] Sync com active sync MS proprietario

2010-02-15 Thread Adriano Oliveira
Vou tentar. O resultado posto aqui. Obrigado.

Em 15 de fevereiro de 2010 00:22, Bruno Correia bcorr...@gmail.comescreveu:

 Já tentou o SynCE?

 http://www.synce.org/moin/



 Adriano Oliveira escreveu:
   Não, definitivamente, não.
  Adriano
 
  Em 14 de fevereiro de 2010 13:00, Felipe Nedeff fel...@nedeff.eu
 escreveu:
 
 
  Ola Pessoal,
 
  Eu tenho uma duvida/pergunta, uso o Kubuntu 8.04 como SO no notebook
 para
  trabalhar, mas me deram uma nova incumbência, devo prepara uns terminais
 de
  radio frequencia, leitores de bar code.
 
  A minha duvida e' alguem ja tentou usar o active sync do ruindows no
 wine?
  Funciona? O meu problema nao e' sincronizar coisas, mas poder ter acesso
 a
  flash memory que tem dentro para poder fazer alteraçoes no SO que 'e
  ruindows
  CE.
 
  Ja tentei usar o virtual box com uma maquina XP, funciona +ou- e nao
 quero
  usar uma maquina virtual pra isso pq nem sempre consigo conectar ao
  terminal.
 
  Obrigado pela ajuda
 
  Felipe Nedeff
 
  --
  Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece
 
  Lista de discussão Ubuntu Brasil
  Histórico, descadastramento e outras opções:
  https://lists.ubuntu.com/mailman/listinfo/ubuntu-br
 
 


 --
  Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

 Lista de discussão Ubuntu Brasil
 Histórico, descadastramento e outras opções:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-br

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


Re: [Ubuntu-BR] restaurar firefox

2010-02-15 Thread Zandre Bran
2010/2/15 Frederico Barnard Ferreira frederic...@gmail.com:
 Paulo,

Ôlas Ferreira.

 os repositórios PPA são de teste. Quando uma versão sai, ela não é
 atualizada no repositório.

Huuummm. Para testes antes do update é utilizado o repositório
Proposed. O PPA é para qualquer um distribuir/atualizar seus pacotes
para o Ubuntu.

 []'s

- []s
- Zandre.

:: zandrebran.homelinux.org

-- 
Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece

Lista de discussão Ubuntu Brasil
Histórico, descadastramento e outras opções:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-br


[Ubuntu-be] Hobby and Computer Days in Antwerp - 20-21/02/2010 - Call for volunteer

2010-02-15 Thread Jean7491
Hi to all (Antwerp area!),

We still need at least 1 volunteer for our Ubuntu-be booth at the Hobby 
and Computer days in Antwerp on Sunday 21/02/2010, in cooperation with 
HCC regio Vlaanderen.

Volunteer ? : please announce your participation through the Mailing 
List or the Wiki :
https://wiki.ubuntu.com/BelgianTeam/ComputerFairs/Antwerp_2010-02-20_21

Hello allemaal (Antwerpen en omgeving!),

We zijn nog op zoek naar ten minste één vrijwilliger voor onze Ubuntu-be 
stand in de
Hobby en Computer Dagen te Antwerpen op Zondag 21/02/2010, in 
samenwerking met HCC regio Vlaanderen.

Vrijwilliger ? : je kan je deelneming bijvoegen in de Mailing List of in 
de Wiki:
https://wiki.ubuntu.com/BelgianTeam/ComputerFairs/Antwerp_2010-02-20_21

-- 
jean7491
Ubuntu Belgium Events Team


-- 
ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com

Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-be


Re: [Ubuntu-be] An idea for extra representations

2010-02-15 Thread Jan Claeys
Op donderdag 11-02-2010 om 09:40 uur [tijdzone +0100], schreef Lars
Blockken:
 Microsoft does give schools some free licenses and big discounts. They
 actually pay you to use their software. At my school they gave
 everyone a free upgrade to windows 7 ultimate.

I think you mean everybody paid 35 € (or something like that?) for MA3D,
which includes a free Win7 license for as long as you are a student.
(In many schools that amount is included in your tuition, so it might
seem free.)

But that doesn't mean the school gets *their* licenses for free or that
cheap though; generally they have to buy regular site licenses (although
often with some discount).


-- 
Jan Claeys


-- 
ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com

Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-be


Re: [Ubuntu-be] An idea for extra representations

2010-02-15 Thread Lars Blockken
No. Everyone who bought his laptop through the school got a free full upgrade 
too windows 7. No MA3D or anything. After you graduated you can still use it. 
It is yours. So says the EULA attached.

Lars Blockken

Op 15-feb-2010, om 18:40 heeft Jan Claeys het volgende geschreven:

 Op donderdag 11-02-2010 om 09:40 uur [tijdzone +0100], schreef Lars
 Blockken:
 Microsoft does give schools some free licenses and big discounts. They
 actually pay you to use their software. At my school they gave
 everyone a free upgrade to windows 7 ultimate.
 
 I think you mean everybody paid 35 € (or something like that?) for MA3D,
 which includes a free Win7 license for as long as you are a student.
 (In many schools that amount is included in your tuition, so it might
 seem free.)
 
 But that doesn't mean the school gets *their* licenses for free or that
 cheap though; generally they have to buy regular site licenses (although
 often with some discount).
 
 
 -- 
 Jan Claeys
 
 
 -- 
 ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com
 
 Modify settings or unsubscribe at:
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-be


-- 
ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com

Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-be


Re: [Ubuntu-be] An idea for extra representations

2010-02-15 Thread Mike Morraye
€7,5 Euro for the MA3D at avondschool.be.
(it's cheaper to follow a course than to buy the licenses) :)

On Mon, 2010-02-15 at 18:48 +0100, Lars Blockken wrote:
 No. Everyone who bought his laptop through the school got a free full upgrade 
 too windows 7. No MA3D or anything. After you graduated you can still use it. 
 It is yours. So says the EULA attached.
 
 Lars Blockken
 
 Op 15-feb-2010, om 18:40 heeft Jan Claeys het volgende geschreven:
 
  Op donderdag 11-02-2010 om 09:40 uur [tijdzone +0100], schreef Lars
  Blockken:
  Microsoft does give schools some free licenses and big discounts. They
  actually pay you to use their software. At my school they gave
  everyone a free upgrade to windows 7 ultimate.
  
  I think you mean everybody paid 35 € (or something like that?) for MA3D,
  which includes a free Win7 license for as long as you are a student.
  (In many schools that amount is included in your tuition, so it might
  seem free.)
  
  But that doesn't mean the school gets *their* licenses for free or that
  cheap though; generally they have to buy regular site licenses (although
  often with some discount).
  
  
  -- 
  Jan Claeys
  
  
  -- 
  ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com
  
  Modify settings or unsubscribe at:
  https://lists.ubuntu.com/mailman/listinfo/ubuntu-be
 
 



-- 
ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com

Modify settings or unsubscribe at:
https://lists.ubuntu.com/mailman/listinfo/ubuntu-be


Re: Пропал звук в играх...

2010-02-15 Thread Андрей Ковтун
А что говорит запуск из командной строки?

On 15.02.2010 06:32, locke314 wrote:
 Вчера обнаружил: нет звука в Openarena и Wesnoth


-- 
Andriy Kovtun

mailto: kovtu...@yandex.ru
jid: kovtu...@jabber.ru


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 12:47 пользователь Андрей Калинин
prize2s...@gmail.com написал:
 Привет all.
 Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
 и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
 координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.

Etersoft?
Плюс у них на сайте есть список партнеров
(http://www.etersoft.ru/component/option,com_wrapper/Itemid,193/)

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread XIT
http://www.linuxcenter.ru/service/

15 февраля 2010 г. 12:47 пользователь Андрей Калинин
prize2s...@gmail.comнаписал:

 Привет all.
 Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
 и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
 координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.
 --
 ubuntu-ru mailing list
 ubuntu-ru@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru




-- 
Relax, take it easy!
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Пропал звук в играх...

2010-02-15 Thread locke314
15 февраля 2010 г. 13:35 пользователь Андрей Ковтун
kovtu...@yandex.ru написал:
 А что говорит запуск из командной строки?

А ничего. В смысле, ничего необычного -- никаких ошибок или ворнингов,
и вообще ничего про звук.
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread Shinto Volokos
Город-то какой??
В Пнд, 15/02/2010 в 12:47 +0300, Андрей Калинин пишет:
 Привет all.
 Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
 и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
 координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.



-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread Dmitriy V. Zheludkov
Если у вас только контора чисто обновлять ходит - то вам она и не нужна.
1С 8 сама с инета тянет обновления и ставит. С вайном от Етерсофт
никаких проблем в принципе нет, ставится как под виндой. У меня 1С 8
упрощенка (то бишь базовая локальная) работает в целом без замечаний
таким образом.




В Пнд, 15/02/2010 в 12:51 +0300, Катраев Виталий пишет: 
 15 февраля 2010 г. 12:47 пользователь Андрей Калинин
 prize2s...@gmail.com написал:
  Привет all.
  Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
  и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
  координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.
 
 Etersoft?
 Плюс у них на сайте есть список партнеров
 (http://www.etersoft.ru/component/option,com_wrapper/Itemid,193/)
 
 -- 
 Adios...
 HaND:)
 
 br, Zawullon.
 
 mailto:zawul...@gmail.com
 jabber:zawul...@gmail.com
 icq:473256192
 http://zawullon.spb.ru/



-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Как настроить uniconvertor?

2010-02-15 Thread Shinto Volokos
Странно всё это, он и ошибок-то в вашем логе не выдаёт, т.е. программа
отрабатывает нормально, а что файл не создаётся?? Сейчас попробовал -
всё пучком, хоть и с почти таким же выводом:
kn...@developer:~/src/ananas.artel/src/lib$
uniconvertor /home/knorr/tmp/building_01.cdr /home/knorr/tmp/building_01.svg

Cannot list directory /home/knorr/.uniconvertor:[Errno 2] No such file
or directory: '/home/knorr/.uniconvertor'
ignoring it in font_path
Cannot list directory /home/knorr/.uniconvertor:[Errno 2] No such file
or directory: '/home/knorr/.uniconvertor'
ignoring it in font_path
/usr/lib/pymodules/python2.6/uniconvertor/app/utils/locale_utils.py:9:
DeprecationWarning: The popen2 module is deprecated.  Use the subprocess
module.
  from popen2 import popen2
No plugin-type information
in /usr/lib/pymodules/python2.6/uniconvertor/app/plugins/Filters/__init__.py
No plugin-type information
in /usr/lib/pymodules/python2.6/uniconvertor/app/plugins/Filters/__init__.py
kn...@developer:~/src/ananas.artel/src/lib$
ls /home/knorr/tmp/building_01.svg 
/home/knorr/tmp/building_01.svg

В Пнд, 15/02/2010 в 03:37 +, James Brown пишет:
 Задача - заставить его конвертировать файлы, созданные под CorelDrawn
 (формат .cdr) в что-то читабельное для OOo
 Вроде по ману все должно получаться, по крайней мере в .svg или в  .pdf
 должно конвертить простой командой:
 uniconvertor file.cdr file.svg[pgf, etc.].
 
 Однако результат такой:
 u...@host:~$ uniconvertor верх.cdr верх.svg
 Cannot list directory /home/user/.uniconvertor:[Errno 2] No such file or
 directory: '/home/user/.uniconvertor'
 ignoring it in font_path
 Cannot list directory /home/user/.uniconvertor:[Errno 2] No such file or
 directory: '/home/user/.uniconvertor'
 ignoring it in font_path
 /usr/lib/pymodules/python2.6/uniconvertor/app/utils/locale_utils.py:9:
 DeprecationWarning: The popen2 module is deprecated.  Use the subprocess
 module.
   from popen2 import popen2
 No plugin-type information in
 /usr/lib/pymodules/python2.6/uniconvertor/app/plugins/Filters/__init__.py
 No plugin-type information in
 /usr/lib/pymodules/python2.6/uniconvertor/app/plugins/Filters/__init__.py
 u...@host:~$ uniconvertor верх.cdr верх.pdf
 Cannot list directory /home/user/.uniconvertor:[Errno 2] No such file or
 directory: '/home/user/.uniconvertor'
 ignoring it in font_path
 Cannot list directory /home/user/.uniconvertor:[Errno 2] No such file or
 directory: '/home/user/.uniconvertor'
 ignoring it in font_path
 /usr/lib/pymodules/python2.6/uniconvertor/app/utils/locale_utils.py:9:
 DeprecationWarning: The popen2 module is deprecated.  Use the subprocess
 module.
   from popen2 import popen2
 No plugin-type information in
 /usr/lib/pymodules/python2.6/uniconvertor/app/plugins/Filters/__init__.py
 No plugin-type information in
 /usr/lib/pymodules/python2.6/uniconvertor/app/plugins/Filters/__init__.py
 
 
 Как сие побороть?
 
 



-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread Андрей Калинин
Нужна именно франчайзинговая контора, чтобы поддержкой занималась, ну
и изменения в конфигурацию вносила иногда.

15 февраля 2010 г. 12:51 пользователь XIT xolo...@gmail.com написал:
 http://www.linuxcenter.ru/service/

 15 февраля 2010 г. 12:47 пользователь Андрей Калинин prize2s...@gmail.com
 написал:

 Привет all.
 Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
 и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
 координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.
 --
 ubuntu-ru mailing list
 ubuntu-ru@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru



 --
 Relax, take it easy!

 --
 ubuntu-ru mailing list
 ubuntu-ru@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread Андрей Калинин
Default city

15 февраля 2010 г. 13:56 пользователь Shinto Volokos
a.volo...@gmail.com написал:
 Город-то какой??
 В Пнд, 15/02/2010 в 12:47 +0300, Андрей Калинин пишет:
 Привет all.
 Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
 и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
 координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.



 --
 ubuntu-ru mailing list
 ubuntu-ru@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Dmitry Glazov
Катраев Виталий пишет:
 Всем привет.
 Может, у кого-нибудь есть информация о том, почему последнюю неделю не
 работают репозитории Google (http://dl.google.com/linux/deb)?
 Насколько я понял, с репами для rpm тоже самое.
 

Лучше бы они и не работали. :-(
поставил последний хром, матюкался, когда апдейт уже шел...
НА какой половой орган для хрома стало важно буил-есенцеале, почтовый 
сервер, конвертер алиен, и прочее?
Что, гугля решила спам сеть свою построить, что ли?







-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 15:32 пользователь Dmitry Glazov dyug...@gmail.com написал:
 Катраев Виталий пишет:
 Может, у кого-нибудь есть информация о том, почему последнюю неделю не
 работают репозитории Google (http://dl.google.com/linux/deb)?
 Лучше бы они и не работали. :-(

Они у мну заработали, но как-то криво. Список пакетов грузится минут
5, а сами пакеты практически мгновенно.

 поставил последний хром, матюкался, когда апдейт уже шел...
 НА какой половой орган для хрома стало важно буил-есенцеале, почтовый
 сервер, конвертер алиен, и прочее?

Ппц. Ты уверен, что это был именно Chrome? Дома проверю...

 Что, гугля решила спам сеть свою построить, что ли?

Поздравляю, теперь ты - облако-зомби ;)

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Dmitry Glazov
Катраев Виталий пишет:
 15 февраля 2010 г. 15:32 пользователь Dmitry Glazov dyug...@gmail.com 
 написал:
 Катраев Виталий пишет:
 Может, у кого-нибудь есть информация о том, почему последнюю неделю не
 работают репозитории Google (http://dl.google.com/linux/deb)?
 Лучше бы они и не работали. :-(
 
 Они у мну заработали, но как-то криво. Список пакетов грузится минут
 5, а сами пакеты практически мгновенно.
 
 поставил последний хром, матюкался, когда апдейт уже шел...
 НА какой половой орган для хрома стало важно буил-есенцеале, почтовый
 сервер, конвертер алиен, и прочее?
 
 Ппц. Ты уверен, что это был именно Chrome? Дома проверю...

Ага, на ноуте проверил. :-(
попытка поставить новую версию хрома приводит к затягиванию lsb с 
компиятором, build-essenceale, алиеном, постфиксом, и маилх

 
 Что, гугля решила спам сеть свою построить, что ли?
 
 Поздравляю, теперь ты - облако-зомби ;)
 

гмм, поймаю - убью! (с) откуда то.
P.S. А так как я ленивый сисадмин, то буду ждать пока мимо не пробегут.. :-)


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 15:57 пользователь Dmitry Glazov dyug...@gmail.com написал:
 Ага, на ноуте проверил. :-(
 попытка поставить новую версию хрома приводит к затягиванию lsb с
 компиятором, build-essenceale, алиеном, постфиксом, и маилх

Блин, а ведь точно - у меня вчерась при обновлении домашнего компа
поставился постфикс, он настройки спрашивал.

Может, это дурная привычка бубунты ставить рекомендованные пакеты
вместе с зависимостями?

А-а-а, Google захватывает мир!!!

PS Интересно, а на винде это все уже сразу интегрировано в Chrome и
они меньше палятся?

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Андрей Новосёлов
Однажды, Mon, 15 Feb 2010 16:05:04 +0300,
Вами,Катраев Виталий zawul...@gmail.com, написано:

 15 февраля 2010 г. 15:57 пользователь Dmitry Glazov
 dyug...@gmail.com написал:
  Ага, на ноуте проверил. :-(
  попытка поставить новую версию хрома приводит к затягиванию
  lsb с компиятором, build-essenceale, алиеном, постфиксом, и
  маилх
 
 Блин, а ведь точно - у меня вчерась при обновлении домашнего
 компа поставился постфикс, он настройки спрашивал.
 
 Может, это дурная привычка бубунты ставить рекомендованные
 пакеты вместе с зависимостями?
 
 А-а-а, Google захватывает мир!!!
 
 PS Интересно, а на винде это все уже сразу интегрировано в
 Chrome и они меньше палятся?
 

Думаю, нет. У меня в АЛТ Хром вытянул только необходимые кодеки.
Всего 4 пакета. Пожалуй просто что-то в зависимостях
недоглядели...

-- 
С наилучшими пожеланиями, Андрей Новосёлов.
Registered Linux user № 282220
Ubuntu user № 20998


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: skype опять

2010-02-15 Thread Alexey Popov
Снова про Скайп.
У меня:
ubuntu 9.10
skype 2.1.0.81
Гном
 webcam QuickCam Messenger
запускаем:
скриптом Skype.sh:
#!/bin/sh
   export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so
skype

Скайп запускается.
НО:
Тест звука ОК, а картинку не показывает.
В Cheese камера показывает, а в Скайпе - только зеленый огонек весело
подмигнет и постоянно загорится, но изображения нет!

Nikolai, если разобрались, подскажите пожалуйста как
(один раз камера заработала, но я решил установить KDE full и после
установки пропало изображение, удалил KDE full, но изображение не
появилось.)

4 февраля 2010 г. 16:14 пользователь Dmitry Glazov dyug...@gmail.comнаписал:

 Nikolai пишет:
  Кто про что,
  а у нас в квартире газ (С) и скайп пока не работает:
 
  ubuntu 9.10
  skype 2.1.0.81
  webcam Genius iSlim 1320 (встроенный микрофон)
 
  запускаем:
  bash -c LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
 
  Тест видео ОК, картинку показывает.
 
  Звука нет :(
  Повключал захваты и громкости в микшере.
  Тестовый звонок -- меня не слышит.
 
  Посмотрите мои снимки с экрана, может, чего подскажете,
  заранее премного благодарю.
 
  http://docs.google.com/leaf?id=0B-
  rZ9nGJI3jHZTBhZjUzODktYjRjYy00ZjBmLTgwOWItNmVmNDM0YjNhNGFlhl=ru
 
  http://docs.google.com/leaf?id=0B-
  rZ9nGJI3jHZTBhZjUzODktYjRjYy00ZjBmLTgwOWItNmVmNDM0YjNhNGFlhl=ru
 
  http://docs.google.com/leaf?id=0B-
  rZ9nGJI3jHZTBhZjUzODktYjRjYy00ZjBmLTgwOWItNmVmNDM0YjNhNGFlhl=ru
 
  http://docs.google.com/leaf?id=0B-
  rZ9nGJI3jHZTBhZjUzODktYjRjYy00ZjBmLTgwOWItNmVmNDM0YjNhNGFlhl=ru
 
  (все ссылки в одну строчку, естественно)
 
  --
  К
 
 
 

 Запустить (и установить, если нет) paman (PulseAudio Manager)
 И выбрать там вход с камеры.
 Сам долго ходил по этим граблям


 --
 ubuntu-ru mailing list
 ubuntu-ru@lists.ubuntu.com
 https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru

-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Dmitry Glazov
Катраев Виталий пишет:
 15 февраля 2010 г. 15:57 пользователь Dmitry Glazov dyug...@gmail.com 
 написал:
 Ага, на ноуте проверил. :-(
 попытка поставить новую версию хрома приводит к затягиванию lsb с
 компиятором, build-essenceale, алиеном, постфиксом, и маилх
 
 Блин, а ведь точно - у меня вчерась при обновлении домашнего компа
 поставился постфикс, он настройки спрашивал.
 
 Может, это дурная привычка бубунты ставить рекомендованные пакеты
 вместе с зависимостями?

Отключено гарантированно.
Нет lsb там жесткая зависимость.

 
 А-а-а, Google захватывает мир!!!
 
 PS Интересно, а на винде это все уже сразу интегрировано в Chrome и
 они меньше палятся?

А вот не знаю. :-)


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Dmitry Glazov
Андрей Новосёлов пишет:
 Однажды, Mon, 15 Feb 2010 16:05:04 +0300,
 Вами,Катраев Виталий zawul...@gmail.com, написано:
 
 15 февраля 2010 г. 15:57 пользователь Dmitry Glazov
 dyug...@gmail.com написал:
 Ага, на ноуте проверил. :-(
 попытка поставить новую версию хрома приводит к затягиванию
 lsb с компиятором, build-essenceale, алиеном, постфиксом, и
 маилх
 Блин, а ведь точно - у меня вчерась при обновлении домашнего
 компа поставился постфикс, он настройки спрашивал.

 Может, это дурная привычка бубунты ставить рекомендованные
 пакеты вместе с зависимостями?

 А-а-а, Google захватывает мир!!!

 PS Интересно, а на винде это все уже сразу интегрировано в
 Chrome и они меньше палятся?

 
 Думаю, нет. У меня в АЛТ Хром вытянул только необходимые кодеки.
 Всего 4 пакета. Пожалуй просто что-то в зависимостях
 недоглядели...
 

Хром, или хромиум? если хром - откуда брался rpm?


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Serge Matveenko
 А-а-а, Google захватывает мир!!!

 PS Интересно, а на винде это все уже сразу интегрировано в
 Chrome и они меньше палятся?


 Думаю, нет. У меня в АЛТ Хром вытянул только необходимые кодеки.
 Всего 4 пакета. Пожалуй просто что-то в зависимостях
 недоглядели...

https://launchpad.net/~chromium-daily/+archive/beta

это открытый chromium, соответствующий chrome beta


-- 
Serge Matveenko
moikrug:http://slki.ru/1
linkedin:http://slki.ru/1f
friendfeed:http://slki.ru/t
jabber:se...@matveenko.ru
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread San_Sanych
15.02.2010 15:32, Dmitry Glazov пишет:
 Катраев Виталий пишет:

 Всем привет.
 Может, у кого-нибудь есть информация о том, почему последнюю неделю не
 работают репозитории Google (http://dl.google.com/linux/deb)?
 Насколько я понял, с репами для rpm тоже самое.

  
 Лучше бы они и не работали. :-(
 поставил последний хром, матюкался, когда апдейт уже шел...
 НА какой половой орган для хрома стало важно буил-есенцеале, почтовый
 сервер, конвертер алиен, и прочее?
 Что, гугля решила спам сеть свою построить, что ли?

они в зависимостях промахнулись, заместо lsb-base захерачили lsb









-- 
Александр Вайтехович
www: http://sanych.nnov.ru
jabber: sanych{a}sanych.nnov.ru


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 16:31 пользователь Serge Matveenko
se...@matveenko.ru написал:
 https://launchpad.net/~chromium-daily/+archive/beta
 это открытый chromium, соответствующий chrome beta

Всегда интересовали следующие вопросы (я юзал Chromium до выхода
Chrome под Linux, сейчас использую develop-версию Chrome, т.к. beta не
нравится иногда):

А в нем синхронизация закладок через GoogleDocs работает?
Он подхватит настройки от двух профилей GoogleChrome?
И вообще, в чем разница окромя проприетарных логотипчиков?

Спасибо :)

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Evolution: ошибка при со хранении папки

2010-02-15 Thread Pivushkov Alexandr
MK пишет:
 Добрый день!
 
 С недавних пор Evolution 2.26.1 в Ubuntu 9.04 получения почты стала
 выдавать сообщение об ошибке приема почты и сохранения папки.
 Гуглением не нашел рекомендаций.
 Кто-нибудь сталкивался?
 Что делать?
 
 Сегодня утром Evolution вообще не запустился.
 В другой учетной записи тоже не запускался, значит, дело не в профиле.
 Помогло удаление в Synaptic'е с последующей установкой.
 
Только потому, что других рекомендаций здесь нет: попробуйте thunderbird.

-- 
- Пивушков Александр. Институт проблем химической физики. Черноголовка.
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Евгений Кузнецов
Доброго!

15 февраля 2010 г. 16:41 пользователь Катраев Виталий
zawul...@gmail.com написал:
 А в нем синхронизация закладок через GoogleDocs работает?
Не пробовал.

 Он подхватит настройки от двух профилей GoogleChrome?
От двух сразу? От одного-то подхватывает, не вопрос.

 И вообще, в чем разница окромя проприетарных логотипчиков?
А шоб я знал! Мне Chrome поставить не на что…

Евгений Кузнецов
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Dmitry Glazov
Serge Matveenko пишет:
 А-а-а, Google захватывает мир!!!

 PS Интересно, а на винде это все уже сразу интегрировано в
 Chrome и они меньше палятся?

 Думаю, нет. У меня в АЛТ Хром вытянул только необходимые кодеки.
 Всего 4 пакета. Пожалуй просто что-то в зависимостях
 недоглядели...
 
 https://launchpad.net/~chromium-daily/+archive/beta
 
 это открытый chromium, соответствующий chrome beta

Это хромиум, а не хром
И это лаунчпадовская сборка, не желающая у меня отображать например мой 
блогспотовский сайт. :-(
А речь изначально шла о Хроме от гугля. с репрозитария гугля.
вот с ним у меня фигня и вышла. :-(


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Андрей Новосёлов
Однажды, Mon, 15 Feb 2010 15:23:09 +0200,
Вами,Dmitry Glazov dyug...@gmail.com, написано:

 
 Хром, или хромиум? если хром - откуда брался rpm?
chromium-browser  я просто сократил :-)



-- 
С наилучшими пожеланиями, Андрей Новосёлов.
Registered Linux user № 282220
Ubuntu user № 20998


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 17:07 пользователь Евгений Кузнецов
evg...@gmail.com написал:
 Он подхватит настройки от двух профилей GoogleChrome?
 От двух сразу? От одного-то подхватывает, не вопрос.

Не сразу. У мну скриптик написан для запуска - аналог выбора профиля в
Firefox. Просто оказалось проще разнести мой и жены профили у двух
приложений, чем настраивать права и ссылки для 99,9% общих файлов в
двух разных учетках на компе.

15 февраля 2010 г. 17:20 пользователь Андрей Новосёлов
ksyno...@ukr.net написал:
 Хром, или хромиум? если хром - откуда брался rpm?
 chromium-browser  я просто сократил :-)

Так chromium в попытке зомбирования компов линуксоидов замечен пока и не был ;)

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитори и Google не работают?

2010-02-15 Thread Владимир Бажанов
 компиятором, build-essenceale, алиеном, постфиксом, и маилх

Хочу себе build-essenceale, Эссенцеале хорошие были таблетки для
печени;)
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: 1С франчайзи, работающие с Linux

2010-02-15 Thread Семенов Дмитрий
По своему опыту могу сказать:

1. Возьмется за это любая контора в которую вы обратитесь.
2. Толку не будет ни от одной конторы, в какую бы вы не обратились.

Как правильно сказали выше, проблем особых нет с Езерсофтом.

Но. На текущий  момент 1С представила 8.2, в которой:

1. Сервер приложений работает по *nix.
( http://v8.1c.ru/overview/Term_00666.htm#1 )
2. Доступен web client
( http://v8.1c.ru/overview/Term_00125.htm )

Я так понимаю вы планируете переезд на 8-ку  с 7-ки ).  Проблем будет
много, с переходом, что на 8.0 что на 8.1 что на 8.2
То уж переезжайте сразу на 8,2. 
Конфы сыроваты но пока у вас закончится внедреж ( а это будет именно
внедреж ) основная часть проблем со стороны 1С отвалятся и будет вам
счастье :)



В Пнд, 15/02/2010 в 12:47 +0300, Андрей Калинин пишет: 

 Привет all.
 Сейчас остро встала проблема поиска вменяемой конторы для поддержки 1С
 и миграции на восьмёрку. Рабочие места на Ubuntu. Если знаете
 координаты фирмы с соответсвующим опытом, поделитесь пожалуйста.


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Evolution: ошибка при сохранении папки

2010-02-15 Thread MK
Hi!

Pivushkov Alexandr:
  Только потому, что других рекомендаций здесь нет: попробуйте thunderbird.

Спасибо! Уже установил.

Не подскажете, возможен ли перенос почтовой базы?
(Сам искал, но не нашел возможности переноса).

Во Входящие Evolution скопилось больше 4 писем.
Заметил, что при старте Evolution постоянно обращение к HDD, индикатор горит 
непрерывно.
Попробовал запуск с различными параметрами.
С отключенным GUI в terminal'е шли сообщения об ошибках не могу найти точку 
входа для слово, afair.
Видимо, что-то с индексацией тел сообщений.
Дождался запуска, отключил индексацию в свойствах Входящих.
Сейчас стартует быстро.



-- 

С наилучшими пожеланиями,
Михаил

P.S. А есть ли для Ubuntu монитор обращения к HDD?


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Serge Matveenko
 https://launchpad.net/~chromium-daily/+archive/beta
 это открытый chromium, соответствующий chrome beta

 А в нем синхронизация закладок через GoogleDocs работает?

да

 Он подхватит настройки от двух профилей GoogleChrome?

не понял вопроса, настройки можно ему ручками скопировать.

 И вообще, в чем разница окромя проприетарных логотипчиков?

он поставляется с исходниками, из которых собран


-- 
Serge Matveenko
moikrug:http://slki.ru/1
linkedin:http://slki.ru/1f
friendfeed:http://slki.ru/t
jabber:se...@matveenko.ru
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитори и Google не работают?

2010-02-15 Thread Василий Куликов
В Пнд, 15/02/2010 в 14:32 +0200, Dmitry Glazov пишет:
 Катраев Виталий пишет:
  Всем привет.
  Может, у кого-нибудь есть информация о том, почему последнюю неделю не
  работают репозитории Google (http://dl.google.com/linux/deb)?
  Насколько я понял, с репами для rpm тоже самое.
  
 
 Лучше бы они и не работали. :-(
 поставил последний хром, матюкался, когда апдейт уже шел...
 НА какой половой орган для хрома стало важно буил-есенцеале, почтовый 
 сервер, конвертер алиен, и прочее?
 Что, гугля решила спам сеть свою построить, что ли?
 

Специально проверил:

apt-cache show chromium-browser

Depends: libasound2 ( 1.0.18), libatk1.0-0 (= 1.20.0), libbz2-1.0,
libc6 (= 2.8), libcairo2 (= 1.6.0), libexpat1 (= 1.95.8),
libfontconfig1 (= 2.4.0), libfreetype6 (= 2.3.9), libgcc1 (=
1:4.1.1), libgconf2-4 (= 2.13.5), libglib2.0-0 (= 2.18.0), libgtk2.0-0
(= 2.16.0), libjpeg62, libnspr4-0d (= 4.7.3-0ubuntu1~), libnss3-1d (=
3.12.3), libpango1.0-0 (= 1.20.0), libpng12-0 (= 1.2.13-4), libstdc++6
(= 4.2.1), libx11-6, libxext6, libxml2 (= 2.6.27), libxrender1,
libxslt1.1 (= 1.1.18), libxss1, zlib1g (= 1:1.1.4)


apt-cache show google-chrome-beta 

Depends: ca-certificates, libasound2, libatk1.0-0 (= 1.13.2), libc6 (=
2.6-1), libcairo2 (= 1.4.0), libfontconfig1 (= 2.4.0), libfreetype6
(= 2.3.5), libgcc1 (= 1:4.2.1), libgconf2-4, libglib2.0-0 (= 2.14.0),
libgtk2.0-0 (= 2.12.0), libnspr4-0d (= 4.7.1), libnss3-1d (= 3.12.3),
libpango1.0-0 (= 1.18.3), libstdc++6 (= 4.2.1), lsb-base (= 3.2),
wget, xdg-utils (= 1.0.1), zlib1g (= 1:1.2.3.3.dfsg-1)

Это вы что-то напутали...


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 19:29 пользователь Serge Matveenko
se...@matveenko.ru написал:
 А в нем синхронизация закладок через GoogleDocs работает?
 да

Спасибо, остальное не критично. Будет время, попробую перейти.

 Он подхватит настройки от двух профилей GoogleChrome?
 не понял вопроса, настройки можно ему ручками скопировать.

Имелось в виду, что если ему в качестве профиля указать папочку с
профилем от Chrome - он оттуда все схавает (пароли, закладки, плагины,
историю, кеш)?

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 19:58 пользователь Василий Куликов
sego...@gmail.com написал:
 lsb-base (= 3.2)

 Это вы что-то напутали...

Не, не напутал.

apt-cache show google-chrome-unstable

Depends: ca-certificates, libatk1.0-0 (= 1.13.2), libbz2-1.0, libc6
(= 2.6-1), libcairo2 (= 1.4.0), libfontconfig1 (= 2.4.0),
libfreetype6 (= 2.3.5), libgcc1 (= 1:4.2.1), libgconf2-4,
libglib2.0-0 (= 2.14.0), libgtk2.0-0 (= 2.12.0), libnspr4-0d (=
4.7.1), libnss3-1d (= 3.12.3), libpango1.0-0 (= 1.18.3), libstdc++6
(= 4.2.1), libxss1, lsb (= 3.2), wget, xdg-utils (= 1.0.1), zlib1g
(= 1:1.2.3.3.dfsg-1)

Видите? У beta в зависимостях lsb-base, а у unstable - lsb целиком,
который он и тянет остальное.

-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread Dmitry Glazov
Василий Куликов пишет:
 В Пнд, 15/02/2010 в 14:32 +0200, Dmitry Glazov пишет:
 Катраев Виталий пишет:
 Всем привет.
 Может, у кого-нибудь есть информация о том, почему последнюю неделю не
 работают репозитории Google (http://dl.google.com/linux/deb)?
 Насколько я понял, с репами для rpm тоже самое.

 Лучше бы они и не работали. :-(
 поставил последний хром, матюкался, когда апдейт уже шел...
 НА какой половой орган для хрома стало важно буил-есенцеале, почтовый 
 сервер, конвертер алиен, и прочее?
 Что, гугля решила спам сеть свою построить, что ли?

 
 Специально проверил:
 
 apt-cache show chromium-browser
 
 Depends: libasound2 ( 1.0.18), libatk1.0-0 (= 1.20.0), libbz2-1.0,
 libc6 (= 2.8), libcairo2 (= 1.6.0), libexpat1 (= 1.95.8),
 libfontconfig1 (= 2.4.0), libfreetype6 (= 2.3.9), libgcc1 (=
 1:4.1.1), libgconf2-4 (= 2.13.5), libglib2.0-0 (= 2.18.0), libgtk2.0-0
 (= 2.16.0), libjpeg62, libnspr4-0d (= 4.7.3-0ubuntu1~), libnss3-1d (=
 3.12.3), libpango1.0-0 (= 1.20.0), libpng12-0 (= 1.2.13-4), libstdc++6
 (= 4.2.1), libx11-6, libxext6, libxml2 (= 2.6.27), libxrender1,
 libxslt1.1 (= 1.1.18), libxss1, zlib1g (= 1:1.1.4)
 
 
 apt-cache show google-chrome-beta 
 
 Depends: ca-certificates, libasound2, libatk1.0-0 (= 1.13.2), libc6 (=
 2.6-1), libcairo2 (= 1.4.0), libfontconfig1 (= 2.4.0), libfreetype6
 (= 2.3.5), libgcc1 (= 1:4.2.1), libgconf2-4, libglib2.0-0 (= 2.14.0),
 libgtk2.0-0 (= 2.12.0), libnspr4-0d (= 4.7.1), libnss3-1d (= 3.12.3),
 libpango1.0-0 (= 1.18.3), libstdc++6 (= 4.2.1), lsb-base (= 3.2),
 wget, xdg-utils (= 1.0.1), zlib1g (= 1:1.2.3.3.dfsg-1)
 
 Это вы что-то напутали...
 
 
apt-cache show google-chrome-unstable
Package: google-chrome-unstable
Version: 5.0.322.2-r38810

Depends: ca-certificates, libatk1.0-0 (= 1.13.2), libbz2-1.0, libc6 (= 
2.6-1), libcairo2 (= 1.4.0), libfontconfig1 (= 2.4.0), libfreetype6 
(= 2.3.5), libgcc1 (= 1:4.2.1), libgconf2-4, libglib2.0-0 (= 2.14.0), 
libgtk2.0-0 (= 2.12.0), libnspr4-0d (= 4.7.1), libnss3-1d (= 3.12.3), 
libpango1.0-0 (= 1.18.3), libstdc++6 (= 4.2.1), libxss1, lsb (= 3.2), 
wget, xdg-utils (= 1.0.1), zlib1g (= 1:1.2.3.3.dfsg-1)


Это точно я НАПУТАЛ? :-)

apt-cache show lsb
Package: lsb

Depends: lsb-core, lsb-graphics, lsb-cxx, lsb-desktop

apt-cache show lsb-core
Package: lsb-core
Depends: lsb-release, libc6 ( 2.3.5), libz1, libncurses5, libpam0g, 
postfix | mail-transport-agent, at, bc, binutils, bsdmainutils, 
bsdutils, cpio, cron, ed, file, libc6-dev | libc-dev, locales, cups-bsd 
| lpr, lprng | cups-client, m4, mailx | mailutils, make, man-db, mawk | 
gawk, ncurses-term, passwd, patch, pax, procps, psmisc, rsync, alien (= 
8.36), python, python-central (= 0.6.11), debconf (= 0.5) | 
debconf-2.0, lsb-base, time



-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread San_Sanych
15.02.2010 19:58, Василий Куликов пишет:
 В Пнд, 15/02/2010 в 14:32 +0200, Dmitry Glazov пишет:

 Катраев Виталий пишет:
  
 Всем привет.
 Может, у кого-нибудь есть информация о том, почему последнюю неделю не
 работают репозитории Google (http://dl.google.com/linux/deb)?
 Насколько я понял, с репами для rpm тоже самое.


 Лучше бы они и не работали. :-(
 поставил последний хром, матюкался, когда апдейт уже шел...
 НА какой половой орган для хрома стало важно буил-есенцеале, почтовый
 сервер, конвертер алиен, и прочее?
 Что, гугля решила спам сеть свою построить, что ли?

  
 Специально проверил:

 apt-cache show chromium-browser

 Depends: libasound2 (  1.0.18), libatk1.0-0 (= 1.20.0), libbz2-1.0,
 libc6 (= 2.8), libcairo2 (= 1.6.0), libexpat1 (= 1.95.8),
 libfontconfig1 (= 2.4.0), libfreetype6 (= 2.3.9), libgcc1 (=
 1:4.1.1), libgconf2-4 (= 2.13.5), libglib2.0-0 (= 2.18.0), libgtk2.0-0
 (= 2.16.0), libjpeg62, libnspr4-0d (= 4.7.3-0ubuntu1~), libnss3-1d (=
 3.12.3), libpango1.0-0 (= 1.20.0), libpng12-0 (= 1.2.13-4), libstdc++6
 (= 4.2.1), libx11-6, libxext6, libxml2 (= 2.6.27), libxrender1,
 libxslt1.1 (= 1.1.18), libxss1, zlib1g (= 1:1.1.4)


 apt-cache show google-chrome-beta

 Depends: ca-certificates, libasound2, libatk1.0-0 (= 1.13.2), libc6 (=
 2.6-1), libcairo2 (= 1.4.0), libfontconfig1 (= 2.4.0), libfreetype6
 (= 2.3.5), libgcc1 (= 1:4.2.1), libgconf2-4, libglib2.0-0 (= 2.14.0),
 libgtk2.0-0 (= 2.12.0), libnspr4-0d (= 4.7.1), libnss3-1d (= 3.12.3),
 libpango1.0-0 (= 1.18.3), libstdc++6 (= 4.2.1), lsb-base (= 3.2),
 wget, xdg-utils (= 1.0.1), zlib1g (= 1:1.2.3.3.dfsg-1)

 Это вы что-то напутали...



речь идет о google-chrome-unstable v  5.0.322.2-r38810
Depends: ca-certificates, libatk1.0-0 (= 1.13.2), libbz2-1.0, libc6 (= 
2.6-1), libcairo2 (= 1.4.0), libfontconfig1 (= 2.4.0), libfreety
pe6 (= 2.3.5), libgcc1 (= 1:4.2.1), libgconf2-4, libglib2.0-0 (= 
2.14.0), libgtk2.0-0 (= 2.12.0), libnspr4-0d (= 4.7.1), libnss3-1d (=
  3.12.3), libpango1.0-0 (= 1.18.3), libstdc++6 (= 4.2.1), libxss1,
  lsb (= 3.2) 
здесь и перепутано должно быть lsb-base

  wget, xdg-utils (= 1.0.1), zlib1g (= 1:1.2.3.3.dfsg-1)

-- 
Александр Вайтехович
www: http://sanych.nnov.ru
jabber: sanych{a}sanych.nnov.ru


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Serge Matveenko
 Имелось в виду, что если ему в качестве профиля указать папочку с
 профилем от Chrome - он оттуда все схавает (пароли, закладки, плагины,
 историю, кеш)?

вообще, должен, я не пробовал...


-- 
Serge Matveenko
moikrug:http://slki.ru/1
linkedin:http://slki.ru/1f
friendfeed:http://slki.ru/t
jabber:se...@matveenko.ru
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не работают?

2010-02-15 Thread San_Sanych
15.02.2010 20:08, Dmitry Glazov пишет:

 Специально проверил:

 apt-cache show chromium-browser


 apt-cache show google-chrome-beta


 Это вы что-то напутали...


  
 apt-cache show google-chrome-unstable



да вобщем лучше предыдущую версию оставлять, новая у меня вчера 
(поставил поправив пакет) очень часто глючила

-- 
Александр Вайтехович
www: http://sanych.nnov.ru
jabber: sanych{a}sanych.nnov.ru


-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Deb-репозитории Google не рабо тают?

2010-02-15 Thread Катраев Виталий
15 февраля 2010 г. 20:08 пользователь Dmitry Glazov dyug...@gmail.com написал:
 Это точно я НАПУТАЛ? :-)

Не вы, а Google :)

# sudo apt-get remove postfix
Пакеты, которые будут УДАЛЕНЫ:
  bsd-mailx google-chrome-unstable lsb lsb-core lsb-cxx lsb-desktop
  lsb-graphics mailx postfix

# sudo apt-get remove alien
Пакеты, которые будут УДАЛЕНЫ:
  alien google-chrome-unstable lsb lsb-core lsb-cxx lsb-desktop lsb-graphics

Ну и т.д.


-- 
Adios...
HaND:)

br, Zawullon.

mailto:zawul...@gmail.com
jabber:zawul...@gmail.com
icq:473256192
http://zawullon.spb.ru/
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


  1   2   3   4   5   6   7   8   9   10   >