UDD breakdown when building orig.tar.gz from upstream VCS

2012-02-15 Thread Barry Warsaw
I just want to put this out there for the historical record.  I think this is
a rare enough use case that UDD doesn't need to address, certainly not any
time soon, if ever.  OTOH, maybe there's an easy workaround.

I was working on an NBS for the fgfs-atlas package (LP: #903225).  The
solution was straightforward enough: upstream had all the necessary fixes in
their CVS repository, but hadn't done a release in a long time.  I twiddled
the packaging to build an orig.tar.gz from CVS, and the googlez helped find
some good general packaging information on how to do this.

Unfortunately, UDD is essentially useless here.  The problem is that after
creating the tarball from CVS, `bzr bd -S` can't be used because dpkg-source
will complain too much about deltas between the tarball and the source tree.
It'll warn about a lot of stuff, but then fail with some unrepresentable
changes to source.

I worked around this by unpacking the new orig.tar.gz and `cp -a` the debian/
directory from the precise version of the package (with my changes) over into
the unpacked tarball.  After a few rounds of tweaking, and using `debuild -S
-sa`, I had a debian/ that built locally, so I uploaded it and will let the
importer (hopefully) sort out the mess.

I still did all my changes to debian/ in a source branch though, because that
made it easier to get a diff for the linked Debian bug.

Is there's a magical udd switch or config setting that would have helped me
keep all the changes in the source branch?  It seems like this is somewhat
similar to the merge-upstream issue when upstream has a rather large released
tarball delta.

Cheers,
-Barry


signature.asc
Description: PGP signature
-- 
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: UDD breakdown when building orig.tar.gz from upstream VCS

2012-02-15 Thread Jelmer Vernooij
Hi Barry!

On Wed, Feb 15, 2012 at 08:21:37AM -0500, Barry Warsaw wrote:
 I just want to put this out there for the historical record.  I think this is
 a rare enough use case that UDD doesn't need to address, certainly not any
 time soon, if ever.  OTOH, maybe there's an easy workaround.
 
 I was working on an NBS for the fgfs-atlas package (LP: #903225).  The
 solution was straightforward enough: upstream had all the necessary fixes in
 their CVS repository, but hadn't done a release in a long time.  I twiddled
 the packaging to build an orig.tar.gz from CVS, and the googlez helped find
 some good general packaging information on how to do this.

 
 Unfortunately, UDD is essentially useless here.  The problem is that after
 creating the tarball from CVS, `bzr bd -S` can't be used because dpkg-source
 will complain too much about deltas between the tarball and the source tree.
 It'll warn about a lot of stuff, but then fail with some unrepresentable
 changes to source.
How did you update the upstream version number in debian/changelog?

 I worked around this by unpacking the new orig.tar.gz and `cp -a` the debian/
 directory from the precise version of the package (with my changes) over into
 the unpacked tarball.  After a few rounds of tweaking, and using `debuild -S
 -sa`, I had a debian/ that built locally, so I uploaded it and will let the
 importer (hopefully) sort out the mess.
 
 I still did all my changes to debian/ in a source branch though, because that
 made it easier to get a diff for the linked Debian bug.
 
 Is there's a magical udd switch or config setting that would have helped me
 keep all the changes in the source branch?  It seems like this is somewhat
 similar to the merge-upstream issue when upstream has a rather large released
 tarball delta.
bzr merge-upstream should help here. You can pass it a tarball and a
version. Of course, these will have to be different than the previous
release (since it's a new upstream version). In your case, I would imagine 
something like:

$ cvs export -d :pserver:... fgfs-atlas-20120209.tar.gz
$ cd packaging-branch
$ bzr merge-upstream --version 0.3+cvs20120209
~/fgfs-atlas-20120209.tar.gz

This will import the pristine tar data into the packaging branch as a
new revision, merge the changes into the packaging branch and add a
new changelog entry 0.3+cvs20120209-0ubuntu1.

Cheers,

Jelmer


signature.asc
Description: Digital signature
-- 
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: UDD breakdown when building orig.tar.gz from upstream VCS

2012-02-15 Thread James Westby
On Wed, 15 Feb 2012 08:21:37 -0500, Barry Warsaw ba...@ubuntu.com wrote:
 I just want to put this out there for the historical record.  I think this is
 a rare enough use case that UDD doesn't need to address, certainly not any
 time soon, if ever.  OTOH, maybe there's an easy workaround.
 
 I was working on an NBS for the fgfs-atlas package (LP: #903225).  The
 solution was straightforward enough: upstream had all the necessary fixes in
 their CVS repository, but hadn't done a release in a long time.  I twiddled
 the packaging to build an orig.tar.gz from CVS, and the googlez helped find
 some good general packaging information on how to do this.
 
 Unfortunately, UDD is essentially useless here.  The problem is that after
 creating the tarball from CVS, `bzr bd -S` can't be used because dpkg-source
 will complain too much about deltas between the tarball and the source tree.
 It'll warn about a lot of stuff, but then fail with some unrepresentable
 changes to source.
 
 I worked around this by unpacking the new orig.tar.gz and `cp -a` the debian/
 directory from the precise version of the package (with my changes) over into
 the unpacked tarball.  After a few rounds of tweaking, and using `debuild -S
 -sa`, I had a debian/ that built locally, so I uploaded it and will let the
 importer (hopefully) sort out the mess.
 
 I still did all my changes to debian/ in a source branch though, because that
 made it easier to get a diff for the linked Debian bug.
 
 Is there's a magical udd switch or config setting that would have helped me
 keep all the changes in the source branch?  It seems like this is somewhat
 similar to the merge-upstream issue when upstream has a rather large released
 tarball delta.

What's the merge-upstream issue?

I think that using merge-upstream is what should be done here, passing
it the tarball you created. That will merge in the new code, keep the
debian directory and any changes, with conflicts if necessary. Once all
that is resolved `bzr bd -S` should just work.

Of course there may be a large gulf between theory and reality :-)

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: UDD breakdown when building orig.tar.gz from upstream VCS

2012-02-15 Thread Barry Warsaw
On Feb 15, 2012, at 04:35 PM, Jelmer Vernooij wrote:

bzr merge-upstream should help here. You can pass it a tarball and a
version. Of course, these will have to be different than the previous
release (since it's a new upstream version). In your case, I would imagine 
something like:

$ cvs export -d :pserver:... fgfs-atlas-20120209.tar.gz
$ cd packaging-branch
$ bzr merge-upstream --version 0.3+cvs20120209
~/fgfs-atlas-20120209.tar.gz

This will import the pristine tar data into the packaging branch as a
new revision, merge the changes into the packaging branch and add a
new changelog entry 0.3+cvs20120209-0ubuntu1.

Yeesh, why did I not think of that?!

That totally makes sense, and I'll try it if the same situation comes up again
(or I need to update the package to a newer CVS).

Thanks!
-Barry


signature.asc
Description: PGP signature
-- 
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


Laptop testing

2012-02-15 Thread Hansen
Hi.
Will there be a Laptop testing of precise pangolin, and at what point?
What is the API key for XMLRPC interface, i need to log in at my profile
at http://laptop.qa.ubuntu.com/qatracker/profile, and are my hardware
profile for laptop testing stored there? I can't find it any more.
Thanks
Hansen
-- 
Ubuntu-qa mailing list
Ubuntu-qa@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-qa


Re: Unity 5.4 Testing Opportunity

2012-02-15 Thread Fabio Marconi
Il giorno mar, 14/02/2012 alle 13.18 -0500, Nicholas Skaggs ha scritto:
 Another opportunity for testing -- there's going to be a lot this
 week. :-)
 
 Unity 5.4 has landed and has a new suite of tests surrounding the HUD.
 You have until Thursday at 8 am UTC as usual to test.
 
 Please see this post for the details
 http://www.theorangenotebook.com/2012/02/unity-54-whats-new-and-call-for-testing.html
 
 Thanks everyone! 
With or without compiz beta1?
Fabio


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


14-16 feb update compiz (and other?) problems

2012-02-15 Thread Petko
Hey guys , since I updated these days I'm having all kinds of trouble 
with the GUI . Edge bindings not working , compiz crashing , surprising 
logouts , the alleged removal of intellihide doesn't affect me (which is 
funny because I was one of the people to argue against that the most) , 
the dash is buggy . There's probably 2-3 more things .


The last upgrade I did was not full (apparently some dependencies issues):

Synaptic has no problems until downloading ,when it fails to find 
http://archive.ubuntu.com/ubuntu/pool/universe/liba/libaacs/libaacs0_0.3.0-3_amd64.deb


Update manager shows (as not installable without a partial upgrade ) :

enlightened sound  library
gwibber
gstfarsight
VLC
(each with more than one package)

So 1. Do I file a bug with a general description like that email and 
attach info from apport to help solve things

2.Do a clear install (accept that my system is broken now)
3. Wait until some more updates come along

I have to mention that I'm installing the proposed updates also .

Petko

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


Re: 14-16 feb update compiz (and other?) problems

2012-02-15 Thread Nicholas Skaggs

Petko, are you running precise or oneiric, natty or perhaps lucid?

Nicholas

On 02/15/2012 05:17 PM, Petko wrote:
Hey guys , since I updated these days I'm having all kinds of trouble 
with the GUI . Edge bindings not working , compiz crashing , 
surprising logouts , the alleged removal of intellihide doesn't affect 
me (which is funny because I was one of the people to argue against 
that the most) , the dash is buggy . There's probably 2-3 more things .


The last upgrade I did was not full (apparently some dependencies 
issues):


Synaptic has no problems until downloading ,when it fails to find 
http://archive.ubuntu.com/ubuntu/pool/universe/liba/libaacs/libaacs0_0.3.0-3_amd64.deb


Update manager shows (as not installable without a partial upgrade ) :

enlightened sound  library
gwibber
gstfarsight
VLC
(each with more than one package)

So 1. Do I file a bug with a general description like that email and 
attach info from apport to help solve things

2.Do a clear install (accept that my system is broken now)
3. Wait until some more updates come along

I have to mention that I'm installing the proposed updates also .

Petko




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


Re: 14-16 feb update compiz (and other?) problems

2012-02-15 Thread Petko

On 02/16/2012 12:25 AM, Nicholas Skaggs wrote:

Petko, are you running precise or oneiric, natty or perhaps lucid?

Nicholas

On 02/15/2012 05:17 PM, Petko wrote:
Hey guys , since I updated these days I'm having all kinds of trouble 
with the GUI . Edge bindings not working , compiz crashing , 
surprising logouts , the alleged removal of intellihide doesn't 
affect me (which is funny because I was one of the people to argue 
against that the most) , the dash is buggy . There's probably 2-3 
more things .


The last upgrade I did was not full (apparently some dependencies 
issues):


Synaptic has no problems until downloading ,when it fails to find 
http://archive.ubuntu.com/ubuntu/pool/universe/liba/libaacs/libaacs0_0.3.0-3_amd64.deb


Update manager shows (as not installable without a partial upgrade 
) :


enlightened sound  library
gwibber
gstfarsight
VLC
(each with more than one package)

So 1. Do I file a bug with a general description like that email and 
attach info from apport to help solve things

2.Do a clear install (accept that my system is broken now)
3. Wait until some more updates come along

I have to mention that I'm installing the proposed updates also .

Petko



Precise . And I haven't done anything funky (I can think of ) either . 
So I should just be running the latest precise build :?


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


Re: [ubuntu-in] libssl1.0.0:i386 ...on 64bit OS ... why ???

2012-02-15 Thread Manish Sinha
On Fri, Feb 10, 2012 at 11:22 AM, Jkhatri khatri.ja...@gmail.com wrote:
 Dear All

 can anyone spotlight on this  I've Ubuntu 11.10 64bit  installed on one
 of my Laptop and running fine,
 today morning I've received a message that two[1][2] updates are available
 to install, which are as following

 [1] libssl1.0.0:i386 (size 974kb)
 [2]  openssl (size: 516kb)

 now the first question is  why I'm getting i386 package as update on
 64bit OS ???

 when I try to install that two updates through update manager, it shows
 following[3] error


 [3] The following packages have unmet dependencies:

 libssl1.0.0: Depends: libc6 (= 2.7) but 2.13-20ubuntu5 is installed
  Depends: zlib1g (= 1:1.1.4) but 1:1.2.3.4.dfsg-3ubuntu3 is
 installed
 libssl1.0.0:i386: Depends: libc6 (= 2.7) but 2.13-20ubuntu5 is installed
   Depends: zlib1g (= 1:1.1.4) but 1:1.2.3.4.dfsg-3ubuntu3
 is installed

 How to resolve the issue ... is there anyone other who is facing this
 problem ???

 Warm Regards
 --

 */

 Jatin Khatri

 RHCSA RHCE CCNA

 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


Hello,

I would suggest you to ask this question on askubuntu.com since it
would reach a wider audience

Please put the output of

lsb_release -a
sudo apt-get upgrade

Once done, please post the link

-
Manish

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


Re: [ubuntu-in] usage of Libreoffice.

2012-02-15 Thread Ramnarayan.K
Dear Sir

Am sorry for this long delay, some how the mail missed my view and came
across is just now.

Will try and help a bit, though the best results do come from the Ubuntu
List itself (which is marked  here)

**As far as how to enable a Kannada Dictionary / spell please see inline
below your original mail:**

On Tue, Jan 31, 2012 at 7:56 PM, Sriranga(78yrsold) withblessi...@gmail.com
 wrote:

 Dear Ram,
 I am newbie to libreoffice. switched from windows MSword.
 I am using for Kannada lang. In this context will you kindly guide me how
 to use
 abc-Spellchecking for my lang - step by step. I have installed dic-kn in
 the libreoffice
 folder.
 I seek valuable guidance for the following points =

 1) How to add the  user.dic file in which I have added many required words
 manually.
 2) It is observed that there is standard.dic in the spell checker - how to
 use it effectively
 I mean adding required words and delete unwanted words. - whether
 standard.dic
 can retrieved from the libre.office - since I could not locate
 standard.dic is stored/
 installed.

 You have to get the dictionary from
http://libreoffice-na.us/Spanish/extensions.html (you may already have this
the file should have an extension called .oxt) - remember where you have
downloaded the extensions

Then open a libreoffice writer document and go to Tools - Extension
Manager.
Once this is open it will give you at the bottom an add button - click on
this and add the .oxt extension file,. You will have to accept the license
agreement before it allows you to proceed

Next keep libreoffice writer open and go to Tools - Options - Languages
andenhanced language support here  enable CTL (right at the bottom)

Once CTL (Complex Text Layout ) is enabled then have to enable CTL layout
go a bit above to default languages and select (in front of the CTL option
from the downward menu the language of your choice)

To know if that language has a dictionary installed check for a ABC with a
Check mark , if the language occurs without that it means no dictionary of
that sort exists.

After this close *all* libreoffice documents and restart openoffice writer
- mistype a word in your chosen language and if the mistyped word comes up
with a red wavy underline it means you have been successful in setting up
your (kannada) language dictionary and spell checker

You also have to ensure that in your main Libreoffice tool bar there are
two icons, A blue tick / check mark under  ABC characters, one of them has
a red wavy line under, this has to be enabled, when enabled it shows up
with a border and the blank areas get filled with blue (or your theme color)

Hope this works



-- 
Ram
_http://www.munsiari.com
Amazing Indians: Transforming lives in the
hillshttp://www.timesnow.tv/Amazing-Indians-Transforming-lives-in-the-hills/videoshow/4383022.cms
-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [ubuntu-in] usage of Libreoffice.

2012-02-15 Thread Ramnarayan.K
some typos and grammatical mistakes please overlook and excuse

**
Also thanks to having to help Sriranga ji I too now have Hindi spellcheck
installed :-)

regards
ram

On Wed, Feb 15, 2012 at 4:46 PM, Ramnarayan.K ramnaraya...@gmail.comwrote:

 Dear Sir

 Am sorry for this long delay, some how the mail missed my view and came
 across is just now.

 Will try and help a bit, though the best results do come from the Ubuntu
 List itself (which is marked  here)

 **As far as how to enable a Kannada Dictionary / spell please see inline
 below your original mail:**

 On Tue, Jan 31, 2012 at 7:56 PM, Sriranga(78yrsold) 
 withblessi...@gmail.com wrote:

 Dear Ram,
 I am newbie to libreoffice. switched from windows MSword.
 I am using for Kannada lang. In this context will you kindly guide me how
 to use
 abc-Spellchecking for my lang - step by step. I have installed dic-kn in
 the libreoffice
 folder.
 I seek valuable guidance for the following points =

 1) How to add the  user.dic file in which I have added many required
 words manually.
 2) It is observed that there is standard.dic in the spell checker - how
 to use it effectively
 I mean adding required words and delete unwanted words. - whether
 standard.dic
 can retrieved from the libre.office - since I could not locate
 standard.dic is stored/
 installed.

  You have to get the dictionary from
 http://libreoffice-na.us/Spanish/extensions.html (you may already have
 this the file should have an extension called .oxt) - remember where you
 have downloaded the extensions

 Then open a libreoffice writer document and go to Tools - Extension
 Manager.
 Once this is open it will give you at the bottom an add button - click
 on this and add the .oxt extension file,. You will have to accept the
 license agreement before it allows you to proceed

 Next keep libreoffice writer open and go to Tools - Options - Languages
 andenhanced language support here  enable CTL (right at the bottom)

 Once CTL (Complex Text Layout ) is enabled then have to enable CTL layout
 go a bit above to default languages and select (in front of the CTL option
 from the downward menu the language of your choice)

 To know if that language has a dictionary installed check for a ABC with a
 Check mark , if the language occurs without that it means no dictionary of
 that sort exists.

 After this close *all* libreoffice documents and restart openoffice writer
 - mistype a word in your chosen language and if the mistyped word comes up
 with a red wavy underline it means you have been successful in setting up
 your (kannada) language dictionary and spell checker

 You also have to ensure that in your main Libreoffice tool bar there are
 two icons, A blue tick / check mark under  ABC characters, one of them has
 a red wavy line under, this has to be enabled, when enabled it shows up
 with a border and the blank areas get filled with blue (or your theme color)

 Hope this works



 --
 Ram
 _http://www.munsiari.com
 Amazing Indians: Transforming lives in the 
 hillshttp://www.timesnow.tv/Amazing-Indians-Transforming-lives-in-the-hills/videoshow/4383022.cms




-- 
Ram
_http://www.munsiari.com
Amazing Indians: Transforming lives in the
hillshttp://www.timesnow.tv/Amazing-Indians-Transforming-lives-in-the-hills/videoshow/4383022.cms
-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [Ubuntu-QC] Ajout d'un deuxième écran - Et Vlan! Le bordel...

2012-02-15 Thread Fabián Rodríguez
On 2012-02-14 21:22, Alexandre Patenaude wrote:
 Hello,
 
 Juste une petite mention aussi des outils présents de base dans GNOME,
 pour réarranger la position des écrans et sélectionner l'écran principal.
 

Ces outils ne seront pas utilisés si les pilotes Nvidia binaires
(non-libres) sont activés. L'outil de Nvidia serait éxécuté dans ce cas.

Eh oui, Ctrl-Alt-Backspace a été désactivé par défaut depuis 10.04 LTS.

F.


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


Re: [Ubuntu-QC] Ajout d'un deuxième écran - Et Vlan! Le bordel...

2012-02-15 Thread Fabián Rodríguez
On 2012-02-15 06:06, Fabián Rodríguez wrote:
 On 2012-02-14 21:22, Alexandre Patenaude wrote:
[...]
 Eh oui, Ctrl-Alt-Backspace a été désactivé par défaut depuis 10.04 LTS.

9.04*

F.




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


[Ubuntu-QC] Processus Firefox et Dolphin Zombie: explications recherchées

2012-02-15 Thread Gérard Talbot
Bonjour à tous,


http://www.gtalbot.org/linux-section/Processus-Firefox-Dolphin-Zombie.html


Est-ce que quelqu'un peut m'expliquer ce que signifie Zombie dans la
colonne %CPU?

J'ai ma petite idée sur le sujet mais je préferais vérifier mon intuition
avec quelqu'un qui s'y connaît.

J'utilise Firefox 10.0.1 et Dolphin 2.0 sous KDE 4.8, Qt 4.7.4, Kubuntu
11.10.

Merci.

Gérard
-- 
Tous les bogues (ou presque) des navigateurs web:
http://www.gtalbot.org/BrowserBugsSection/
Contributions to the CSS 2.1 test suite
http://www.gtalbot.org/BrowserBugsSection/css21testsuite/
Guide d'utilisateur de KompoZer
http://www.gtalbot.org/NvuSection/GuideUtilisateurNvu/GuideNvuSection1.html


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


Re: [Ubuntu-QC] Canonical ne financera plus le développement de Kubuntu

2012-02-15 Thread Gilbert Dion
Le 15 février 2012 18:13, Mathieu Trudel-Lapierre mathieu...@gmail.com a
écrit :

 2012/2/14 Sebastien Roy r...@iro.umontreal.ca:
  Je voudrais simplement mentionner que Unity est incroyablement instable
 et
  que si il n'est pas stabilisé pour 12.04, et qu'on a plus d'alternative,
 et
  bien ce sera la fin d'Ubuntu pour moi.
 
  Je suis très pessimiste... Unity est essentiellement un plugin Compiz. Et
  Compiz est un gestionnaire de fenêtre cool mais très instable. Je ne
 crois
  pas que Compiz va s'améliorer d'ici avril...

 Dis-nous en plus. Pourquoi trouve tu cela instable? Définis les
 instabilités pour toi. J'utilise Unity tout le temps depuis maintenant
 très longtemps, et ca fonctionne très bien sur mon poste. Peut-être
 s'agit-il de problèmes de compatibilité avec ta carte graphique, ou
 autre chose.

 Il y a énormément de travail mis sur Compiz et Unity depuis 11.04.
 Dire que c'est instable maintenant ne rend pas justice au travail
 accompli; même si j'admet qu'il y a encore (évidemment, il y en aura
 toujours) du travail à faire. As-tu essayé la version de
 développement?


De plus, les paramètres risquant de déstabiliser Compiz seront retirées du
gestionnaire de configuration de Compiz (CCSM):

http://www.omgubuntu.co.uk/2012/02/precise-adds-user-safeguards-to-compiz-app/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+d0od+%28OMG%21+Ubuntu%21%29


 Mathieu Trudel-Lapierre mathieu...@gmail.com
 Freenode: cyphermox, Jabber: mathieu...@gmail.com
 4096R/EE018C93 1967 8F7D 03A1 8F38 732E  FF82 C126 33E1 EE01 8C93

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

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


Re: [Ubuntu-QC] Canonical ne financera plus le développement de Kubuntu

2012-02-15 Thread Lou.P Deville
Il y'a E-17, LXDE etc..  tellement d'autres environnements alors Ubuntu
peut avoir tellement d'autres couleurs de couleurs Unity ce n'est pas la
fin du monde au pire c'est juste du visuel les puristes iront peut-être
même jusqu'à dire messieurs, mesdames geek et non-geek on se met a vos
émulateurs de terminaux et on  coupe court à tout ce blabla

LoupDeVille


Le 15 février 2012 22:08, Gilbert Dion gilbertd...@gmail.com a écrit :

 Le 15 février 2012 18:13, Mathieu Trudel-Lapierre mathieu...@gmail.coma 
 écrit :

 2012/2/14 Sebastien Roy r...@iro.umontreal.ca:
  Je voudrais simplement mentionner que Unity est incroyablement instable
 et
  que si il n'est pas stabilisé pour 12.04, et qu'on a plus
 d'alternative, et
  bien ce sera la fin d'Ubuntu pour moi.
 
  Je suis très pessimiste... Unity est essentiellement un plugin Compiz.
 Et
  Compiz est un gestionnaire de fenêtre cool mais très instable. Je ne
 crois
  pas que Compiz va s'améliorer d'ici avril...

 Dis-nous en plus. Pourquoi trouve tu cela instable? Définis les
 instabilités pour toi. J'utilise Unity tout le temps depuis maintenant
 très longtemps, et ca fonctionne très bien sur mon poste. Peut-être
 s'agit-il de problèmes de compatibilité avec ta carte graphique, ou
 autre chose.

 Il y a énormément de travail mis sur Compiz et Unity depuis 11.04.
 Dire que c'est instable maintenant ne rend pas justice au travail
 accompli; même si j'admet qu'il y a encore (évidemment, il y en aura
 toujours) du travail à faire. As-tu essayé la version de
 développement?


 De plus, les paramètres risquant de déstabiliser Compiz seront retirées du
 gestionnaire de configuration de Compiz (CCSM):


 http://www.omgubuntu.co.uk/2012/02/precise-adds-user-safeguards-to-compiz-app/?utm_source=feedburnerutm_medium=feedutm_campaign=Feed%3A+d0od+%28OMG%21+Ubuntu%21%29


 Mathieu Trudel-Lapierre mathieu...@gmail.com
 Freenode: cyphermox, Jabber: mathieu...@gmail.com
 4096R/EE018C93 1967 8F7D 03A1 8F38 732E  FF82 C126 33E1 EE01 8C93

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



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


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


[ubuntu-uk] apple: the object of an open source play

2012-02-15 Thread James Morrissey
This isn't ubuntu related, but thought some people might find the
idea, and content, interesting.

http://www.guardian.co.uk/stage/2012/feb/14/mike-daisey-steve-jobs-play

j

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


[ubuntu-uk] Xfce Menus

2012-02-15 Thread Nigel Verity

Hi
For anybody who is not keen on the Unity or Gnome3 GUI I strongly recommend 
Xfce. The standard Xfce project screenshots don't do justice to the visual 
effects you can create using the compositor and desktop colour gradients, plus 
a little tweaking of a file called .gtkrc-2.0. However, there is one setting I 
have been unable to modify - the foreground and background colours of the 
menus. No matter what colours I use on the task bar, the menus are always black 
text on a white background. I have seen ready-made themes where this is not the 
case, so there must be a user-accessible setting somewhere. Does anyone know 
how to do it?
Grateful for any suggestions.
Nige  -- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


[ubuntu-uk] Wireless - Laptops

2012-02-15 Thread Sean Miller
I have two laptops that are both Currys brands (Advent and e-Machines) and
they always used to run Ubuntu fine.

Lately, though, there's no wireless at all... doesn't detect anything at
all, so I assume it's a driver issue of some sort.

As I am not currently anywhere near a wired connection I can't investigate
whilst online - I know it's a long shot, but anybody else got one of these
brands and had a problem and know why?

No problem with Linux Mint etc... just Ubuntu... (have tried Kubuntu too,
and same symptoms)

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


Re: [ubuntu-uk] Wireless - Laptops

2012-02-15 Thread Simon Greenwood
On 15 February 2012 11:11, Sean Miller s...@seanmiller.net wrote:

 I have two laptops that are both Currys brands (Advent and e-Machines) and
 they always used to run Ubuntu fine.

 Lately, though, there's no wireless at all... doesn't detect anything at
 all, so I assume it's a driver issue of some sort.

 As I am not currently anywhere near a wired connection I can't investigate
 whilst online - I know it's a long shot, but anybody else got one of these
 brands and had a problem and know why?

 No problem with Linux Mint etc... just Ubuntu... (have tried Kubuntu too,
 and same symptoms)


You'll have to find out what the wireless hardware is on the machines and
search for issues or drivers. They're probably Broadcom and need either
ndiswrapper or the firmware loading for them - I seem to recall that this
has been taken out of Ubuntu recently.

s/

-- 
Twitter: @sfgreenwood
more of a stain than a globule
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Wireless - Laptops

2012-02-15 Thread Sean Miller
On 15 February 2012 11:24, Simon Greenwood sfgreenw...@gmail.com wrote:

 need either ndiswrapper or the firmware loading for them - I seem to
 recall that this has been taken out of Ubuntu recently.


That was the sort of thing I thought it would probably be... the developers
making things cleaner by removing stuff...

I am not sure if I am dreaming but do I not remember that at one stage
Ubuntu used to notice drivers it didn't have and offer to download/install
them from the web?

If I get the machine onto an RJ45 lead is there a possibility the OS could
still do this?

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


Re: [ubuntu-uk] Wireless - Laptops

2012-02-15 Thread Andy Braben
On 15 February 2012 11:45, Sean Miller s...@seanmiller.net wrote:

 On 15 February 2012 11:24, Simon Greenwood sfgreenw...@gmail.com wrote:

 need either ndiswrapper or the firmware loading for them - I seem to
 recall that this has been taken out of Ubuntu recently.


 That was the sort of thing I thought it would probably be... the
 developers making things cleaner by removing stuff...

 I am not sure if I am dreaming but do I not remember that at one stage
 Ubuntu used to notice drivers it didn't have and offer to download/install
 them from the web?

 If I get the machine onto an RJ45 lead is there a possibility the OS could
 still do this?



Yes - Load Additional Drivers and if there are any missing, it should
hopefully search and offer to install. It is certainly worth a try.

Andy.




 Sean

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


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


Re: [ubuntu-uk] Wireless - Laptops

2012-02-15 Thread Barry Drake

On 15/02/12 11:45, Sean Miller wrote:
If I get the machine onto an RJ45 lead is there a possibility the OS 
could still do this?


Very probably.  I had to do this with my old Dell netbook which had a 
Broadcom card.  Once you are on a wired connection, you can open the 
'additional drivers' app and it will search online for an appropriate 
proprietary driver.


--
Barry Drake is a member of the the Ubuntu Advertising team.
http://ubuntuadverts.org/


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


Re: [ubuntu-uk] Wireless - Laptops

2012-02-15 Thread Liam Proven
On 15 February 2012 11:11, Sean Miller s...@seanmiller.net wrote:
 I have two laptops that are both Currys brands (Advent and e-Machines) and
 they always used to run Ubuntu fine.

 Lately, though, there's no wireless at all... doesn't detect anything at
 all, so I assume it's a driver issue of some sort.

 As I am not currently anywhere near a wired connection I can't investigate
 whilst online - I know it's a long shot, but anybody else got one of these
 brands and had a problem and know why?

 No problem with Linux Mint etc... just Ubuntu... (have tried Kubuntu too,
 and same symptoms)

Ubuntu version? 32- or 64-bit? Kernel version?

-- 
Liam Proven • Profile: http://lproven.livejournal.com/profile
Email: lpro...@cix.co.uk • GMail/G+/Twitter/Flickr/Facebook: lproven
MSN: lpro...@hotmail.com • Skype/AIM/Yahoo/LinkedIn: liamproven
Tel: +44 20-8685-0498 • Cell: +44 7939-087884

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


Re: [ubuntu-uk] Xfce Menus

2012-02-15 Thread Andres Muniz
- Mensaje original -
 
 Hi
 However, there is one setting I have been unable to modify - the
 foreground and background colours of the menus. No matter what colours I
 use on the task bar, the menus are always black text on a white
 background. I have seen ready-made themes where this is not 

hi,
this might be a bit basic but is all I know. When i was with xubuntu i had to 
log out and in again to change the backgroud.probably there is a clever cli 
command.-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] Top Posting

2012-02-15 Thread paul sutton
On 23/11/11 10:07, Steve Fisher wrote:
 I hate bottom posting, I don't want to scan/re-read a thread I have
 been following over and over.  I always delete the original email I
 reply to and quote it where ever necessary.  This is particularly bad
 if someone replies to a digest, I just give up!

 Some of the guys on my local LUG are totally obsessed with bottom
 posting and with HTML email, life is too short.

 Steve


I try and post at the bottom under the text I am replying to,  so if
your e-mail has several points I try and answer under each one,  as i
think this keeps replies in context,  however If I remember I try and
delete a lot of the e-mail and just leave the relevent bits otherwise
you end up with a huge e-mail

Paul

-- 

--
http://www.zleap.net
http://www.ubuntu.com

skype : psutton111

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


no speech in unity 3d launcher

2012-02-15 Thread Guy Schlosser
Hi all, is anyone else running Unity 3d in Precise?  I was just curious 
because I still have no speech on either the launcher or dash with 
Orca.  On my laptop, with Unity 2d, these work well.  Is this a known 
bug with Unity 3d?  Any ideas or suggestions on fixing would be greatly 
appreciated.


Thanks,


Guy


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


Re: no speech in unity 3d launcher

2012-02-15 Thread Guy Schlosser
Hey Rob, thanks for the reply. Hmmm, neither alt+f1 or super key grab 
focus here.  Is there something I may not have installed correctly?  Any 
way of debugging?


Thanks,


Guy


On 02/15/2012 03:49 PM, Rob Whyte wrote:

Hi Guy,
I use both 2d and 3d and have speech.
How ever, if you use the old method of control alt tab to get to the 
launcher and unity panel Orca does not seem to speak.

Alt F1 for the launcher and Super key for the Dash grab focus.

Thanks
Rob

On 16/02/12 07:36, Guy Schlosser wrote:
Hi all, is anyone else running Unity 3d in Precise?  I was just 
curious because I still have no speech on either the launcher or dash 
with Orca.  On my laptop, with Unity 2d, these work well.  Is this a 
known bug with Unity 3d?  Any ideas or suggestions on fixing would be 
greatly appreciated.


Thanks,


Guy







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


Re: It's time to jettison CCSM

2012-02-15 Thread Didier Roche

Le 09/02/2012 20:49, Andrew Starr-Bochicchio a écrit :

On Fri, Feb 3, 2012 at 5:43 PM, Andrew Starr-Bochicchio
a.star...@gmail.com  wrote:

On Wed, Feb 1, 2012 at 10:26 AM, Jorge O. Castrojo...@ubuntu.com  wrote:

On Tue, Jan 31, 2012 at 6:09 PM, Jeremy Bichajbi...@ubuntu.com  wrote:

Yes, there are lots of ideas but until someone actually has a working
patch to make CCSM better, the complaints posted on this thread are
still valid. And one of the most important points as Didier posted is
that CCSM has had very little work done on it in along time despite
known problems. I hate to be off-putting but what CCSM needs is not
power users on mailing lists, forums, twitter, etc. but developers.

More to Petko's point; we do have Compiz bugs and outreach as part of
the general Unity developer growth. In my experience however it's very
difficult to get new volunteers to be able to just dive into Compiz
because it's complicated.

I've noticed there are a couple old merge proposals against
lp:compiz-libcompizconfig that might be relevant to this conversion.
Particularly:

https://code.launchpad.net/~compiz-team/compiz-libcompizconfig/compiz-libcompizconfig.fix_873772/+merge/79456

which aims to fix LP: #873772 and LP: #88190:

It is possible for users to really mess up their systems by disabling
important plugins like move, resize, composite, opengl and unityshell.
As such, we should provide a way for distributions to be able to lock
down certain parts of the user's configuration, such as settings
values or the plugins one is allowed to have enabled or disabled

I don't know if Unity/Compiz have a patch pilot scheme, but it would
be nice if someone with the a deeper knowledge of Compiz could help
push these to completion. This is outside of my skill set.

What is in my skill set is a bit of PyGTK. I've had these two merge
proposals up for almost a week now with no response. I have upload
rights for ccsm in Ubuntu, but I'd still appreciate a code review.

https://code.launchpad.net/~andrewsomething/ubuntu/precise/compizconfig-settings-manager/first_run_warning/+merge/91374

Add a first run dialog providing a user warning.

https://code.launchpad.net/~andrewsomething/ubuntu/precise/compizconfig-settings-manager/disable_unity_checkbox/+merge/91375

  If in a Unity session, don't allow the user to disable Unity from main view.


Thanks a lot Andrew for your great contribution! After some small 
guidances (and targetting the correct branch), bothof them are now 
sponsored!


Any other code contribution to help on ccsm is more than appreciated :)
Cheers,
Didier

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


Re: CFT: ClickPad support

2012-02-15 Thread Chase Douglas
On 02/13/2012 03:12 PM, Chase Douglas wrote:
 On 02/13/2012 11:56 PM, Kristian Kißling wrote:
 Chase Douglas schrieb folgendes am 12.02.2012 19:56:
 On Feb 12, 2012, at 10:42 AM, Chris Van Hoof vanh...@canonical.com wrote:

 Hey Chase,

 thanks a lot, thats a good thing! This morning I thought it should be
 easier to work with Ubuntu when you forget your external mouse :)

 Your scripts work, but there are some glitches. Context menus only show
 up if I touch specific points in the upper area of the right button
 area. If I use the lower area, nothing happens, but I guess you know
 that already. If you need more feedback and data, drop me a line.
 
 How big (in height % of overall touchpad) is the lower area where right
 click doesn't work? Some of these trackpads produce locations outside of
 the reported max and min values. I wonder if where you are clicking is
 above the maximum in the Y direction (Y coordinates are from top to bottom).

I posted a new version of the enable-rightbutton.sh script to
people.canonical.com yesterday. It sets the bottom edge of the right
button area twice as far as the maximum value. This should catch all
touches, even those beyond the reported range of the device.

Thanks,

-- Chase

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


Re: Google Summer of Code 2012 announced

2012-02-15 Thread Daniel Holbach
Hello Dylan,

On 13.02.2012 17:06, Dylan McCall wrote:
 Should that list of project ideas be things that will / can be mentored,
 or is it to give a taste of what goes on in Ubuntu? I have a list of
 (not completely over-the-top) ideas over here and I wouldn't mind asking
 around for appropriate mentors, but I'm inherently lazy so I won't do
 that part unless I need to :)

I think the more people we have who are willing to help mentoring ideas,
the better. Why don't you bring up your list of ideas on the mailing
list and we see who is interested in those ideas as well?

Have a great day,
 Daniel

-- 
Get involved in Ubuntu development! developer.ubuntu.com/packaging
And follow @ubuntudev on identi.ca/twitter.com/facebook.com/gplus.to

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


Re: Ubuntu Algorithms Team

2012-02-15 Thread Yash Jain
I am a kind of newbie in algorithm design, it would be great if we
have such a forum where we can discuss on Algorithms.

On Sat, Feb 11, 2012 at 3:51 AM, bdfhjk bdf...@gmail.com wrote:
 Hello,

 I'm going to create Ubuntu Algorithms Team, which will be responsible for:

 * Helping developers in the implementation of the latest and hard to
 understand algorithms
 * Detection of 'bottlenecks' at boot time and during run time of Ubuntu and
 coming up with ways to improve their
 * Informing the community about the latest scientific works and ideas, where
 they can be of use in Ubuntu, as well as some advices on the practical use
 of existing algorithms.

 This would be done through:
 * Establishment of the Launchpad page, where developers will be able to
 submit their problems and situations that most slow down the program using
 the launchpad bug system. UAT members will seek a solution, or state that at
 the present state of science, solution does not exist.
 * Issuing a monthly review of the major scientific achievements that may be
 related to Ubuntu
 * Internal training programmers in the field of algorithms and data
 structures (useful especially for beginners)


 Please write your comments.
 This team will be useful to you?
 Do you need training in algorithms?
 Will I find other people who also are interested in algorithms and will want
 to join with me to help community as member of the Ubuntu Algorithms Team?

 Marek Bardoński

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


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


Re: Ubuntu Algorithms Team

2012-02-15 Thread Janne Jokitalo
On Fri, Feb 10, 2012 at 11:21:04PM +0100, bdfhjk wrote:
 Hello,
 I’m going to create Ubuntu Algorithms Team, which will be responsible for:
snip 
 * Detection of ‘bottlenecks’ at boot time and during run time of Ubuntu and
 coming up with ways to improve their
snip
 This would be done through:
snip
 * Internal training programmers in the field of algorithms and data
 structures (useful especially for beginners)
 
 Please write your comments.
 This team will be useful to you?
 Do you need training in algorithms?
 Will I find other people who also are interested in algorithms and will
 want to join with me to help community as member of the Ubuntu Algorithms
 Team?

Hi, I trimmed the stuff I didn't know that much about, but left what I
considered useful (either to me, or the distribution) or what I thought would be
beneficial to me. I admit I need lots of practice in this area, so I would be
very interested in this sort of thing.

So, o/  +1 from /me.


-- 
Jaska (aka astraljava @ irc.freenode.net)




signature.asc
Description: Digital signature
-- 
ubuntu-devel mailing list
ubuntu-devel@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel


Re: Google Summer of Code 2012 announced

2012-02-15 Thread Dylan McCall
Should that list of project ideas be things that will / can be mentored, or
is it to give a taste of what goes on in Ubuntu? I have a list of (not
completely over-the-top) ideas over here and I wouldn't mind asking around
for appropriate mentors, but I'm inherently lazy so I won't do that part
unless I need to :)

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


Minutes from the Ubuntu Kernel Team meeting, 2012-02-14

2012-02-15 Thread Joseph Salisbury

= Meeting Minutes =
[[http://irclogs.ubuntu.com/2012/02/14/%23ubuntu-meeting.txt|IRC Log of 
the meeting.]]

[[http://voices.canonical.com/kernelteam|Meeting minutes.]]

== Agenda ==
[[https://wiki.ubuntu.com/KernelTeam/Meeting#Tues, 14 Feb, 2012|20120214 
Meeting Agenda]]



=== ARM Status  ===
 P/omap4: nothing new to report this week

=== Release Metrics and Incoming Bugs  ===
 Release metrics and incoming bug data can be reviewed at the following 
link:
[[http://people.canonical.com/~kernel/reports/kt-meeting.txt|Release 
Metrics.]]


=== Milestone Targeted Work Items  ===
 || apw|| hardware-p-kernel-boot|| 2 work items ||
 |||| hardware-p-kernel-config-review   || 3 work items ||
 |||| hardware-p-kernel-delta-review|| 2 work items ||
 || ogasawara  || hardware-p-kernel-config-review   || 4 work items ||
 || sconklin   || servercloud-p-ceph|| 1 work item  ||
 If your name is in the above table, please review your Beta-1 work items.

=== Blueprint: hardware-p-kernel-power-management  ===
 No update this week.

=== Status: Precise Development Kernel  ===
 We've recently rebased to upstream stable v3.2.6 and uploaded.  Please
 note that Beta Freeze is next week, Thurs Feb 23.  I ideally want to
 upload our final Beta-1 kernel by the end of the week, but no later than
 Monday.  If there are any patches which need to land, submit them now.
 Important upcoming dates:
  * Thurs Feb 23 - Beta Freeze (~1 week)
  * Thurs Mar 01 - Beta 1 (~2 weeks)

=== Status: CVE's  ===
 Currently we have 73 CVEs on our radar, one new CVEs were added this week.
 See the CVE matrix for the current list:
 [[http://people.canonical.com/~kernel/status/cve-metrics.txt|CVE 
Metrics]]


 Overall the backlog is unchanged this week, though we have closed a couple
 of hardy CVEs and one CVE across the board:
 [[http://people.canonical.com/~kernel/cve/pkg/CVE-linux.txt|CVE Linux]]


=== Status: Stable, Security, and Bugfix Kernel Updates - 
Oneiric/Natty/Maverick/Lucid/Hardy  ===


 Here is the status for the main kernels, until today (Jan. 24):

  * Hardy - 2.6.24-31.99
   * Several CVE commits. There was also a significant change 
implemented by Tim and Andy for xen and openvz to make

 them easier to maintain.

  * Lucid - 2.6.32-39.86
   * Probably close to 100 upstream stable commits in this upload. We 
were in a holding pattern on lucid last cycle
 as work was done on the 10.04.04 point release. This will get us 
caught up again.


  * Maverick - 2.6.35-32.66
   * Just a couple CVEs.

  * Natty - 2.6.38-13.56
   * Just a couple CVEs.

  * Oneiric - 3.0.0-16.29
   * In addition to some CVEs, there are a bunch of stable upstream 
commits.


 Current opened tracking bugs details:
  * http://people.canonical.com/~kernel/reports/kernel-sru-workflow.html

 For SRUs, SRU report is a good source of information:
  * http://people.canonical.com/~kernel/reports/sru-report.html

 Future stable cadence cycles:
  * https://wiki.ubuntu.com/PrecisePangolin/ReleaseInterlock

=== Open Discussion or Questions? Raise your hand to be recognized  ===a
 No open discussion or questions.

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


Re: Ubuntu Algorithms Team

2012-02-15 Thread José Luís Faria
Em 10-02-2012 22:21, bdfhjk escreveu:

 Hello,

 I'm going to create Ubuntu Algorithms Team, which will be responsible for:

 * Helping developers in the implementation of the latest and hard to
 understand algorithms
 * Detection of 'bottlenecks' at boot time and during run time of
 Ubuntu and coming up with ways to improve their
 * Informing the community about the latest scientific works and ideas,
 where they can be of use in Ubuntu, as well as some advices on the
 practical use of existing algorithms.

 This would be done through:
 * Establishment of the Launchpad page, where developers will be able
 to submit their problems and situations that most slow down the
 program using the launchpad bug system. UAT members will seek a
 solution, or state that at the present state of science, solution does
 not exist.
 * Issuing a monthly review of the major scientific achievements that
 may be related to Ubuntu
 * Internal training programmers in the field of algorithms and data
 structures (useful especially for beginners)


 Please write your comments.
 This team will be useful to you?
 Do you need training in algorithms?
 Will I find other people who also are interested in algorithms and
 will want to join with me to help community as member of the Ubuntu
 Algorithms Team?

 Marek Bardon'ski


Hi ppl,

I'm a systems administrator and developer to.
I'm available!

-- 
   :)   cumprimentos
--
José Luís Faria
Network Engineer/System Admin
Departamento de Informática
Universidade do Minho
Braga, Portugal 



smime.p7s
Description: Assinatura criptografada S/MIME
-- 
ubuntu-devel mailing list
ubuntu-devel@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel


ARM IRC Meeting Remember

2012-02-15 Thread Michael Casadevall
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

 Every Thursday at 15:00 UTC.

We'll be having the usual IRC meeting on #ubuntu-meeting, on
Thursday 2011-02-16 at 15:00 UTC.

The meeting agenda is available here:
https://wiki.ubuntu.com/ARM/Meeting/2012/20120216

The meeting history page with links to prior meetings is at:
http://wiki.ubuntu.com/ARM/Meeting

Thank you,
Michael
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPO/ImAAoJEGKVRgSEnX1Qws4H/3u906nM5N1WWVXMwCpq2yhQ
m2LEU5hFbFXIh5uPRDUDDd3dbGl5EekgJyOljwljetb6rq+ix2M2gsH0GDmoosBc
+1AVkOHLIwP4YGrVgN/Pa9vdZ5Af+07FyApSiVZp+waGvgA9Lzr0eA/CT0ZqP1CO
bN94EY2Ly/36W4LVUQA2h5SuvHQ4iQ6c0hstLX5Xh/H8YJmlfX4/8q7IqeTbpa+c
z/xLwn2oC13sE6MbhdpQMzY5Bc9vUtLVupBv4rL3tV1wDQZGpYImfT7/+XFbrQv8
gOziGcRepOi7O+S90NtZo+61YbHK9/lgWlOgcm/s+Pch6uAmg17RKR3w88q60ww=
=QjfY
-END PGP SIGNATURE-

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


Re: Help translating Pastebinit

2012-02-15 Thread Yaron Shahrabani
Hey Dave! I see most of the strings are CLI, can you tell me which aren't?
Yaron Shahrabani

Hebrew translator




On Tue, Feb 14, 2012 at 1:51 PM, David Planella
david.plane...@ubuntu.comwrote:

 Al 14/02/12 11:12, En/na paco ha escrit:

  -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1



 El 14/02/12 10:53, David Planella escribió:

 Hi translators,

 I'm forwarding a call for translations from the always awesome
 Stéphane Graber requesting help to translate pastebinit. Let's show
 everyone we're equally awesome by completing translations in as
 many languages as possible!:

 https://translations.**launchpad.net/pastebinithttps://translations.launchpad.net/pastebinit

 « Upcoming pastebinit 1.3 release --**-

 Every year, I try to set a few hours aside to work on one of my
 upstream projects, pastebinit.

 This is one of these projects which mostly “just works” with quite
 a lot of users and quite a few of them sending merge proposals and
 fixes in bug reports.

 I’m planning on uploading pastebinit 1.3 right before Feature
 Freeze, either on Wednesday or early Thursday, delaying the release
 as much as possible to get a few last translations in.

 If you speak any language other than English, please go to:\
 [https://translations.**launchpad.net/pastebinit][https://translations.launchpad.net/pastebinit%5D%5B
 ]

 Any help getting this as well translated as possible would be
 appreciated, for Ubuntu users, you’ll have to deal with it for the
 next 5 years, so it’s kind of important :)

 Now the changes, they’re pretty minimal but still will make some
 people happy I’m sure:

 [https://translations.**launchpad.net/pastebinithttps://translations.launchpad.net/pastebinit
 ]:
 https://translations.**launchpad.net/pastebinithttps://translations.launchpad.net/pastebinit»

 Source:
 http://www.stgraber.org/2012/**02/12/upcoming-pastebinit-1-3-**release/http://www.stgraber.org/2012/02/12/upcoming-pastebinit-1-3-release/

  Cheers, David

  Spanish complete!
 - --

 Francisco Molinero
 www.pacoaldia.com

 Este correo ha sido gestionado con Linux
 No lo imprima si no es absolutamente necesario
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.11 (GNU/Linux)

 iEYEARECAAYFAk86M40ACgkQ9jyJLq**wCW/**kiFQCcCB27dY0VfEIpAXQVXDK0pAeN
 Km8AnA3/**z0XldjlNxVGa6JdssIgx2vZl
 =fZ4r
 -END PGP SIGNATURE-


 Awesome, great work guys! 10 completely translated languages and many more
 with just a few strings to go.

 https://translations.**launchpad.net/pastebinithttps://translations.launchpad.net/pastebinit

 Anyone up for finishing them?

 Cheers,
 David.


 --
 David Planella
 Ubuntu Translations Coordinator
 www.ubuntu.com / 
 www.davidplanella.wordpress.**comhttp://www.davidplanella.wordpress.com
 www.identi.ca/dplanella / www.twitter.com/dplanella

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

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


Re: Help translating Pastebinit

2012-02-15 Thread David Planella

Al 15/02/12 09:44, En/na Yaron Shahrabani ha escrit:

Hey Dave! I see most of the strings are CLI, can you tell me which aren't?
YaronShahrabani



Hey Yaron,

Actually, pastebinit is a CLI application, so the easy answer is all 
strings are CLI! :)


Cheers,
David.


Hebrew translator




On Tue, Feb 14, 2012 at 1:51 PM, David Planella
david.plane...@ubuntu.com mailto:david.plane...@ubuntu.com wrote:

Al 14/02/12 11:12, En/na paco ha escrit:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



El 14/02/12 10:53, David Planella escribió:

Hi translators,

I'm forwarding a call for translations from the always awesome
Stéphane Graber requesting help to translate pastebinit.
Let's show
everyone we're equally awesome by completing translations in as
many languages as possible!:

https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit

« Upcoming pastebinit 1.3 release
--__-

Every year, I try to set a few hours aside to work on one of my
upstream projects, pastebinit.

This is one of these projects which mostly “just works” with
quite
a lot of users and quite a few of them sending merge
proposals and
fixes in bug reports.

I’m planning on uploading pastebinit 1.3 right before Feature
Freeze, either on Wednesday or early Thursday, delaying the
release
as much as possible to get a few last translations in.

If you speak any language other than English, please go to:\
[https://translations.__launchpad.net/pastebinit][
https://translations.launchpad.net/pastebinit%5D%5B]

Any help getting this as well translated as possible would be
appreciated, for Ubuntu users, you’ll have to deal with it
for the
next 5 years, so it’s kind of important :)

Now the changes, they’re pretty minimal but still will make some
people happy I’m sure:

[https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit]:
https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit »

Source:

http://www.stgraber.org/2012/__02/12/upcoming-pastebinit-1-3-__release/

http://www.stgraber.org/2012/02/12/upcoming-pastebinit-1-3-release/

  Cheers, David

Spanish complete!
- --

Francisco Molinero
www.pacoaldia.com http://www.pacoaldia.com

Este correo ha sido gestionado con Linux
No lo imprima si no es absolutamente necesario
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk86M40ACgkQ9jyJLq__wCW/__kiFQCcCB27dY0VfEIpAXQVXDK0pAeN
Km8AnA3/__z0XldjlNxVGa6JdssIgx2vZl
=fZ4r
-END PGP SIGNATURE-


Awesome, great work guys! 10 completely translated languages and
many more with just a few strings to go.

https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit

Anyone up for finishing them?

Cheers,
David.


--
David Planella
Ubuntu Translations Coordinator
www.ubuntu.com http://www.ubuntu.com /
www.davidplanella.wordpress.__com
http://www.davidplanella.wordpress.com
www.identi.ca/dplanella http://www.identi.ca/dplanella /
www.twitter.com/dplanella http://www.twitter.com/dplanella

--
ubuntu-translators mailing list
ubuntu-translators@lists.__ubuntu.com
mailto:ubuntu-translators@lists.ubuntu.com
https://lists.ubuntu.com/__mailman/listinfo/ubuntu-__translators
https://lists.ubuntu.com/mailman/listinfo/ubuntu-translators





--
David Planella
Ubuntu Translations Coordinator
www.ubuntu.com / www.davidplanella.wordpress.com
www.identi.ca/dplanella / www.twitter.com/dplanella

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


Re: Help translating Pastebinit

2012-02-15 Thread David Planella

Al 15/02/12 14:55, En/na Yaron Shahrabani ha escrit:

Great! so in this case, can you please eliminate the Hebrew translation?
Hebrew doesn't appear well in CLI anyway...

Kind regards,
YaronShahrabani

Hebrew translator



Good point. We cannot remove it from Launchpad, but it can probably be 
blacklisted in the code.


Stéphane, do you think you could blacklist Hebrew translations in 
pastebinit?


Cheers,
David.





On Wed, Feb 15, 2012 at 3:54 PM, David Planella
david.plane...@ubuntu.com mailto:david.plane...@ubuntu.com wrote:

Al 15/02/12 09:44, En/na Yaron Shahrabani ha escrit:

Hey Dave! I see most of the strings are CLI, can you tell me
which aren't?
YaronShahrabani


Hey Yaron,

Actually, pastebinit is a CLI application, so the easy answer is all
strings are CLI! :)

Cheers,
David.

Hebrew translator




On Tue, Feb 14, 2012 tel:2012 at 1:51 PM, David Planella
david.plane...@ubuntu.com mailto:david.plane...@ubuntu.com
mailto:david.planella@ubuntu.__com
mailto:david.plane...@ubuntu.com wrote:

Al 14/02/12 11:12, En/na paco ha escrit:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



El 14/02/12 10:53, David Planella escribió:

Hi translators,

I'm forwarding a call for translations from the
always awesome
Stéphane Graber requesting help to translate pastebinit.
Let's show
everyone we're equally awesome by completing
translations in as
many languages as possible!:

https://translations.__launchp__ad.net/pastebinit
http://launchpad.net/pastebinit

https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit

« Upcoming pastebinit 1.3 release
---


Every year, I try to set a few hours aside to work
on one of my
upstream projects, pastebinit.

This is one of these projects which mostly “just
works” with
quite
a lot of users and quite a few of them sending merge
proposals and
fixes in bug reports.

I’m planning on uploading pastebinit 1.3 right
before Feature
Freeze, either on Wednesday or early Thursday,
delaying the
release
as much as possible to get a few last translations in.

If you speak any language other than English, please
go to:\
[https://translations.__launch__pad.net/pastebinit][
http://launchpad.net/pastebinit%5D%5B
https://translations.__launchpad.net/pastebinit%5D%5B
https://translations.launchpad.net/pastebinit%5D%5B__]


Any help getting this as well translated as possible
would be
appreciated, for Ubuntu users, you’ll have to deal
with it
for the
next 5 years, so it’s kind of important :)

Now the changes, they’re pretty minimal but still
will make some
people happy I’m sure:

[https://translations.__launch__pad.net/pastebinit
http://launchpad.net/pastebinit
https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit]:
https://translations.__launchp__ad.net/pastebinit
http://launchpad.net/pastebinit
https://translations.__launchpad.net/pastebinit
https://translations.launchpad.net/pastebinit »

Source:

http://www.stgraber.org/2012/02/12/upcoming-pastebinit-1-__3-__release/

http://www.stgraber.org/2012/__02/12/upcoming-pastebinit-1-3-__release/

http://www.stgraber.org/2012/__02/12/upcoming-pastebinit-1-3-__release/
http://www.stgraber.org/2012/02/12/upcoming-pastebinit-1-3-release/

  Cheers, David

Spanish complete!
- --

Francisco Molinero
www.pacoaldia.com http://www.pacoaldia.com
http://www.pacoaldia.com


Este correo ha sido gestionado con Linux
No lo imprima si no es absolutamente necesario
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)


  
iEYEARECAAYFAk86M40ACgkQ9jyJLqwCW/kiFQCcCB27dY0VfEIpAXQVXDK0pAeN
Km8AnA3/z0XldjlNxVGa6JdssIgx2vZl

=fZ4r
-END PGP SIGNATURE-


Awesome, great work guys! 10 completely translated languages and
many more with just a few strings to go.


Re: Help translating Pastebinit

2012-02-15 Thread Hannie Dumoleyn

Op 14-02-12 10:53, David Planella schreef:

Hi translators,

I'm forwarding a call for translations from the always awesome 
Stéphane Graber requesting help to translate pastebinit. Let's show 
everyone we're equally awesome by completing translations in as many 
languages as possible!:


https://translations.launchpad.net/pastebinit

«
Upcoming pastebinit 1.3 release
---


Dutch: translated 100%

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


POSTPONE testing start for the 6'th language pack update for Ubuntu 11.04 (Natty)

2012-02-15 Thread Kenneth Nielsen

Hallo translators

The testing for the 6'th language pack update for Ubuntu 11.04 was 
supposed to start tomorrow, but there was a request (that I missed) for 
making this a full update, so I'll postpone the start of the testing 
until we can get full packages (including documentation) made.


I have changed the calendar feed and will announce the testing as soon 
as the packs are ready.


Regards Kenneth (TLE)

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


HEADS UP upcoming extra lang pack update for the 10.04.4 point release

2012-02-15 Thread Kenneth Nielsen

Hallo translators

Even though it was not in the original language pack release schedule we 
have decided to do a language pack update for the 10.04.4 point release. 
The language pack will not make it in time for the actual release (and 
the ISO), but will still be sent out as an update.


I'll call for testing when the packs are ready.

Regards Kenneth

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


Re: (rant) Is there any hope

2012-02-15 Thread Ralf Mardorf
On Wed, 2012-02-15 at 00:11 -0500, Rick Green wrote:
 [snip] But 10.04 wasn't stable enough to run jack 
 for more than a few minutes before the xrun count went thru the roof.

I always build a kernel-rt myself. At least you should use a full
preempted with threadirqs set to the boot parameters. There are just a
few developers, such as the 64 Studio people, that build kernel-rt I
like. For example Arch Linux kernels fail for my Wi-Fi, they exclude
HPET to the rt. Ubuntu Studio 11.10 by default comes with the
kernel-generic.

If you get xruns, first get a kernel-rt, second check if rtirq set your
card to the highest priority.

I for example need to add hdspm:
RTIRQ_NAME_LIST=rtc hdspm snd usb i8042

The second might not have significant impact, but the first, a kernel-rt
will improve a lot.

 [snip] jack inexplicably dies [snip]

Did you switch between Jack1 and Jack2?

Regards,
Ralf


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


Re: (rant) Is there any hope

2012-02-15 Thread Rick Green

On Wed, 15 Feb 2012, Ralf Mardorf wrote:


On Wed, 2012-02-15 at 00:11 -0500, Rick Green wrote:

[snip] But 10.04 wasn't stable enough to run jack
for more than a few minutes before the xrun count went thru the roof.


I always build a kernel-rt myself. At least you should use a full
preempted with threadirqs set to the boot parameters. There are just a
few developers, such as the 64 Studio people, that build kernel-rt I
like. For example Arch Linux kernels fail for my Wi-Fi, they exclude
HPET to the rt. Ubuntu Studio 11.10 by default comes with the
kernel-generic.
   Yeah, that was the first, worst regression down this slippery slope. 
What happened?  I would think that packaging an -rt kernel would be job 1 
for a 'studio' distro.  Especially since the RT patches were accepted into 
mainline.  I was comfortable compiling and installing kernels way back in 
the days of LILO and Linux 1.x, but I could probably count on one hand the 
number of times I've attempted it since 2.0, and I'm nowhere up to speed 
on the complexities of grub2 and initrd's, so I'm now dependent on 
distributor's packages.
  My portable recording rig runs on an early AMD_64 laptop.  The TI 
firewire and Broadcom Wifi share an IRQ, so I've long ago learned to turn 
off the Wifi before I start jack.




If you get xruns, first get a kernel-rt, second check if rtirq set your
card to the highest priority.

I for example need to add hdspm:
RTIRQ_NAME_LIST=rtc hdspm snd usb i8042

The second might not have significant impact, but the first, a kernel-rt
will improve a lot.


[snip] jack inexplicably dies [snip]


Did you switch between Jack1 and Jack2?


Right now, I've got the default package, ISTR jackdmp v1.9.2 or 
thereabouts. (the machine's not booted at the moment).  This confuses me, 
I thought jackdmp = jack2, and jackd would show v 1.x.x.  My machine is 
just single-core, so I don't need jackdmp.  Is there a package for Jack1, 
and might it be appropriate to switch to it?


--
Rick Green

Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety.
  -Benjamin Franklin

As for our common defense, we reject as false the choice between our
safety and our ideals.
   -President Barack Obama 20 Jan 2009

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


Re: (rant) Is there any hope

2012-02-15 Thread Scott Lavender
On Tue, Feb 14, 2012 at 11:11 PM, Rick Green r...@aapsc.com wrote:
 for Ubuntu Studio as a productive audio recording and mixing environment?

 Four years ago, I bought a Focusrite Saffire Pro 26 firewire interface,
 largely because it was listed as one of the best-supported by the ffado
 project.  I loaded up a copy of UbuntuStudio 8.04LTS.  The clean install
 wouldn't talk to the interface, but after I obtained a bleeding-edge copy of
 the ffado source from one of the developers, and recompiled locally, I was
 up and running.  I've used that installation for every recording I've done
 since.  For the most part it's stable, and I've learned to work-around its
 quirks
  When 10.04 came out, I thought I'd upgrade, thinking I'd like to see the
 latest enhancements to Ardour, and it might be more forgiving of the order I
 start up programs.  But 10.04 wasn't stable enough to run jack for more than
 a few minutes before the xrun count went thru the roof.
  Since then, I've tried every new release, and the regressions are stacking
 up faster than ever.

  I recently did a clean install of 11.10 (amd64), and tonight gave it a
 first attempt with the firewire interface...

  With 8.04, I start ffado-mixer, and it automatically starts the
 ffado-dbus-server.  With this one, it merely complains that the dbus server
 isn't running, so I'm forced to open a terminal and start it, then when I
 restart ffado-mixer, it tells me 'no supported devices found'.
  This isn't exactly true, for when I go to a terminal and run ffado-test
 ListDevices, it clearly finds my focusrite pro26IO on node 1.

 I launch qjackctl, open the setup window, and select the firewire driver,
 accepting all the defaults for now.  When I attempt to start jack, it fails
 with a 'cannot connect to server as client' message.

 After many attempts and reboots, I discover that if I start qjackctl and
 start jack without attempting to start ffado-mixer or ffado-dbus-server
 first, then jack will actually start! (With 8.04, I HAD to start ffado-mixer
 first.)
  I launch Ardour, open a new session, and start to record two tracks of
 whatever audio happened to be playing on the stereo at the time.  About 24
 minutes later, just as I'm getting complacent with no xruns recorded(!),
 jack inexplicably dies, but qjackctl doesn't know it, so it is locked up,
 too.  I ended up having to go back to the terminal and kill -9 everything
 jack-related I could find, then power down my interface, and power it back
 on, then restart qjackctl, and finally jack.  Only then could I tell Ardour
 to reconnect and save the session, but for some reason Ardour's transport
 was messed up.  I could move the playhead either directly, or with the |
 button, but the 'Big Clock' still showed the time at the end of the aborted
 capture, and the 'play' button or the spacebar had no effect.
  I closed Ardour, then went to stop jack and close qjackctl, and qjackctl
 threw messages about a client still connected (Ardour was already shut down
 at this point), and after I press the 'close anyway' button, then qjackctl
 itself refuses to quit cleanly, and I get a 'program not responding' message
 from the window manager, and I'm forced to go back to the terminal and
 resort to kill -9 again.

  The developers are over halfway into the 12.04 cycle now, so I don't see
 any point in submitting bug reports against 11.10 for all this.  Have they
 gotten to the point of publishing any pre-builds of 12.04, and would it be
 any help to install that and submit bugs against 12.04pre- instead?

 --
 Rick Green

 Those who would give up essential Liberty, to purchase a little
 temporary Safety, deserve neither Liberty nor Safety.
                                  -Benjamin Franklin

 As for our common defense, we reject as false the choice between our
 safety and our ideals.
                               -President Barack Obama 20 Jan 2009

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

Hi Rick,

I'm Scott Lavender, the Ubuntu Studio Project Leader. I would like to
address some of your comments and concerns.

Is there any future for Ubuntu Studio as an productive audio recording
and mixing environment? Absolutely! Is _this_ the time for Ubuntu
Studio? No, not really.  Not yet.

After a period of severe stagnation, there are many changes in
progress and others being planned.  In some cases we are making
changes to simply fix things and in others we are making changes to
shape the direction of Ubuntu Studio.

I can't answer specifics about your firewire trouble as I don't have a
firewire device, but this is an area I would like to make more stable
for 12.04.  There are people currently on the team we will be using to
test this use case.

The kernel issue is a sticky wicket.  The RT kernel was pulled from
the archives, this was not a decision that the Studio Team could

Re: Sharing things between Ubuntu Studio 11.10 and...

2012-02-15 Thread Gustin Johnson
You need to set up your Ubuntu box as a router, do a google search for
linux masquerade router

On Tue, Feb 14, 2012 at 3:42 AM, Ralf Mardorf ralf.mard...@alice-dsl.netwrote:

 Hi :)

 there're two things I wish to have:

1. Evolution
Evolution 3.2.3 from an Arch Linux install should share
everything or at least emails with Evolution 3.2.2 from US 11.10

2. Wi-Fi
An iPad 2 should be connected to US 11.10 and the Internet by
Wi-fi, while US 11.10 is connected to the Internet by PPPoE.

 1. Evolution

 On Arch Linux I backup by File  Back up Evolution data
 On US 11.10 I restored from this backup by the restore option of the
 assistant that's started, when you launch Evolution for the first time.

 There are those Evolution related paths:
 ~/.cache/evolution
 ~/.config/evolution
 ~/.gconf/apps/evoluton
 ~/.local/share/evolution
 ~/.local/share/applications/Evolution


 From the ~ dir I run:
 $ rm -r .local/share/evolution/mail
 $ ln
 -s /mnt/archlinux/home/spinymouse/.local/share/evolution/mail
 .local/share/evolution/mail

 This at least is working at the moment, but I didn't reboot between both
 installs. I wonder what folders I can share and what folders I can't
 share, especially if there ever will be much different versions of
 Evolution installed.

 2. Wi-Fi

 There are two tasks I wish to get working. Sharing data between the iPad
 and Linux, at least with VirtualBox running iTunes on XP pro. On Arch
 Linux I already do this wired by USB.

 And important for now, I wish to share the Internet between US 11.10 and
 the iPad.

 The connection between US 11.10 and the Internet was created by running
 pppoeconf and works without any issues.

 After running this script ...

 $ cat adhoc
 #! /bin/sh
 # sh ./adhoc
 # https://help.ubuntu.com/community/WifiDocs/Adhoc

 device=wlan0
 sudo service network-manager stop
 sudo ip link set $device down
 sudo iwconfig $device mode ad-hoc
 sudo iwconfig $device channel 4
 sudo iwconfig $device essid 'oz'
 sudo iwconfig $device key 1324354657
 # sudo dhclient $device
 sudo ip addr add 169.254.34.2/16 dev $device
 exit 0

 ... the iPad recognized a network oz. I can connect by selecting the
 name oz, WEP and for the password I just enter a space, but I don't
 get access to the Internet.

 How can I add a password and how do I add a HTTP-Proxy or what ever is
 needed?

 I already googled and I still will google myself ;) but any let me
 google that for you, resp. any hints are welcome ;).

 Regards,
 Ralf


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

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


Re: Sharing things between Ubuntu Studio 11.10 and...

2012-02-15 Thread Gustin Johnson
You need to set up your Ubuntu box as a router, do a google search for
linux masquerade router

On Tue, Feb 14, 2012 at 3:42 AM, Ralf Mardorf ralf.mard...@alice-dsl.netwrote:

 Hi :)

 there're two things I wish to have:

1. Evolution
Evolution 3.2.3 from an Arch Linux install should share
everything or at least emails with Evolution 3.2.2 from US 11.10

2. Wi-Fi
An iPad 2 should be connected to US 11.10 and the Internet by
Wi-fi, while US 11.10 is connected to the Internet by PPPoE.

 1. Evolution

 On Arch Linux I backup by File  Back up Evolution data
 On US 11.10 I restored from this backup by the restore option of the
 assistant that's started, when you launch Evolution for the first time.

 There are those Evolution related paths:
 ~/.cache/evolution
 ~/.config/evolution
 ~/.gconf/apps/evoluton
 ~/.local/share/evolution
 ~/.local/share/applications/Evolution


 From the ~ dir I run:
 $ rm -r .local/share/evolution/mail
 $ ln
 -s /mnt/archlinux/home/spinymouse/.local/share/evolution/mail
 .local/share/evolution/mail

 This at least is working at the moment, but I didn't reboot between both
 installs. I wonder what folders I can share and what folders I can't
 share, especially if there ever will be much different versions of
 Evolution installed.

 2. Wi-Fi

 There are two tasks I wish to get working. Sharing data between the iPad
 and Linux, at least with VirtualBox running iTunes on XP pro. On Arch
 Linux I already do this wired by USB.

 And important for now, I wish to share the Internet between US 11.10 and
 the iPad.

 The connection between US 11.10 and the Internet was created by running
 pppoeconf and works without any issues.

 After running this script ...

 $ cat adhoc
 #! /bin/sh
 # sh ./adhoc
 # https://help.ubuntu.com/community/WifiDocs/Adhoc

 device=wlan0
 sudo service network-manager stop
 sudo ip link set $device down
 sudo iwconfig $device mode ad-hoc
 sudo iwconfig $device channel 4
 sudo iwconfig $device essid 'oz'
 sudo iwconfig $device key 1324354657
 # sudo dhclient $device
 sudo ip addr add 169.254.34.2/16 dev $device
 exit 0

 ... the iPad recognized a network oz. I can connect by selecting the
 name oz, WEP and for the password I just enter a space, but I don't
 get access to the Internet.

 How can I add a password and how do I add a HTTP-Proxy or what ever is
 needed?

 I already googled and I still will google myself ;) but any let me
 google that for you, resp. any hints are welcome ;).

 Regards,
 Ralf


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

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


Re: [Ubuntu-BR] Modificar o posicionamento dos botões Avançar-Voltar no Ubuntu 11.10

2012-02-15 Thread Usiel Amaral
Tb procuro não usar o Responder a todos ou direto para o 
remetente... pois a lista é 1 banco de dados

Eu sempre respondo para todos; acredite existem pessoas que sempre
respondem para todos.
--
Vcs já perceberam a diferença de responder com responder a todos?

Ao menos no thunderbird é assim:
1. Responder: a resposta vai para a lista (ubuntu-br@lists.ubuntu.com).
2. Responder a todos: a resposta vai para a lista 
(ubuntu-br@lists.ubuntu.com) e uma cópia é enviada também para o 
remetente da mensagem (ful...@dominio.com.br), ou seja, apenas um 
destinatário à mais do que na opção responder.


ou seja, na opção 1, sua mensagem é enviada pra um destinatário e na 
opção 2, são dois destinatários, não tem muita diferença.


Caso queiram prosseguir com essa discussão, vamos abrir novo tópico.

--
www.usis.com.br 
Usiel Amaral (62)9253-1787




Em Ter 14 Fev 2012 23:31:30 BRST, João Santana escreveu:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Em 14-02-2012 20:25, Zandre Bran escreveu:

2012/2/14 Celio Silvaceliosidneisi...@gmail.com:

Ôlas Celio.


Quanto as várias listas...não me perco não...:)minha
interação é sempre pelo Thunderbird


Eu não uso o thunderbir; acredite existem pessoas que usam os
diversos softwares para ler mensagens.



Eu mesmo estou considerando usar o Evolution mesmo nesse PC novo,
mesmo ele voando baixo, o Thunderbird consegue ser lento para ler
pastas IMAP.


Tb procuro não usar o Responder a todos ou direto para o
remetente... pois a lista é 1 banco de dados


Eu sempre respondo para todos; acredite existem pessoas que sempre
  respondem para todos.



E eu pensando que era o único...


Porém,me ajude a entender se estiver atrapalhando...não
sei como é para o resto do pessoal


Enfim, por favor, ao enviar uma mensagem para uma lista de
discussão não use o campo com cópia.

http://br-linux.org/linux/node/5731?q=e-mala
http://www.debian-rs.org/sites/www.debian-rs.org/netiqueta.html

Agradecemos sua compreensão.


Abraço. Célio


-- []s -- Zandre.

:: http://linuxacessivel.org :: http://zandrebran.blog.br




- -- 
Respeitosamente,


João Santana
Ubuntu Evangelist
GPG Key B2966301
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPOwrxAAoJEG4LcoWylmMBVPAH/0m2NKlrevzsQ8wkDjpO8445
cUQvMSnpJvcZOUxO7wvYpdvNiMmzyW8qWhc7C+yK9Fogc5bbqAnWq675CBwp2Z5Y
L4XVx2pFH1Qd7y3Y+35RXfBJaVI538u4bfA6X8Fs5qdHPyQ1pRGOhn1h8cXPTJkZ
IxP/1yKxgnaMe9XgaoR6Ee8DkP0eZq6l5ziNj6640yX8JxZG5hLEl9po2C8uBbrd
cNAWzUZdzYxrjRMz+2zN7ae/fa99T6UFVe70XSaHz4z/8W0zoFAD7sDVvd+IqX16
Ae2CgfKnFLzL2HhLv+fSsNS4F7KNjYuVPkObIl5HJSMUH/mmPVTlJqSM1HttgPg=
=d25g
-END PGP SIGNATURE-



--
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Rogério Martins
Bom dia pessoal !

No VirtualBox temos o recurso de criar snapshots para poder restaurar o
contexto de uma máquina virtual posteriormente, se necessário.

Há algum recurso semelhante no ubuntu ?
Exemplo: salvar o contexto de uma instalação ( não virtual ) e após várias
modificações, poder restaurá-lo

Obrigado

-- 
The Ubuntu Counter Project - user number #
33192http://ubuntucounter.geekosophical.net
-- 
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Murilo Cruz
Acho que fazendo um backup completo do disco é o suficiente... o que acham?
-- 
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Andre Cavalcante
Em 15 de fevereiro de 2012 09:15, Rogério Martins
rogmart...@gmail.comescreveu:

 Bom dia pessoal !

 No VirtualBox temos o recurso de criar snapshots para poder restaurar o
 contexto de uma máquina virtual posteriormente, se necessário.


Exato, que o VB faz é salvar o conjunto de hardware que está configurado
para aquela máquina virtual. Se o SO for pro saco ainda tens que
reinstalá-lo.



 Há algum recurso semelhante no ubuntu ?
 Exemplo: salvar o contexto de uma instalação ( não virtual ) e após várias
 modificações, poder restaurá-lo


Backup?



 Obrigado


Nada.

 Discussão 

Essa questão do snapshot do sistema foi discutido aqui na lista há um tempo
atrás. Na ocasião chegamos a conclusão que não era assim tão útil, porque
se o sistema for pro saco, tens que fazer uma instalação limpa ou recuperar
de um backup. De qualquer forma, o snapshot no caso estará no backup. A
outra coisa seria o backup só do /etc. Talvez valesse a pena, mas a mão de
obra pra fazer isso era grande. Lembro de gente postando script para fazer
o backup em partição diferente, etc.

De qualquer forma, a instalação do sistema é fácil e, com os recursos de
criação de DVDs personalizados (remasterização) de um sistema, é realmente
simples fazer um snapshot do sistema. Se o teu /home estiver em partição
separada, provavelmente nem vais precisar de mexer nos dados dos usuários,
o que é uma segurança a mais para o sistema.

Abraços

-- 
André Cavalcante
Porto Alegre, Brasil
Ubuntu User number # 24370
Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
em outro formato, você pode instalar gratuita e livremente o BrOffice (
http://www.broffice.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-BR] BB no Google

2012-02-15 Thread mario - bol
Amigos, sou usuário (opa!) do Ubuntu, uso neste nots, 
mas tenho outro com Linuxmint 12 a título de estudo, acreditem, ontem 
(considerando ele ultra atualizado) consegui acessar e navegar 
normalmente no Banco do Brasil com o  google chromium , também estou 
testando o Ubuntu 12.04, fui tentar, ele até fez menção de querer 
funcionar (pediu para confirmar o certificado logo quando digita agencia 
e conta, pelo menos por uma vez) mas depois acabou por fazer referência 
a visita na página do java. Então é isso, só para constar. Quem sabe 
logo logo isso não será normal no BB com google.


--
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Rogério Martins
Legal.
Acho que é melhor mesmo criar uma iso da instalação ( alguma dica sobre
isso ? ), na forma como estiver, antes de fazer os testes, para que, se
necessário for, a instalação seja restaurada.

Além disso, os arquivos da partição /home eu irei fazer backup com a boa
ferramenta rsync
Muito obrigado pela ajuda.


Em 15 de fevereiro de 2012 09:36, Andre Cavalcante 
andre.d.cavalca...@gmail.com escreveu:

 Em 15 de fevereiro de 2012 09:15, Rogério Martins
 rogmart...@gmail.comescreveu:

  Bom dia pessoal !
 
  No VirtualBox temos o recurso de criar snapshots para poder restaurar o
  contexto de uma máquina virtual posteriormente, se necessário.
 

 Exato, que o VB faz é salvar o conjunto de hardware que está configurado
 para aquela máquina virtual. Se o SO for pro saco ainda tens que
 reinstalá-lo.


 
  Há algum recurso semelhante no ubuntu ?
  Exemplo: salvar o contexto de uma instalação ( não virtual ) e após
 várias
  modificações, poder restaurá-lo
 

 Backup?


 
  Obrigado
 

 Nada.

  Discussão 

 Essa questão do snapshot do sistema foi discutido aqui na lista há um tempo
 atrás. Na ocasião chegamos a conclusão que não era assim tão útil, porque
 se o sistema for pro saco, tens que fazer uma instalação limpa ou recuperar
 de um backup. De qualquer forma, o snapshot no caso estará no backup. A
 outra coisa seria o backup só do /etc. Talvez valesse a pena, mas a mão de
 obra pra fazer isso era grande. Lembro de gente postando script para fazer
 o backup em partição diferente, etc.

 De qualquer forma, a instalação do sistema é fácil e, com os recursos de
 criação de DVDs personalizados (remasterização) de um sistema, é realmente
 simples fazer um snapshot do sistema. Se o teu /home estiver em partição
 separada, provavelmente nem vais precisar de mexer nos dados dos usuários,
 o que é uma segurança a mais para o sistema.

 Abraços

 --
 André Cavalcante
 Porto Alegre, Brasil
 Ubuntu User number # 24370
 Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
 Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

 Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
 Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
 em outro formato, você pode instalar gratuita e livremente o BrOffice (
 http://www.broffice.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




-- 
The Ubuntu Counter Project - user number #
33192http://ubuntucounter.geekosophical.net
-- 
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] BB no Google

2012-02-15 Thread Usiel Amaral
Eu uso ubuntu há anos e sempre acessei o BB no firefox e no chromium 
sem problemas, desde o início da versão 11.10 to usando sem problema 
algum.


www.usis.com.br
Usiel Amaral (62)9253-1787

Seja Livre: use Linux http://www.ubuntu-br.org e/ou BrOffice 
http://www.broffice.org/, Firefox http://br.mozdev.org/ e 
Thunderbird http://br.mozdev.org/thunderbird/




Em Qua 15 Fev 2012 09:44:22 BRST, mario - bol escreveu:
Amigos, sou usuário (opa!) do Ubuntu, uso neste nots, mas tenho outro 
com Linuxmint 12 a título de estudo, acreditem, ontem (considerando 
ele ultra atualizado) consegui acessar e navegar normalmente no Banco 
do Brasil com o  google chromium , também estou testando o Ubuntu 
12.04, fui tentar, ele até fez menção de querer funcionar (pediu para 
confirmar o certificado logo quando digita agencia e conta, pelo menos 
por uma vez) mas depois acabou por fazer referência a visita na página 
do java. Então é isso, só para constar. Quem sabe logo logo isso não 
será normal no BB com google.




--
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Rafael Soares
Seria interessante programas como o Windows Steady State, Faronics Deep
Freeze. Mas infelizmente não temos alternativas no mundo linux. ;-)
-- 
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Anderson Unsonst
http://www.howtogeek.com/59839/how-to-reset-any-changes-to-your-ubuntu-computer-and-add-kiosk-mode/

https://help.ubuntu.com/community/BackupYourSystem#Backup_Utilities

alguns notes da dell ubuntu vem com suporte nativo tbm... mas o melhor
anti-cagada plus mega blaster é o bom e velho backup

-- 
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Andre Cavalcante
Olá Rafael

Em 15 de fevereiro de 2012 10:43, Rafael Soares
rafaelsoare...@gmail.comescreveu:

 Seria interessante programas como o Windows Steady State, Faronics Deep
 Freeze. Mas infelizmente não temos alternativas no mundo linux. ;-)


O que efetivamente estes programas fazem?

-- 
André Cavalcante
Porto Alegre, Brasil
Ubuntu User number # 24370
Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
em outro formato, você pode instalar gratuita e livremente o BrOffice (
http://www.broffice.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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Rafael Soares
Eles congelam o estado do sistema, e a cada reboot ou num tempo
determinado eles voltam com as configurações e programas. Durante o uso do
sistema todas as alterações feitas nos arquivos na verdade são feitas num
disco virtual.

Em 15 de fevereiro de 2012 09:31, Andre Cavalcante 
andre.d.cavalca...@gmail.com escreveu:

 Olá Rafael

 Em 15 de fevereiro de 2012 10:43, Rafael Soares
 rafaelsoare...@gmail.comescreveu:

  Seria interessante programas como o Windows Steady State, Faronics Deep
  Freeze. Mas infelizmente não temos alternativas no mundo linux. ;-)
 

 O que efetivamente estes programas fazem?

 --
 André Cavalcante
 Porto Alegre, Brasil
 Ubuntu User number # 24370
 Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
 Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

 Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
 Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
 em outro formato, você pode instalar gratuita e livremente o BrOffice (
 http://www.broffice.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




-- 
(95)3624-2267
(95)9144-8163

Rafael Soares
Auxiliar Técnico Legislativo
Secretaria de Apoio Legislativo
Câmara Municipal de Boa Vista
-- 
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] BB no Google

2012-02-15 Thread mario - bol


No 11.10 consegui não..., consegue usá-lo no 
chrome? Ou apenas no chromium?


Em 15-02-2012 09:51, Usiel Amaral escreveu:
Eu uso ubuntu há anos e sempre acessei o BB no firefox e no chromium 
sem problemas, desde o início da versão 11.10 to usando sem problema 
algum.


www.usis.com.br
Usiel Amaral (62)9253-1787

Seja Livre: use Linux http://www.ubuntu-br.org e/ou BrOffice 
http://www.broffice.org/, Firefox http://br.mozdev.org/ e 
Thunderbird http://br.mozdev.org/thunderbird/




Em Qua 15 Fev 2012 09:44:22 BRST, mario - bol escreveu:
Amigos, sou usuário (opa!) do Ubuntu, uso neste nots, mas tenho outro 
com Linuxmint 12 a título de estudo, acreditem, ontem (considerando 
ele ultra atualizado) consegui acessar e navegar normalmente no Banco 
do Brasil com o  google chromium , também estou testando o Ubuntu 
12.04, fui tentar, ele até fez menção de querer funcionar (pediu para 
confirmar o certificado logo quando digita agencia e conta, pelo 
menos por uma vez) mas depois acabou por fazer referência a visita na 
página do java. Então é isso, só para constar. Quem sabe logo logo 
isso não será normal no BB com google.







--
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] Como particionar

2012-02-15 Thread SD
*Amigos,*
*
*
*Estou com uma dúvida. Tenho Windows 7 instalado no notebook, e quero
colocar o Ubuntu 11.10 em dual boot.*
*
*
*Tenho duas partições no HD:*
*
*
*C: 186,8 GB / 57 GB usado (nesta está o windows)*
*D: 304,6 GB / 50 GB usado (nesta ficam meus documentos e arquivos)*
*
*
*A dúvida é na hora de particionar, devo dividir a unidade D e colocar o
ubuntu nela? Tenho medo de perder os dados da unidade, que são muito
importantes.*
*
*
*Qual é o procedimento mais indicado?*
*
*
*Grato,*
*SD*
-- 
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] Como particionar

2012-02-15 Thread Murilo Cruz

 *A dúvida é na hora de particionar, devo dividir a unidade D e colocar o
 ubuntu nela? Tenho medo de perder os dados da unidade, que são muito
 importantes.*
 *

Comece com um Backup dos dados. Apesar de que nunca tive problema, o
processo não é garantido.
Depois, verifique quanto espaço em disco você tem na unidade D. Se quiser
desfragmentar, é interessante também.
Então, durante o instalador do ubuntu, diminua a partição D (que no ubuntu
vai ter outro nome), deixando espaço para SWAP e pro ubuntu.
-- 
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Andre Cavalcante
Em 15 de fevereiro de 2012 11:41, Rafael Soares
rafaelsoare...@gmail.comescreveu:

 Eles congelam o estado do sistema, e a cada reboot ou num tempo
 determinado eles voltam com as configurações e programas. Durante o uso do
 sistema todas as alterações feitas nos arquivos na verdade são feitas num
 disco virtual.


Pois é,  era o que eu tinha em mente...
O que o Windows precisa de um programa para ajustar, o Ubuntu te dá de
graça e por padrão.

Ex.:
Nenhum usuário normal tem direito a mexer no sistema. Podes simplesmente
retirar o usuário inicial do sudoers.
Podes executar o sistema como um liveCD sempre
Podes executar o sistema como um arquivo do Windows (Wubi).
Podes executar o sistema em uma VM, a partir de uma iso no disco.

Quer mais?

Abraços

PS.: não nos iludamos, há quase nada, em termos de software, que a M$ tenha
inventado antes dos outros.

André Cavalcante
Porto Alegre, Brasil
Ubuntu User number # 24370
Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
em outro formato, você pode instalar gratuita e livremente o BrOffice (
http://www.broffice.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] Como particionar

2012-02-15 Thread Andre Cavalcante
Em 15 de fevereiro de 2012 12:24, SD s...@merdabr.org escreveu:

 *Amigos,*
 *
 *
 *Estou com uma dúvida. Tenho Windows 7 instalado no notebook, e quero
 colocar o Ubuntu 11.10 em dual boot.*


Se tens 2G ou + de RAM, podes instalar o Ubuntu em uma VM, tal como o
Virtual Box.

Abraços

André Cavalcante
Porto Alegre, Brasil
Ubuntu User number # 24370
Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
em outro formato, você pode instalar gratuita e livremente o BrOffice (
http://www.broffice.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] Como particionar

2012-02-15 Thread João Santana
Em 15 de fevereiro de 2012 13:50, Andre Cavalcante
andre.d.cavalca...@gmail.com escreveu:
 Em 15 de fevereiro de 2012 12:24, SD s...@merdabr.org escreveu:

 *Amigos,*
 *
 *
 *Estou com uma dúvida. Tenho Windows 7 instalado no notebook, e quero
 colocar o Ubuntu 11.10 em dual boot.*


 Se tens 2G ou + de RAM, podes instalar o Ubuntu em uma VM, tal como o
 Virtual Box.


Estou fazendo isso ao contrário, o Windows foi definitivamente para a
VM. Assim não preciso dividir o disco e posso atender meus clientes
com as ferramentas que eles usam.

 Abraços

 André Cavalcante
 Porto Alegre, Brasil
 Ubuntu User number # 24370
 Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
 Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

 Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
 Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
 em outro formato, você pode instalar gratuita e livremente o BrOffice (
 http://www.broffice.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



-- 

Com meus melhores cumprimentos,

João Santana
Ubuntu Evangelist
GPG Key B2966301

-- 
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] Como particionar

2012-02-15 Thread Andre Cavalcante
Em 15 de fevereiro de 2012 15:08, João Santana
joao.abo.sant...@gmail.comescreveu:

 Em 15 de fevereiro de 2012 13:50, Andre Cavalcante

 Estou fazendo isso ao contrário, o Windows foi definitivamente para a
 VM. Assim não preciso dividir o disco e posso atender meus clientes
 com as ferramentas que eles usam.


Na verdade eu também estou a usar assim. Meu SO principal é o Ubuntu e o
Windows ficou na VM.
Eu sugeri a VM porque os usuários recém chegados que querem manter o
dual-so estão com dificuldade no particionamento e coisa e tal (eu acho
simples, mas...)

Abraços

-- 
André Cavalcante
Porto Alegre, Brasil
Ubuntu User number # 24370
Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
em outro formato, você pode instalar gratuita e livremente o BrOffice (
http://www.broffice.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] BB no Google

2012-02-15 Thread Usiel Amaral

no chromium ta funcionando, não tenho o chrome instalado.

www.usis.com.br http://www.usis.com.br/
Usiel Amaral
(62)9253-1787

Seja Livre: use Linux http://www.ubuntu-br.org e/ou BrOffice 
http://www.broffice.org/, Firefox http://br.mozdev.org/ e 
Thunderbird http://br.mozdev.org/thunderbird/




Em Qua 15 Fev 2012 12:15:41 BRST, mario - bol escreveu:


No 11.10 consegui não..., consegue usá-lo no chrome? Ou apenas no 
chromium?


Em 15-02-2012 09:51, Usiel Amaral escreveu:
Eu uso ubuntu há anos e sempre acessei o BB no firefox e no chromium 
sem problemas, desde o início da versão 11.10 to usando sem problema 
algum.


www.usis.com.br
Usiel Amaral (62)9253-1787

Seja Livre: use Linux http://www.ubuntu-br.org e/ou BrOffice 
http://www.broffice.org/, Firefox http://br.mozdev.org/ e 
Thunderbird http://br.mozdev.org/thunderbird/




Em Qua 15 Fev 2012 09:44:22 BRST, mario - bol escreveu:
Amigos, sou usuário (opa!) do Ubuntu, uso neste nots, mas tenho 
outro com Linuxmint 12 a título de estudo, acreditem, ontem 
(considerando ele ultra atualizado) consegui acessar e navegar 
normalmente no Banco do Brasil com o  google chromium , também 
estou testando o Ubuntu 12.04, fui tentar, ele até fez menção de 
querer funcionar (pediu para confirmar o certificado logo quando 
digita agencia e conta, pelo menos por uma vez) mas depois acabou 
por fazer referência a visita na página do java. Então é isso, só 
para constar. Quem sabe logo logo isso não será normal no BB com 
google.









--
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] BB no Google

2012-02-15 Thread Wilson Costa Marinho Filho
Voce usa no Chromium!??
Como conseguiu??
Pode me ajudar a configurar o meu Chromium?

Um abraço,
Wilson
-- 
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] Problemas na re-instalação

2012-02-15 Thread Wilson Costa Marinho Filho
Olá!!


Instalei o GParted e me trouxe várias informações que peço-lhes
esclarecimentos:


/dev/sda1 – onde está o Linux?

/dev/sda2 – Windows

/dev/sda3 – está subdividido em sda7, sda8, sda6, sda5?

Posso arrumar esta partição? Em caso positivo, poderia indicar um tutorial?

Existe um ícone em forma de chave ao lado de cada uma, o que significa?

 o que é exatamente linux-swap?

 O que quer dizer não alocada!?


Um abraço,
Wilson
-- 
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] Como particionar

2012-02-15 Thread SD
*Beleza galera, obrigado pelas explicações. Acabei de chegar e vou testar.
*
Em 15 de fevereiro de 2012 13:02, Murilo Cruz murilolc...@gmail.comescreveu:

 
  *A dúvida é na hora de particionar, devo dividir a unidade D e colocar o
  ubuntu nela? Tenho medo de perder os dados da unidade, que são muito
  importantes.*
  *
 
 Comece com um Backup dos dados. Apesar de que nunca tive problema, o
 processo não é garantido.
 Depois, verifique quanto espaço em disco você tem na unidade D. Se quiser
 desfragmentar, é interessante também.
 Então, durante o instalador do ubuntu, diminua a partição D (que no ubuntu
 vai ter outro nome), deixando espaço para SWAP e pro ubuntu.
 --
 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] BB no Google

2012-02-15 Thread mario - bol
no Linuxmint basta instalar e atualizar total, no ubuntu tem que falar 
com o Usiel, também não sei como não...


Em 15-02-2012 17:47, Wilson Costa Marinho Filho escreveu:

Voce usa no Chromium!??
Como conseguiu??
Pode me ajudar a configurar o meu Chromium?

Um abraço,
Wilson




--
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] Teste de Envio

2012-02-15 Thread usiel
Teste.

Favor  apagar.

-- 
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] Teste2 de Envio

2012-02-15 Thread usiel
Teste

-- 
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] Teste3 de Envio

2012-02-15 Thread usiel
teste

-- 
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] Teste4 de Envio

2012-02-15 Thread usiel
teste

-- 
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] BB no Google

2012-02-15 Thread Usiel Amaral
Eu uso o chromium como navegador secundário, meu navegador do dia-a-dia 
é o mozilla firefox.


Versão do meu chromium: 16.0.912.77 (Versão do desenvolvedor 118311 
Linux) Ubuntu 11.10


Pra configurá-lo, não me lembro de ter feito nada em especial (já faz 
muito tempo), eu configurei o Bc. Brasil/java primeiro no firefox e 
depois entrei no chromium que instalou o certificado do Bc. Brasil e 
pronto, acho q foi isso.


--

www.usis.com.br http://www.usis.com.br/
Usiel Amaral
(62)9253-1787

Seja Livre: use Linux http://www.ubuntu-br.org e/ou BrOffice 
http://www.broffice.org/, Firefox http://br.mozdev.org/ e 
Thunderbird http://br.mozdev.org/thunderbird/



Em 15-02-2012 17:47, Wilson Costa Marinho Filho escreveu:

Voce usa no Chromium!??
Como conseguiu??
Pode me ajudar a configurar o meu Chromium?

Um abraço,
Wilson

--
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] Problemas na re-instalação

2012-02-15 Thread Usiel Amaral

Oi Wilson, vamos lá...


/dev/sda1 – onde está o Linux?

/dev/sda2 – Windows

Observe o Sistema de arquivos, o windows usa o sistema ntfs.
O Linux usa Sistema de arquivos ext4 entre outros.


/dev/sda3 – está subdividido em sda7, sda8, sda6, sda5?
Dica: existem 2 tipos de partição: Primária e Estendida. Todo HD 
comporta no máximo 4 partições primárias, quando se precisa ter mais de 
quatro partições, cria-se uma partição estendida e dentro dela vc pode 
ter quantas partições quiser. Mas, sempre que possível use somente 
partições primárias.


Essa partição sda3 é estendida com as partições sda7, sda8 dentro dela.

Dica para dual boot (windows e linux), recomendo 4 partições (todas 
primárias) (não importa a ordem):

1. partição com o S.O. windows (ntfs)
2. partição para dados (ntfs)
3. partisção com o S.O Linux raiz / barra (ext4)
4. partição swap p/ linux (ext4) tamanho de 2Gb ou + (eu uso o dobro 
do tamanho da mem. RAM)


Forma como eu usaria, outros podem ter opiniões diferentes
- a partição 2 (mencionada acima) para windows (ntfs) deve ser 
configurada no windows como drive D: (mude o DVD para E:)
 - configure a Biblioteca do win7 (ou Meus documentos dom win xp) 
para ficar no drive D:
- depois de o windows instalado e funcionando, instale o linux na 
partição 3 (mencionada acima), configurando a partição 4 (mencionada 
acima) como swap.



o que é exatamente linux-swap?
- é uma partição para troca, memória virtual, parecido com o 
arquivo de mem. virtual do windows, só que no linux é mais eficiente por 
usar partição, o windows usa um arquivo.



O que quer dizer não alocada!?
- é espaço sem uso, vc pode usá-lo com uma nova partição ou 
aumentando o tamanho da partição mais próxima dele.


--

www.usis.com.br http://www.usis.com.br/
Usiel Amaral
(62)9253-1787

Seja Livre: use Linux http://www.ubuntu-br.org e/ou BrOffice 
http://www.broffice.org/, Firefox http://br.mozdev.org/ e 
Thunderbird http://br.mozdev.org/thunderbird/



Em 15-02-2012 18:07, Wilson Costa Marinho Filho escreveu:

Olá!!


Instalei o GParted e me trouxe várias informações que peço-lhes
esclarecimentos:


/dev/sda1 – onde está o Linux?

/dev/sda2 – Windows

/dev/sda3 – está subdividido em sda7, sda8, sda6, sda5?

Posso arrumar esta partição? Em caso positivo, poderia indicar um tutorial?

Existe um ícone em forma de chave ao lado de cada uma, o que significa?

  o que é exatamente linux-swap?

  O que quer dizer não alocada!?


Um abraço,
Wilson

--
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] Recurso no ubuntu semelhante ao snapshot da VirtualBox

2012-02-15 Thread Rafael Soares
Verdade, isso só é possível por que é muito raro vírus para linux, e isso é
bom para lan house, que é muito raro você espetar um pendrive numa lan e
ele não sair de lá com vírus.

Em 15/02/2012 12:47, Andre Cavalcante andre.d.cavalca...@gmail.com
escreveu:

 Em 15 de fevereiro de 2012 11:41, Rafael Soares
 rafaelsoare...@gmail.comescreveu:

  Eles congelam o estado do sistema, e a cada reboot ou num tempo
  determinado eles voltam com as configurações e programas. Durante o uso
do
  sistema todas as alterações feitas nos arquivos na verdade são feitas
num
  disco virtual.
 

 Pois é,  era o que eu tinha em mente...
 O que o Windows precisa de um programa para ajustar, o Ubuntu te dá de
 graça e por padrão.

 Ex.:
 Nenhum usuário normal tem direito a mexer no sistema. Podes simplesmente
 retirar o usuário inicial do sudoers.
 Podes executar o sistema como um liveCD sempre
 Podes executar o sistema como um arquivo do Windows (Wubi).
 Podes executar o sistema em uma VM, a partir de uma iso no disco.

 Quer mais?

 Abraços

 PS.: não nos iludamos, há quase nada, em termos de software, que a M$
tenha
 inventado antes dos outros.

 André Cavalcante
 Porto Alegre, Brasil
 Ubuntu User number # 24370
 Quer saber sobre Open Source Software? http://sobreoss.blogspot.com
 Quer saber mais sobre Espiritismo? http://sobreespiritismo.blogspot.com

 Atenção: Este e-mail pode conter anexos no formato ODF (Open Document
 Format)/ABNT (extensões odt, ods, odp, odb, odg). Antes de pedir os anexos
 em outro formato, você pode instalar gratuita e livremente o BrOffice (
 http://www.broffice.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-be] Our approval

2012-02-15 Thread Wouter Vandenneucker
Hey guys,

Good news! According to: http://loco.ubuntu.com/teams/ubuntu-be our
Reapproval date is: 2012-03-01 00:00:00

Nevertheless, we should get it fully worked out BEFORE that! I forgot when
the next council meeting was, anyhow, we should get it ready by then!
I'm working some things out, and I'll post them in a bit ;)

Grts


Wouter
-- 
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] Our approval

2012-02-15 Thread jean7...@gmail.com
the next meeting of the LoCo Council is scheduled for Tuesday 21th 
February 2012, 20:00 UTC and and will be held in #ubuntu-meeting on 
irc.freenode.net.

https://wiki.ubuntu.com/LoCoCouncil/Agenda
(The LoCo Council meets on the 3rd Tuesday of every month at 20:00 UTC.)

--
jean7491




Le 15/02/12 11:49, Wouter Vandenneucker a écrit :

Hey guys,

Good news! According to: http://loco.ubuntu.com/teams/ubuntu-be our 
Reapproval date is: 2012-03-01 00:00:00


Nevertheless, we should get it fully worked out BEFORE that! I forgot 
when the next council meeting was, anyhow, we should get it ready by then!

I'm working some things out, and I'll post them in a bit ;)

Grts


Wouter

-- 
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] Our approval

2012-02-15 Thread jean7...@gmail.com

Le 15/02/12 18:09, Jan Claeys a écrit :

Wouter Vandenneucker schreef op wo 15-02-2012 om 11:49 [+0100]:

Good news! According to: http://loco.ubuntu.com/teams/ubuntu-be our
Reapproval date is: 2012-03-01 00:00:00

I requested the LoCo Council for a short extension and last night one of
them talked to me on IRC and changed the date so that we can go to the
next council meeting on Tuesday 21st next week.



Jan,
thanks

--
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] ubuntu installatie

2012-02-15 Thread Willem Hulscher
Laat het maar weten. Ubuntu is ook niet zo zwaar als Windows. En moest het nog 
moeilijk zijn, kun je nog Xubuntu gebruiken. Dat is nog lichter. Maar hou er 
wle rekening mee dat de computer alsnog kan stoppen. Warm worden duidt wel op 
een moederbord euvel. Maar met de lichte Linux stel je het wat uit.

Succes
Willem




 From: Dirk Peleman dirk.pele...@pandora.be
To: ubuntu-be@lists.ubuntu.com 
Sent: Tuesday, February 14, 2012 8:02 PM
Subject: [Ubuntu-be] ubuntu installatie
 

 
Fujitsu
Siemens amilo xi2528 laptop opgeladen met Ubuntu
11.10
Dit
apparaat werkt nu blijkbaar beter dan op het oorspronkelijke bijgeleverde en 
geïnstalleerde
Windows vista.
Alles
operationeel en perfect werkend, het toestel wordt ook niet meer zo warm.
Hopelijk
zijn de problemen met de NVIDIA beeldschermkaart ook van de baan, die werd
voordien behoorlijk warm waardoor ze uitviel. 
(videokaart
is al 3x hersteld, chip te warm waardoor er geen verbinding meer was)
 
dirk.pele...@pandora.be
 
-- 
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] Our approval

2012-02-15 Thread Wouter Vandenneucker
So, I updated the stuff about the website and the wiki.
I kept it fairly short, and I don't know what happened with the site in the
months before I joined Ubuntu-be. Did I miss something?
Feel free to add, correct or whatever! :)

Also, I put a little report online about Dipro Hasselt, including some
pictures William sent me via Ubuntu One.

Grts


wouter

2012/2/15 jean7...@gmail.com jean7...@gmail.com

 Le 15/02/12 18:09, Jan Claeys a écrit :

  Wouter Vandenneucker schreef op wo 15-02-2012 om 11:49 [+0100]:

 Good news! According to: 
 http://loco.ubuntu.com/teams/**ubuntu-behttp://loco.ubuntu.com/teams/ubuntu-beour
 Reapproval date is: 2012-03-01 00:00:00

 I requested the LoCo Council for a short extension and last night one of
 them talked to me on IRC and changed the date so that we can go to the
 next council meeting on Tuesday 21st next week.


  Jan,
 thanks

 --
 jean7491
 Ubuntu Belgium Events Team



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

 Modify settings or unsubscribe at:
 https://lists.ubuntu.com/**mailman/listinfo/ubuntu-behttps://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


[Ubuntu-be] netwerk probleem

2012-02-15 Thread Dirk Peleman
Misschien kan  iemand me helpen…
Ik heb de nieuwe Ubuntu 11.10 geïnstalleerd en die werkt prima.
Aan de TV is er een bekabelde netwerk mediaspeler geïnstalleerd.(Xtreamer)
Nu ziet Ubuntu de mediaspeler wel maar niet de bestanden die erop staan.
(krijg die op geen enkele manier zichtbaar)
Dus ik kan er geen bijplaatsen of afhalen.
Omgekeerd gaat het  wel kan ik perfect bestanden van de PC streamen. 
Wat kan ik hier aan doen? Kan iemand mij raad geven? 
 
 
 
 mailto:dirk.pele...@pandora.be dirk.pele...@pandora.be
 
-- 
ubuntu-be mailing list / mailto:ubuntu-be@lists.ubuntu.com

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


[Bug 688541] Re: race condition on shutdown (leads to corrupted fs)

2012-02-15 Thread Launchpad Bug Tracker
This bug was fixed in the package mysql-5.5 - 5.5.20-0ubuntu1

---
mysql-5.5 (5.5.20-0ubuntu1) precise; urgency=low

  * New upstream release.
  * d/mysql-server-5.5.mysql.upstart: Fix stop on to make sure mysql is
fully stopped before shutdown commences. (LP: #688541) Also simplify
start on as it is redundant.
  * d/control: Depend on upstart version which has apparmor profile load
script to prevent failure on upgrade from lucid to precise.
(LP: #907465)
  * d/apparmor-profile: need to allow /run since that is the true path
of /var/run files. (LP: #917542)
  * d/control: mysql-server-5.5 has files in it that used to be owned
by libmysqlclient-dev, so it must break/replace it. (LP: #912487)
  * d/rules, d/control: 5.5.20 Fixes segfault on tests with gcc 4.6,
change compiler back to system default.
  * d/rules: Turn off embedded libedit/readline.(Closes: #659566)
 -- Clint Byrum cl...@ubuntu.com   Tue, 14 Feb 2012 23:59:22 -0800

** Changed in: mysql-5.5 (Ubuntu Precise)
   Status: Invalid = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/688541

Title:
  race condition on shutdown (leads to corrupted fs)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/688541/+subscriptions

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


[Bug 820691] Re: mysql will be stopped, but not started again, on transition from runlevel 1 to 2

2012-02-15 Thread Clint Byrum
The upstart job for mysql-server-5.5 in precise does

start on runlevel [2345]

Marking Fix Released.

** Changed in: mysql-5.5 (Ubuntu)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-5.1 in Ubuntu.
https://bugs.launchpad.net/bugs/820691

Title:
  mysql will be stopped, but not started again, on transition from
  runlevel 1 to 2

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-5.1/+bug/820691/+subscriptions

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


[Bug 893926] Re: Contains traces of UEC

2012-02-15 Thread Benjamin Kerensa
@octavian do you have an update on the progress of this?

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in Ubuntu.
https://bugs.launchpad.net/bugs/893926

Title:
  Contains traces of UEC

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/eucalyptus/+bug/893926/+subscriptions

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


[Bug 926468] Re: Stopping ssh with a logged in user causes init to spin at 100%

2012-02-15 Thread James Hunt
@Jason: thanks for the feedback.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openssh in Ubuntu.
https://bugs.launchpad.net/bugs/926468

Title:
  Stopping ssh with a logged in user causes init to spin at 100%

To manage notifications about this bug go to:
https://bugs.launchpad.net/upstart/+bug/926468/+subscriptions

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


[Bug 932468] Re: python-novaclient hardcodes UUID_CACHE_DIR, this should respect some env variable

2012-02-15 Thread OpenStack Hudson
Fix proposed to branch: master
Review: https://review.openstack.org/4190

** Changed in: nova
   Status: New = In Progress

** Changed in: nova
 Assignee: (unassigned) = Dave Walker (davewalker)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to python-novaclient in Ubuntu.
https://bugs.launchpad.net/bugs/932468

Title:
  python-novaclient hardcodes UUID_CACHE_DIR, this should respect some
  env variable

To manage notifications about this bug go to:
https://bugs.launchpad.net/nova/+bug/932468/+subscriptions

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


[Bug 931584] Re: Upstart should close all non-standard fds before starting a job

2012-02-15 Thread James Hunt
I agree with Steve here: Upstart is careful to set CLOEXEC on all the
fds it has control over, so I would much prefer this be fixed at source.

A temporary work-around for jobs that are affected by this issue is to
add the following code at the top of all appropriate script sections -
remember that all script and exec sections run as different processes so
if you have a pre-start and a script section, the code below should be
added to the top of *both* those sections:

script
  # close unexpectedly open fds
  # The 'readlink' ensures we don't try to close the fd we're using to read the 
/proc/self/fd directory.
  for fd in /proc/self/fd/*
  do
fd=$(basename $fd)
case $fd in
  0|1|2) ;;
  *) readlink $fd  eval exec $fd- || :;;
esac
  done

  #  do something useful here 

end script

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to openldap in Ubuntu.
https://bugs.launchpad.net/bugs/931584

Title:
  Upstart should close all non-standard fds before starting a job

To manage notifications about this bug go to:
https://bugs.launchpad.net/upstart/+bug/931584/+subscriptions

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


[Bug 932681] [NEW] package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2012-02-15 Thread Bhavanishankar
Public bug reported:

while login to the system am getting error

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libapache2-mod-php5 5.3.2-1ubuntu4.14
ProcVersionSignature: Ubuntu 2.6.32-38.83-generic 2.6.32.52+drm33.21
Uname: Linux 2.6.32-38-generic i686
NonfreeKernelModules: wl
Architecture: i386
Date: Wed Feb 15 14:37:46 2012
ErrorMessage: subprocess installed post-installation script returned error exit 
status 139
InstallationMedia: Ubuntu 10.04.3 LTS Lucid Lynx - Release i386 (20110720.1)
SourcePackage: php5
Title: package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 139

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/932681

Title:
  package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/932681/+subscriptions

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


[Bug 932681] Re: package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2012-02-15 Thread Bhavanishankar
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/932681

Title:
  package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/932681/+subscriptions

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


[Bug 932680] [NEW] package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2012-02-15 Thread Bhavanishankar
Public bug reported:

while login to the system am getting error

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libapache2-mod-php5 5.3.2-1ubuntu4.14
ProcVersionSignature: Ubuntu 2.6.32-38.83-generic 2.6.32.52+drm33.21
Uname: Linux 2.6.32-38-generic i686
NonfreeKernelModules: wl
Architecture: i386
Date: Wed Feb 15 14:37:46 2012
ErrorMessage: subprocess installed post-installation script returned error exit 
status 139
InstallationMedia: Ubuntu 10.04.3 LTS Lucid Lynx - Release i386 (20110720.1)
SourcePackage: php5
Title: package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 139

** Affects: php5 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/932680

Title:
  package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/932680/+subscriptions

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


[Bug 932680] Re: package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2012-02-15 Thread Bhavanishankar
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/932680

Title:
  package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/932680/+subscriptions

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


[Bug 932680] Re: package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2012-02-15 Thread Ubuntu Foundation's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your log files attached to this bug report it
seems that a package failed to install due to a segmentation fault in
application being used by the package installation process.
Unfortunately, this bug report isn't very useful in its current state
and a crash report would be much more useful.  Could you try recreating
this issue by enabling apport to catch the crash report 'sudo service
apport start force_start=1' and then trying to install the same package
again?  This process will create a new bug report so I am marking this
one as Invalid.  Thanks again for helping out!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: package-install-segfault

** Changed in: php5 (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/932680

Title:
  package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/932680/+subscriptions

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


[Bug 932681] Re: package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to install/upgrade: subprocess installed post-installation script returned error exit status 139

2012-02-15 Thread Ubuntu Foundation's Bug Bot
Thank you for taking the time to report this bug and helping to make
Ubuntu better.  Reviewing your log files attached to this bug report it
seems that a package failed to install due to a segmentation fault in
application being used by the package installation process.
Unfortunately, this bug report isn't very useful in its current state
and a crash report would be much more useful.  Could you try recreating
this issue by enabling apport to catch the crash report 'sudo service
apport start force_start=1' and then trying to install the same package
again?  This process will create a new bug report so I am marking this
one as Invalid.  Thanks again for helping out!

[This is an automated message.  I apologize if it reached you
inappropriately; please just reply to this message indicating so.]

** Tags added: package-install-segfault

** Changed in: php5 (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to php5 in Ubuntu.
https://bugs.launchpad.net/bugs/932681

Title:
  package libapache2-mod-php5 5.3.2-1ubuntu4.14 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 139

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php5/+bug/932681/+subscriptions

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


[Bug 912355] Re: euca-allocate-address is not acepting any parameters

2012-02-15 Thread Dave Walker
Thanks for the feedback, marking Invalid.

Thanks.

** Changed in: euca2ools
   Status: New = Invalid

** Changed in: euca2ools (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to euca2ools in Ubuntu.
https://bugs.launchpad.net/bugs/912355

Title:
  euca-allocate-address is not acepting any parameters

To manage notifications about this bug go to:
https://bugs.launchpad.net/euca2ools/+bug/912355/+subscriptions

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


[Bug 610987] Re: euca-describe-availability-zones output is a hint, not totally accurate - and should be documented

2012-02-15 Thread Dave Walker
** Changed in: euca2ools (Ubuntu)
   Status: Confirmed = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in Ubuntu.
https://bugs.launchpad.net/bugs/610987

Title:
  euca-describe-availability-zones output is a hint, not totally
  accurate - and should be documented

To manage notifications about this bug go to:
https://bugs.launchpad.net/eucalyptus/+bug/610987/+subscriptions

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


[Bug 676167] Re: Hairpin NAT on CC disabled - EC2 inconsistency

2012-02-15 Thread Dave Walker
** Changed in: eucalyptus (Ubuntu)
 Assignee: Dave Walker (davewalker) = (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to eucalyptus in Ubuntu.
https://bugs.launchpad.net/bugs/676167

Title:
  Hairpin NAT on CC disabled - EC2 inconsistency

To manage notifications about this bug go to:
https://bugs.launchpad.net/eucalyptus/+bug/676167/+subscriptions

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


  1   2   3   4   5   6   7   8   9   10   >