[Maverick] linux kernel 2.6.35-13.18 uploaded (ABI bump)

2010-07-31 Thread Leann Ogasawara
We have uploaded a new Maverick linux kernel.Please note the ABI
bump.  This kernel have a few notable changes:

 * Syncs us up with the latest upstream AppArmor
 * Enables the -virtual kernel as a pv-ops kernel on EC2
 * Allows ureadahead2 to track the utilization of read-ahead pages
 * Prevents some race conditions during boot
 * Maintains the bootlaoder screen/contents through to plymouth starting
 * Enables USB and ethernet on the Beagle XM board.

The full changelog can be found at:

https://www.launchpad.net/ubuntu/+source/linux/2.6.35-13.18

Thanks,
Leann



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


Re: [ubuntu-x] i8xx legacy driver

2010-07-31 Thread Greg
I've been running this on my Lucid install on an i845 chip.  I haven't had a
freeze yet after about 3 days.  It's been up for 19 hours straight now.

description: VGA compatible controller
product: 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device

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


Re: [ubuntu-in] Apache2 error 98 : make_sock: Unable to connect to port 0.0.0.0:80

2010-07-31 Thread Manish Sinha
On Saturday 31 July 2010 11:56 PM, Rajat Khanduja wrote:
 I've tried to follow a variety of steps from a few things that I found 
 on the net.
 Could someone please tell me how I can get it running

 I get the error mentioned in subject whenever I try to start Apache2. 
 It was working file sometime ago, but recently I started facing this 
 trouble. I've tried using ps -e |grep httpd and ps -e| grep apache 
 but there was no result.



Actually this is happening because some other process has bound port 80 
on which Apache again tries bind, but fails to do so.

To find out which process has bound port 80, do
lsof -i :80
which will give you back something like

COMMAND  PID   USER   FD   TYPE  DEVICE SIZE/OFF NODE NAME
python  5748 manish4u  IPv4 3932411  0t0  TCP localhost:80 (LISTEN)

This output I got since I am using Django webserver (which is just an 
example)

Now since you have a the PID of the process, you may want to terminate 
it. Use
kill pid
like for the last example use
kill 5748

And still the process is not killing, you might want to send the KILL 
signal instead of TERM signal, but remember, this *can* corrupt the 
application which is currently bound to the port.
Sending the KILL signal is by
kill -9 pid


Your ps -e |grep httpd and ps -e| grep apache didnt work since 
apache was not started, some other process was bound to the port. This 
ps might work if apache failed to stop properly or something like that.
Many of the things I told were from how you explained your problem. If 
you have more details, do post it here.

--
Manish

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


Re: [ubuntu-in] Apache2 error 98 : make_sock: Unable to connect to port 0.0.0.0:80

2010-07-31 Thread Vivek Khurana
On Sat, Jul 31, 2010 at 11:56 PM, Rajat Khanduja
rajatkhanduj...@gmail.com wrote:
 I've tried to follow a variety of steps from a few things that I found on
 the net.
 Could someone please tell me how I can get it running
 I get the error mentioned in subject whenever I try to start Apache2. It was
 working file sometime ago, but recently I started facing this trouble. I've
 tried using ps -e |grep httpd and ps -e| grep apache but there was no
 result.

 Try as root

 netstat -avnp | grep 80

 This will give you the process id of the process which has blocked
port 80. Terminate the process and try again.

regards
Vivek

-- 
The hidden harmony is better than the obvious!!

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


Re: [ubuntu-in] Apache2 error 98 : make_sock: Unable to connect to port 0.0.0.0:80

2010-07-31 Thread Rajat Khanduja
After making some changes here and there...and unistalling Boa (which I
had installed and forgotten about) I succeeded in starting Apache. Now the
status says its running (and unlike during the problem, it starts on
startup) ..

But yet I'm unable to connect to localhost through a browser. What should I
do?

I was using Apache, until recently, without much problem to simulate a
localserver.

Thank you for the quick response.
-- 
ubuntu-in mailing list
ubuntu-in@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-in


Re: [ubuntu-in] Apache2 error 98 : make_sock: Unable to connect to port 0.0.0.0:80

2010-07-31 Thread பாலாஜி நாராயண ன்
On 1 August 2010 10:26, Rajat Khanduja rajatkhanduj...@gmail.com wrote:
 After making some changes here and there...and unistalling Boa (which I
 had installed and forgotten about) I succeeded in starting Apache. Now the
 status says its running (and unlike during the problem, it starts on
 startup) ..

 But yet I'm unable to connect to localhost through a browser. What should I
 do?
 I was using Apache, until recently, without much problem to simulate a
 localserver.
 Thank you for the quick response.

How are you connecting using the browser? http://127.0.0.1 does not work?

And what is the error you are seeing?

-balaji


-- 
http://balajin.net/blog
http://flic.kr/balajijegan

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


Re: [ubuntu-in] Apache2 error 98 : make_sock: Unable to connect to port 0.0.0.0:80

2010-07-31 Thread Rajat Khanduja
using http://localhost or http://127.0.0.1 results in the list of
files/folders in that folder.

I tried accessing some php files as well, I only get the option of
download the file.

2010/8/1 Balaji Narayanan (பாலாஜி நாராயணன்) li...@balajin.net

 On 1 August 2010 10:26, Rajat Khanduja rajatkhanduj...@gmail.com wrote:
  After making some changes here and there...and unistalling Boa (which I
  had installed and forgotten about) I succeeded in starting Apache. Now
 the
  status says its running (and unlike during the problem, it starts on
  startup) ..
 
  But yet I'm unable to connect to localhost through a browser. What should
 I
  do?
  I was using Apache, until recently, without much problem to simulate a
  localserver.
  Thank you for the quick response.

 How are you connecting using the browser? http://127.0.0.1 does not work?

 And what is the error you are seeing?

 -balaji


 --
 http://balajin.net/blog
 http://flic.kr/balajijegan

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

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


[ubuntu-in] Relocation error!

2010-07-31 Thread Abhijit Navale
Hello all!!!

Please help me.
I reported my issue here:
http://ubuntuforums.org/showthread.php?t=1542391

Please help!!!


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


[Ubuntu-QC] driver wifi pour HGWPCI-54 sur Ubuntu 10.04

2010-07-31 Thread Niklos

Bonjour, 
Je cherche désespérement le driver compatible pour cette carte sous Ubuntu
10.4 depuis 1 semaine.

Ma connexion est instable et je n'arrive qu'à 120 ko/s en download maximum
alors que ma ligne permet 484 ko/s.
Selon la documentation cela est du au driver de base de lucid le rt2500pci
J'ai donc tenté par différente méthode d'installer un driver plus pertinent.

-J'ai commencé par télécharger le module NDISWRAPPER et le pilote netr61 sur
http:\\driver-pack.net dans le windows pack 2003/Xp

mais ce pilote n'est pas reconnu ou pas compatible avec lucid.

J'ai ensuite trouvé sur certains sites le pilote rt61 pour ndiswrapper
ce pilote fonctionnait pour ma carte sous hybrid et d'autre version mais ça
n'a rien donné sous lucid.

-J'ai ensuite tenté de compiler et installer le module de rt2500 de synaptic
grâce à module-assistant comme expliqué dans le README;
mais au milieu de l'opération Build des erreurs sont apparues :
   touch config.mk \ 
↑
 │  /usr/bin/make clean
▮
 │ make[1]: entrant dans le répertoire « /usr/src/modules/rt2500 »   
▒
 │ make[1]: quittant le répertoire « /usr/src/modules/rt2500 »   
▒
 │ dh_clean  
▒
 │ /usr/bin/make  -f debian/rules kdist_clean kdist_config binary-modules
▒
 │ make[1]: entrant dans le répertoire « /usr/src/modules/rt2500 »   
▒
 │ touch config.mk \ 
▒
 │  /usr/bin/make clean
▒
 │ make[2]: entrant dans le répertoire « /usr/src/modules/rt2500 »   
▒
 │ make[2]: quittant le répertoire « /usr/src/modules/rt2500 »   
▒
 │ dh_clean  
▒
 │ dh_clean: Compatibility levels before 5 are deprecated.   
▒
 │ for templ in ; do \   
▒
 │ cp $templ `echo $templ | sed -e 's/_KVERS_/2.6.32-24-generic/g'` ; \
   done
▒
 │ for templ in `ls debian/*.modules.in` ; do \  
▒
 │ test -e ${templ%.modules.in}.backup || cp ${templ%.modules.in}
▮
 │ ${templ%.modules.in}.backup 2/dev/null || true; \
▒
 │ sed -e 's/##KVERS##/2.6.32-24-generic/g   
▒
 │ ;s/#KVERS#/2.6.32-24-generic/g ; s/_KVERS_/2.6.32-24-generic/g ;  
▒
 │ s/##KDREV##/2.6.32-24.38/g ; s/#KDREV#/2.6.32-24.38/g ;   
▒
 │ s/_KDREV_/2.6.32-24.38/g  '  $templ  ${templ%.modules.in}; \
▒
 │   done
▒
 │ # Install module  
▒
 │ dh_installdirs lib/modules/2.6.32-24-generic/kernel/drivers/net/wireless  
▒
 │ dh_installdirs: Compatibility levels before 5 are deprecated.  
   # Build modules   
▒
 │ /usr/bin/make KERNDIR=/usr/src/linux-headers-2.6.32-24-generic
▒
 │ PATCHLEVEL=6  
▒
 │ make[2]: entrant dans le répertoire « /usr/src/modules/rt2500 »   
▒
 │ make[3]: entrant dans le répertoire « 
▒
 │ /usr/src/linux-headers-2.6.32-24-generic »
▒
 │   Building modules, stage 2.  
▒
 │   MODPOST 0 modules   
▮
 │ make[3]: quittant le répertoire « 
▒
 │ /usr/src/linux-headers-2.6.32-24-generic »
▒
 │ rt2500.ko failed to build!
▒
 │ make[2]: *** [module] Erreur 1
   make[2]: quittant le répertoire « /usr/src/modules/rt2500 »   
▒
 │ make[1]: *** [binary_modules] Erreur 2
▒
 │ make[1]: quittant le répertoire « /usr/src/modules/rt2500 »   
▒
 │ make: *** [kdist_build] Erreur 2  
▮
 │ 9  

-j'ai ensuite essayé de me tourner vers le driver de rt2x00 de serialmonkey
comme conseillé dans la documentation mais le seul driver que je peux
télécharger est le rt73 ,
à savoir que le rt73 n'est pas compatible avec ma carte.

Je suis donc dans l'impasse ,

Si vous saviez me conseiller le meilleur driver ,je me concentrerai
uniquement à son installation 

Un tout grand merci d'avance 

Pour vous aidez ,je met une liste de commandes pertinentes ci-dessous :
cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=10.04
DISTRIB_CODENAME=lucid
DISTRIB_DESCRIPTION=Ubuntu 10.04.1 LTS


lsusb
Bus 002 

Re: [ubuntu-uk] loco logo

2010-07-31 Thread Will Bickerstaff
Going back to the Different Uu shapes how about a bolder lower Case u made
to match the K weight similar to this:

http://will.thebickerstaffs.net/logo.svg
-- 
ubuntu-uk@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-uk
https://wiki.ubuntu.com/UKTeam/


Re: [ubuntu-uk] loco logo

2010-07-31 Thread Alan Bell
On 31/07/10 09:50, Will Bickerstaff wrote:
 Going back to the Different Uu shapes how about a bolder lower Case u
 made to match the K weight similar to this:

 http://will.thebickerstaffs.net/logo.svg
nice, I thought about doing that, but kind of didn't want to mess with
the work of a master font geek. I was kind of keeping it pure to the
actual font, but I do agree it looks better that way. I do like the fact
that on first glance it looks like we haven't done anything interesting
with the logo, then you see it isn't quite as expected, and you have to
look a little deeper to see what exactly has been done.

Alan.

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


Re: [ubuntu-uk] loco logo

2010-07-31 Thread Yorvyk
On Sat, 31 Jul 2010 09:50:29 +0100
Will Bickerstaff w...@thebickerstaffs.net wrote:

 Going back to the Different Uu shapes how about a bolder lower Case u made
 to match the K weight similar to this:
 
 http://will.thebickerstaffs.net/logo.svg

That looks a bit better, still looks a little bit odd (unbalanced?) to me 
though.

-- 
Steve Cook (Yorvyk)

http://lubuntu.net 

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


[ubuntu-uk] HTML as desktop background?

2010-07-31 Thread Jack Leigh
Hey guys,

I recently came across this awesome demo of using the canvas tag in 
HTML to do 8-bit color cycling 
(http://www.effectgames.com/demos/canvascycle/)
Does anyone know of a way that I could set one of these as my desktop 
background or produce an image that I could use or anything?  Obviously 
the animation is key.

Thanks,
Jack

-- 
leighman | 'And, if rain brings winds of change, let it rain on us forever'

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


[ubuntu-uk] 10.04: 64-bit or 32-bit install?

2010-07-31 Thread David

I suspect that this is a bit of an FAQ (albeit one with constantly-changing 
answers..), apologies if so. I have done some web searching on 64-bit issues, 
but there's a lot of (also constantly-changing) information to read through..

I've just bought a new 64-bit PC (my first), and am wondering whether or
not I should install the 64-bit version of Ubuntu (10.04) or just stick
with the 32-bit version?

I probably don't really have any _need_ (only 3 GB RAM) for 64-bit Linux 
(presumably 32-bit Linux will work on x86_64 CPUs (Athlon II X2 dual-core, 
fwiw) near enough as efficiently as 64-bit Linux would?), but as we'll all
have to get there sooner or later, I'm wondering if I should make the
leap now?

I don't have any particularly high-performance requirements (I plan to
run BOINC (which may be an issue as I think most/all BOINC projects are
32-bit), but BOINC will get whatever resources I feel comfortable
throwing at it, rather than being the main use of the system: the main
issue will be can I get the BOINC projects to work rather than can I
squeeze every last drop of CPU power for them), but I will be doing a lot 
of the usual desktop things which might be problematic in a 64-bit 
environment:

Nvidia drivers

Firefox (plus a variety of add-ons, any potential issues there?)

Flash (in Firefox, particularly BBC iPlayer, 4OD, etc, which are
must-haves! Adobe's withdrawal of Flash-64 sounds like a warning..)

Java plug-in in Firefox

Thunderbird (again, any potential issues with extensions?)

OpenOffice, GnuCash, Gimp

a local LAMP (P=PHP) set-up, although to be honest I tend to do very
little web dev at home these days, mainly at work instead.


If I need to install 32-bit apps in a 64-bit OS, is this a painful
process? Any particularly convoluted set-up or reliability issues that I
need to be aware of?

As I said, I don't think I have any real need for 64-bit, so if trying
to set up a 64-bit system to meet all my requirements would be a *real*
pain, then I'd probably be best not bothering, but if only a relatively
small amount of pain is involved (I'm fairly experienced with Linux and
have little fear of the command line), then maybe it might be worth a
go.


If I could also ask a couple of related questions:

What's the general view on the size of the swap partition these days? Is 
2x RAM still the best policy?

ext3 v ext4? I've heard various grumbles about ext4 being slower (I
think it was something to do with rewriting files during software
updates in particular? - I've forgotten the exact details), and it also
still seems a bit 'new' ..or am I just worrying too much?


Thanks for any advice,

David.


-- David.  Edinburgh, Scotland.  
* Please only quote minimum needed for context; interleave reply text.
* On-list replies preferred, please don't 'cc:' list messages to me.
* HTML/slug-trails/excess-quoting/no-context/zero-content = filtered!
 Read lists as news: nntp://news.gmane.org  info: http://gmane.org/ 


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


Re: [ubuntu-uk] 10.04: 64-bit or 32-bit install?

2010-07-31 Thread Liam Proven
On 31 July 2010 13:32, David lists2...@trancepod.netmx.co.uk wrote:

 I suspect that this is a bit of an FAQ (albeit one with constantly-changing
 answers..), apologies if so. I have done some web searching on 64-bit issues,
 but there's a lot of (also constantly-changing) information to read through..

 I've just bought a new 64-bit PC (my first), and am wondering whether or
 not I should install the 64-bit version of Ubuntu (10.04) or just stick
 with the 32-bit version?

I went 64-bit when I installed on my new-to-me hand-me-down Athlon64
X2 PC last year, with 9.10. I thought, hey, Linux today is no
challenge, not like in the old days, perhaps this will put a bit of
the fun back.

Well, I was disappointed. :¬) It was a walk in the park. Everything
has worked, no significant snags or hitches at all at any point.

There were glitches with one thing which I'll come to in a moment.

(But for the challenge I am considering going to FreeBSD or
OpenSolaris or something instead. 64-bit Linux Ubuntu is just too
damned easy.)

 I probably don't really have any _need_ (only 3 GB RAM) for 64-bit Linux
 (presumably 32-bit Linux will work on x86_64 CPUs (Athlon II X2 dual-core,
 fwiw) near enough as efficiently as 64-bit Linux would?), but as we'll all
 have to get there sooner or later, I'm wondering if I should make the
 leap now?

Definitely, do it.

 I don't have any particularly high-performance requirements (I plan to
 run BOINC (which may be an issue as I think most/all BOINC projects are
 32-bit), but BOINC will get whatever resources I feel comfortable
 throwing at it, rather than being the main use of the system: the main
 issue will be can I get the BOINC projects to work rather than can I
 squeeze every last drop of CPU power for them),

I run s...@home, einst...@home and ClimatePrediction.net on my box;
all work flawlessly.

 but I will be doing a lot
 of the usual desktop things which might be problematic in a 64-bit
 environment:

 Nvidia drivers

Seamless. No issues at all.

 Firefox (plus a variety of add-ons, any potential issues there?)

None. Addins are written in XUL and are cross-platform; the same
binaries run on PowerPC, x86, x86-32 etc.

 Flash (in Firefox, particularly BBC iPlayer, 4OD, etc, which are
 must-haves! Adobe's withdrawal of Flash-64 sounds like a warning..)

I had niggles with Flash at first. A few videos did not play just by
clicking on them; I had to use keyboard navigation - the Tab key and
Space to click - to start them playing. However, that's gone away now.

 Java plug-in in Firefox

Flawless.

 Thunderbird (again, any potential issues with extensions?)

Flawless. Same comments as re Firefox: Mozilla plugins are natively
cross-platform.

 OpenOffice, GnuCash, Gimp

OOo is fine; I even removed 3.1 from Ubuntu 9.10 and loaded 3.2 from
.DEBs from the OOo site. No issues.

Never tried GnuCash and only rarely use GIMP for resizing or cropping.
Both are fine.

 a local LAMP (P=PHP) set-up, although to be honest I tend to do very
 little web dev at home these days, mainly at work instead.

Never use it. I anticipate no issues.

 If I need to install 32-bit apps in a 64-bit OS, is this a painful
 process? Any particularly convoluted set-up or reliability issues that I
 need to be aware of?

In the very rare cases where no 64-bit build is available, scripts
install the 32-bit build automagically for me. (E.g. UbuntuZilla
installed 32-bit Seamonkey as Ubuntu's build is out-of-date. I later
swapped out Ubutu's Thunderbird 3 for 3.1.1 from Mozilla using the
same Ubuntuzilla tool. Again, flawless.)

 As I said, I don't think I have any real need for 64-bit, so if trying
 to set up a 64-bit system to meet all my requirements would be a *real*
 pain, then I'd probably be best not bothering, but if only a relatively
 small amount of pain is involved (I'm fairly experienced with Linux and
 have little fear of the command line), then maybe it might be worth a
 go.

You'll never notice the difference. It's quick, though, and I like the
feeling of knowing that I'm running a native 64-bit OS.

 If I could also ask a couple of related questions:

 What's the general view on the size of the swap partition these days? Is
 2x RAM still the best policy?

Up to 1GB RAM, yes. For 1GB RAM, for ordinary use, a 2GB swap
partition is plenty. It's all I have and I never use more than a
hundred meg or so. (4GB RAM, typical workload Firefox + Chrome +
Pidgin + Skype + OpenOffice + Nautilus + Gedit + a few terminals +
BOINC + Transmission.)

 ext3 v ext4? I've heard various grumbles about ext4 being slower (I
 think it was something to do with rewriting files during software
 updates in particular? - I've forgotten the exact details), and it also
 still seems a bit 'new' ..or am I just worrying too much?

I avoid ext4 for now, myself, but I only have tiny twin 120GB EIDE
disks. (Most of my data lives on a server, ironically running Windows
2008 Server.) If you have terabyte drives, it might be worth it.

-- 

Re: [ubuntu-uk] 10.04: 64-bit or 32-bit install?

2010-07-31 Thread Liam Proven
On 31 July 2010 14:39, Liam Proven lpro...@gmail.com wrote:
 On 31 July 2010 13:32, David lists2...@trancepod.netmx.co.uk wrote:
 Flash (in Firefox, particularly BBC iPlayer, 4OD, etc, which are
 must-haves! Adobe's withdrawal of Flash-64 sounds like a warning..)

Oh, thought I might add - very occasionally, if something won't play
in Firefox I try Chrome instead, and /vice versa/. This gets pretty
much everything working. I can view QuickTime movie trailers on
Apple.com, iPlayer on the Beeb, YouTube, Break, DailyMotion, etc.

I recommend Chrome. It's noticeably faster than Firefox these days. I
use F'fox for daily browsing, because of my assortment of handy
addons, but leave Chrome open all day with Gmail in it, and use other
AJAX-heavy sites in Chrome for preference - Gmaps, Flickr, Twitter,
Facebook, etc.

I am a fairly heavy user of F'fox addons, including Linky,
DownThemAll, BugMeNot, AdBlock+, Yoono, FireStatus,
MultirowBookmarksToolbar, AutoPagerize, CheckPlaces, OverbiteFF,
TreeStyleTab  Xmarks.

-- 
Liam Proven • Profile  links: http://www.google.com/profiles/lproven
Email: lpro...@cix.co.uk • GMail/GoogleTalk/Orkut: lpro...@gmail.com
Tel: +44 20-8685-0498 • Cell: +44 7939-087884 • Fax: + 44 870-9151419
AIM/Yahoo/Skype: liamproven • MSN: lpro...@hotmail.com • ICQ: 73187508

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


Re: [ubuntu-uk] 10.04: 64-bit or 32-bit install?

2010-07-31 Thread Glen Mehn
  On 31/07/10 13:32, David wrote:
 I suspect that this is a bit of an FAQ (albeit one with constantly-changing
 answers..), apologies if so. I have done some web searching on 64-bit issues,
 but there's a lot of (also constantly-changing) information to read through..

Short answer (from my perspective): If you're handy enough to make this 
list, you'll be fine. If you were asking for a computer for your nan, 
I'd suggest 32 bit. There are a few niggles. More below.

[SNIP]
 Nvidia drivers

Fine
 Firefox (plus a variety of add-ons, any potential issues there?)

Fine
 Flash (in Firefox, particularly BBC iPlayer, 4OD, etc, which are
 must-haves! Adobe's withdrawal of Flash-64 sounds like a warning..)

All works fine-- if you use the Ubuntu packages. They've sorted the 
32/64 bit issue (by including the required 32-bit libs.
 Java plug-in in Firefox

Fine (comes in 64 bit)
 Thunderbird (again, any potential issues with extensions?)

None that I know of, though I'd seriously suggest finding a backport of 
TB 3.1 (indexing issues) In general, OSS == fine
 OpenOffice, GnuCash, Gimp

 a local LAMP (P=PHP) set-up, although to be honest I tend to do very
 little web dev at home these days, mainly at work instead.


 If I need to install 32-bit apps in a 64-bit OS, is this a painful
 process? Any particularly convoluted set-up or reliability issues that I
 need to be aware of?

The only niggle I've had is with Adobe AIR and some of the apps-- 
essentially, they end up with an unresolved dependency. The solution (in 
this case) was to use the binary (NOT .deb) version of the package, then 
tweetdeck et all don't demand to be uninstalled due to dependencies.

The only thing will be the 32 bit libs you'll need for other 
packages-- or to recompile them, which typically isn't that big of a 
deal (if it's OSS). Friendly package maintainers and their mailing lists 
will probably help you if you can't sort it

So, I'd say that 98% of the time it all just works... then, 
occasionally there's a niggle, which is less than you'd get with OSX or 
whatever... but seems really annoying 'cos you can't immediately sort it 
out.
 If I could also ask a couple of related questions:

 What's the general view on the size of the swap partition these days? Is
 2x RAM still the best policy?
I am not 100% sure of this, but I have heard loads of people say, 
basically, that unless you have *very* specific requirements, more than 
2GB of swap (even with 4GB RAM) is overkill. That's what I've got, and 
it seems to be fine. YMMV, of course.
 ext3 v ext4? I've heard various grumbles about ext4 being slower (I
 think it was something to do with rewriting files during software
 updates in particular? - I've forgotten the exact details), and it also
 still seems a bit 'new' ..or am I just worrying too much?

Go with EXT4. Faster, better journalling, etc. Of course, you will pay, 
but unless you have *very* specific requirements, go with what works.

Alternatively, I've had really good with XFS as well, which is fast, 
stable, etc.

Best of luck!

Glen

-- 
Glen Mehn
glen.m...@oba.co.uk
skype: glenmehn | blog: http://glen.mehn.net/mba
UK: +44(0)7942 675 755 | US: +1 415 704 4737


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


Re: [ubuntu-uk] loco logo

2010-07-31 Thread DaveGK
 On Fri, 30 Jul 2010 22:58:22 +0100
 Alan Bellalan.b...@theopenlearningcentre.com  wrote:

 well now we have the Ubuntu Sans Bold font in beta I have done the logo
 as an SVG in Inkscape with the UK bit in bold and the ubuntu- bit in a
 larger regular weight. This ends up with the UK bit looking a little
 heavier than the first part rather than the really close match I did in
 the Gimp version, but I kind of like the bolder UK. The roundel that
 contains the circle of friends lines up with the top of the ascenders
 and the baseline of the text. The font colour is, I think, cool grey.
 It would probably be possible to manually make the weight of the weight
 of the UK a little less, or wait for the release of the Medium weight font.

 http://people.ubuntu.com/~alanbell/uuk/logo.svg

 What do you think?

May I suggest a couple of things:

1. move the circle of friends to after ubuntu, rather than UK
2. this will let you drop the hyphen, which is extremely heavy visually
3. use a very thin typeface for UK, rather than bold - will look much 
more professional

If you prefer not to make these changes, at least consider replacing 
hyphen with a dot, and not in bold, but in normal ubuntu weight.

-- 
Regards,
Dave


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


Re: [ubuntu-uk] loco logo

2010-07-31 Thread Alan Bell
On 31/07/10 16:33, DaveGK wrote:

 May I suggest a couple of things:

 1. move the circle of friends to after ubuntu, rather than UK
   
yup, certainly worth a try http://people.ubuntu.com/~alanbell/uuk/logo2.svg
 2. this will let you drop the hyphen, which is extremely heavy visually
 3. use a very thin typeface for UK, rather than bold - will look much 
 more professional
   
not sure it conveys professionalism
http://people.ubuntu.com/~alanbell/uuk/logo3.svg
that is using the regular weight font, the UK bit seems lighter than the
ubuntu bit because it is a smaller point size.
 If you prefer not to make these changes,
really, I don't have that big an ego! this is a team thing, not a me
thing. The SVG is pretty easy to edit in inkscape, feel free to have a
go at tweaking it yourself
  at least consider replacing 
 hyphen with a dot, and not in bold, but in normal ubuntu weight.

   
just for completeness, and to show how totally wrong it looks here it is
with uk in lower case.
http://people.ubuntu.com/~alanbell/uuk/logo4.svg

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


Re: [ubuntu-uk] HTML as desktop background?

2010-07-31 Thread Andrew Bryant
On 31/07/10 13:08, Jack Leigh wrote:
 Hey guys,

 I recently came across this awesome demo of using thecanvas  tag in
 HTML to do 8-bit color cycling
 (http://www.effectgames.com/demos/canvascycle/)
 Does anyone know of a way that I could set one of these as my desktop
 background or produce an image that I could use or anything?  Obviously
 the animation is key.

 Thanks,
 Jack


That's all very well for those of you with supercomputers - for us mere 
mortals it means  50% CPU effort frittered away :-)

Andrew.

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


Re: [ubuntu-uk] loco logo

2010-07-31 Thread Yorvyk
On Sat, 31 Jul 2010 16:54:36 +0100
Alan Bell alan.b...@theopenlearningcentre.com wrote:
snip

 just for completeness, and to show how totally wrong it looks here it is
 with uk in lower case.
 http://people.ubuntu.com/~alanbell/uuk/logo4.svg
 
Seriously, I rather like the lower case uk.


-- 
Steve Cook (Yorvyk)

http://lubuntu.net 

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


Re: [ubuntu-uk] loco logo

2010-07-31 Thread Andy Braben
And I prefer the lower case as well. However I think the logo would
look better if it is bottom aligned.

Regards,
Andy.

On 31 July 2010 17:25, Yorvyk yorvik.ubu...@googlemail.com wrote:
 On Sat, 31 Jul 2010 16:54:36 +0100
 Alan Bell alan.b...@theopenlearningcentre.com wrote:
 snip

 just for completeness, and to show how totally wrong it looks here it is
 with uk in lower case.
 http://people.ubuntu.com/~alanbell/uuk/logo4.svg

 Seriously, I rather like the lower case uk.


 --
 Steve Cook (Yorvyk)

 http://lubuntu.net

 --
 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] HTML as desktop background?

2010-07-31 Thread Tyler J. Wagner
On 31/07/10 13:08, Jack Leigh wrote:
 Hey guys,
 
 I recently came across this awesome demo of using thecanvas  tag in
 HTML to do 8-bit color cycling
 (http://www.effectgames.com/demos/canvascycle/)
 Does anyone know of a way that I could set one of these as my desktop
 background or produce an image that I could use or anything?  Obviously
 the animation is key.

If you use Kubuntu / KDE, just add a web browser (Konqueror) plasmoid to your 
desktop, and point it to the site or a local file.

Regards,
Tyler

-- 
They that can give up essential liberty to obtain a little temporary 
safety deserve neither liberty nor safety ...
   -- Benjamin Franklin, 1759

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


Re: [ubuntu-uk] loco logo

2010-07-31 Thread Alan Bell
On 31/07/10 17:32, Andy Braben wrote:
 And I prefer the lower case as well.
it is wrong wrong wrong!
  However I think the logo would
 look better if it is bottom aligned.
   
the branding guidelines say it should be up there, which may or may not
be the final answer on it. I don't yet know how much messing about loco
teams are going to be able to do with the new branding.
 Regards,
 Andy.

   


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


Re: [ubuntu-uk] HTML as desktop background?

2010-07-31 Thread Jack Leigh
On 31/07/10 17:35, Tyler J. Wagner wrote:
 On 31/07/10 13:08, Jack Leigh wrote:
 Hey guys,

 I recently came across this awesome demo of using thecanvas   tag in
 HTML to do 8-bit color cycling
 (http://www.effectgames.com/demos/canvascycle/)
 Does anyone know of a way that I could set one of these as my desktop
 background or produce an image that I could use or anything?  Obviously
 the animation is key.

 If you use Kubuntu / KDE, just add a web browser (Konqueror) plasmoid to your
 desktop, and point it to the site or a local file.

 Regards,
 Tyler


Sadly (!) I'm using Gnome

-- 
leighman | 'And, if rain brings winds of change, let it rain on us forever'
http://www.ubuntu.com/ | http://www.opera.com/browser/

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


Re: [ubuntu-uk] 10.04: 64-bit or 32-bit install?

2010-07-31 Thread Rob Beard
On 31/07/10 14:39, Liam Proven wrote:
 On 31 July 2010 13:32, Davidlists2...@trancepod.netmx.co.uk  wrote:

 As I said, I don't think I have any real need for 64-bit, so if trying
 to set up a 64-bit system to meet all my requirements would be a *real*
 pain, then I'd probably be best not bothering, but if only a relatively
 small amount of pain is involved (I'm fairly experienced with Linux and
 have little fear of the command line), then maybe it might be worth a
 go.

 You'll never notice the difference. It's quick, though, and I like the
 feeling of knowing that I'm running a native 64-bit OS.


My experience wasn't as good.  Running a 64-Bit OS caused me a few 
issues, including with Flash on some stuff.  Worst thing was LogMeIn, I 
ended up installing the Windows 32-Bit Firefox in Wine to use LogMeIn. 
Suffice to say I'm back on 32-Bit now, works fine with 4GB Ram.

Saying that you can run 32-Bit apps in a 32-Bit Chroot (I used to do 
this a while back on Ubuntu 7.10 I believe) to get Flash on Firefox 
before the 64-Bit builds came out.

 If I could also ask a couple of related questions:

 What's the general view on the size of the swap partition these days? Is
 2x RAM still the best policy?

 Up to 1GB RAM, yes. For1GB RAM, for ordinary use, a 2GB swap
 partition is plenty. It's all I have and I never use more than a
 hundred meg or so. (4GB RAM, typical workload Firefox + Chrome +
 Pidgin + Skype + OpenOffice + Nautilus + Gedit + a few terminals +
 BOINC + Transmission.)


I've got about 512MB swap on my 4GB machine, I think the highest swap 
usage has been about 200MB and that's with a whole load of Firefox tabs 
open and some other stuff.  I gather though if you want to do things 
like hibernating then you need as much swap space as you have memory, 
possibly a bit extra too (last time I tried hibernating I had 4GB swap 
and 4GB memory and I believe about 100MB of swap was being used so it 
failed to hibernate).

 ext3 v ext4? I've heard various grumbles about ext4 being slower (I
 think it was something to do with rewriting files during software
 updates in particular? - I've forgotten the exact details), and it also
 still seems a bit 'new' ..or am I just worrying too much?

 I avoid ext4 for now, myself, but I only have tiny twin 120GB EIDE
 disks. (Most of my data lives on a server, ironically running Windows
 2008 Server.) If you have terabyte drives, it might be worth it.


If you have big drives EXT4 does speed checking them up, when my 320GB 
drive was formatted to EXT3 I could be waiting 10 minutes for a disc 
check (or there abouts), where as with EXT4 it didn't take half as long 
(one minute if that).

Rob

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


RE: Ubuntu-accessibility Digest, Vol 56, Issue 6

2010-07-31 Thread Michael Cross
I plan to install Vinux 3 on a 1 TB hard drive. But, I would like the
flexibility to have other distributions such as SuSe and Fedora on the
drive also. How should I arrange my partitions to achieve this? I have
read that /Home and /usr need to be in their own partition. So, do I
need to have /Home in HDA1 and /usr in HDA2?
I would also like to install Windows 7 in one of the partitions. Is
their an install sequence. Should I install Windows 7 first?
I am thinking two 1125 GB partitions for 
However, since there's a limit of four primary partitions, I may have to
give up the idea of having Windows on the system. Having at least two
other distributions lf Linux is more important to me than having Windows
on this machine. I have a second machine for Windows anyway. I need some
guidence on setting up partitions and how large they should be. How many
HAD partitions and HDB partitions etc do I need and how big should they
be?
Any advice would be welcome.
Michael Cross 

-Original Message-
From: ubuntu-accessibility-boun...@lists.ubuntu.com
[mailto:ubuntu-accessibility-boun...@lists.ubuntu.com] On Behalf Of
ubuntu-accessibility-requ...@lists.ubuntu.com
Sent: Saturday, July 31, 2010 6:00 AM
To: ubuntu-accessibility@lists.ubuntu.com
Subject: Ubuntu-accessibility Digest, Vol 56, Issue 6


Send Ubuntu-accessibility mailing list submissions to
ubuntu-accessibility@lists.ubuntu.com

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.ubuntu.com/mailman/listinfo/ubuntu-accessibility
or, via email, send a message with subject or body 'help' to
ubuntu-accessibility-requ...@lists.ubuntu.com

You can reach the person managing the list at
ubuntu-accessibility-ow...@lists.ubuntu.com

When replying, please edit your Subject line so it is more specific than
Re: Contents of Ubuntu-accessibility digest...


Today's Topics:

   1. Re: speakup (Luke Yelavich)


--

Message: 1
Date: Sat, 31 Jul 2010 12:38:18 +1000
From: Luke Yelavich them...@ubuntu.com
Subject: Re: speakup
To: ubuntu-accessibility@lists.ubuntu.com
Message-ID: 20100731023818.gb2...@barbiton.yelavich.home
Content-Type: text/plain; charset=us-ascii

On Fri, Jul 30, 2010 at 05:20:32AM EST, Mike Coulombe wrote:

   Hi, what file do I need to install speakup on mavric?
Currently, you need to install the speakup-source package, and use
module-assistant to build it. However I intend to upload a new revision
of the package in the coming days that will automatically build when you
install the package. The new revision will also work with the Maverick
kernels.

Luke



--

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


End of Ubuntu-accessibility Digest, Vol 56, Issue 6
***


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


Re: Ubuntu-accessibility Digest, Vol 56, Issue 6 - To Michael Cross

2010-07-31 Thread Maurice McCarthy
On 31 July 2010 14:26, Michael Cross michaelrcros...@austin.rr.com wrote:
 I plan to install Vinux 3 on a 1 TB hard drive. But, I would like the
 flexibility to have other distributions such as SuSe and Fedora on the
 drive also. How should I arrange my partitions to achieve this? I have
 read that /Home and /usr need to be in their own partition. So, do I
 need to have /Home in HDA1 and /usr in HDA2?
 I would also like to install Windows 7 in one of the partitions. Is
 their an install sequence. Should I install Windows 7 first?
 I am thinking two 1125 GB partitions for
 However, since there's a limit of four primary partitions, I may have to
 give up the idea of having Windows on the system. Having at least two
 other distributions lf Linux is more important to me than having Windows
 on this machine. I have a second machine for Windows anyway. I need some
 guidence on setting up partitions and how large they should be. How many
 HAD partitions and HDB partitions etc do I need and how big should they
 be?
 Any advice would be welcome.
 Michael Cross


I am not well experienced in Windows 7 and have not yet used Vinux,
but I shall try to give some help. Formerly you always had to install
Windows before Linux because Windows refuses to co-operate with Linux
but Linux recognises and co-operates with Windows. I believe this is
no longer the case but I am not sure.

Windows 7 will take 2 primary partitions, one for the boot files which
will be hidden from normal users and one for the operating system, but
all Linux systems will boot from so-called logical partitions. If you
use the Windows system restore you may need a third partition to
save the system restore files. I think this sometimes called the Data
partition.

The fourth partition may now become an extended partition. That is you
can create as many partitions inside this extended partition as you
like. Previously Windows would only boot from a primary partition but
I don't know if this is still the case.

On the linux systems, as you will be having many of them I would
certainly have a separate home partition to keep all your personal
data and files. But it will be simpler /not/ to have a separate usr
partition for each distribution. I am not sure of recommended
partition sizes but I shall try to find out. It may take a day or two.

Do you have 2 1TB hard disks or just one. The linux terms hda and hdb
usually refer to separate disks. There will also be the problem of
handling the different boot loaders correctly. Please make sure you
have a back up of all your personal files before starting all this as
disasters can happen.

Are you sighted, visually impaired or totally blind? Sorry to pry but
this may affect which tools to suggest. I think you need to sighted to
install Windows 7.

Good Luck
Maurice

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


Re: PHASEX - an interesting soft synth

2010-07-31 Thread Tobiasz Karoń
Available in unstable, I hope to get it in UbuntuStudio soon.

Great! Thanks a lot, I hope it will be there soon :)

Hopes some more interest around Phasex might move it's development forward.

2010/7/22, Alessio Treglia quadris...@ubuntu.com:
 On Thu, Jul 22, 2010 at 11:33 PM, Archive Administrator
 instal...@ftp-master.debian.org wrote:
 Accepted:
 phasex-dbg_0.12.0~pre1-1_i386.deb
  to main/p/phasex/phasex-dbg_0.12.0~pre1-1_i386.deb
 phasex_0.12.0~pre1-1.debian.tar.gz
  to main/p/phasex/phasex_0.12.0~pre1-1.debian.tar.gz
 phasex_0.12.0~pre1-1.dsc
  to main/p/phasex/phasex_0.12.0~pre1-1.dsc
 phasex_0.12.0~pre1-1_i386.deb
  to main/p/phasex/phasex_0.12.0~pre1-1_i386.deb
 phasex_0.12.0~pre1.orig.tar.gz
  to main/p/phasex/phasex_0.12.0~pre1.orig.tar.gz

 Available in unstable, I hope to get it in UbuntuStudio soon.


 --
 Alessio Treglia ales...@alessiotreglia.com
 Debian  Ubuntu Developer | Homepage: http://www.alessiotreglia.com
 0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0

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



-- 
Tobiasz 'unfa' Karoń

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


Re: ubuntu load problems (forwarded to ubuntu-au)

2010-07-31 Thread Scott Evans
On Fri, 2010-07-30 at 10:33 +1000, phil lock wrote:
 Hi Scott, I am presuming that you will assist me with some insights
 into my problems - there does not appear to be a mainland person
 available for my region but as Tassie is only a stone's throw ( little
 stone and big arm) from Melbourne. (If you are not the correct person
 could you do me a favour please and send it to the appropriate person
 and cc to me.)
 
  
 
 I am trying to load ubuntu on two different machines without success.
 
 Dealing with my 64 bit machine (xp 64 pro) I attempt o load via wubi
 or normal load and get to the point where I am asked if I wish to
 reboot now or later. When I do either reboot ubuntu does not appear as
 part of the load option during start-up. So I don't know what is
 happening there except that it may be a 64 bit quirk.
 
  
 
 The other machine I have tried to load to is a 32 bit machine running
 xp home edition - the load appear to be pretty close to completion
 before I get and cd/dvd error telling me that there is a problem with
 the disk. Who knows? It seems to be ok  when it was built via Nero.
 
  
 
 I guess my questions to you are:
 
  
 
 Do I have to partition drives?
 
 If I do can I use any drive or must it be the c drive? presents
 problems if this is the case as I have a ton of spare space another
 drives but not so much on my c drive.
 
 I have looked at the log of the load (wubi .log) and I see no errors
 on the 64 machine but I do so errors on the 32 bit machine.
 
  
 
 So to keep it simple can we just deal with the easiest one for now.
 
 Thanks in anticipation.
 
  
 
 Phil
 
 ps I tried start a login session via the ubuntu site but when I rec'd
 the email return post I was unable to login as my machine said that it
 was an invalid link.
 
 Doh! bit frustrating as I would like to get Linux on one of these
 boxes and preferably the 64 bit machine.
 
 pps I have attached the log in case it gives any insights
 
  
 
 Regards,
 
  
 
 Phil
 
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


I'm forwarding this message to the ubuntu-au mailing list as I have no
experience with using wubi.

Please note: Phil, to send to the mailing list you do need to subscribe
or your message will will be held for moderator intervention!

For details on the mailing list go to
https://lists.ubuntu.com/mailman/listinfo/ubuntu-au

-- 
Scott Evans sc...@vk7hse.hobby-site.org


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-au mailing list
ubuntu-au@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-au


Re: ubuntu load problems (forwarded to ubuntu-au)

2010-07-31 Thread Daniel Sobey
Hello phil,

I have not tried using wunbi on a windows xp 64 bit but it should not
make much of a difference.

You may have a bad cd or a bad cd drive, i have had some problems
loading some cd's with various drives so it may be best to not use one
at all, instead just download the files yourself.

go to http://wubi-installer.org/ and download wubi.exe
Go to your favorite mirror (such as your isp's mirror) and download
ubuntu-10.04-desktop-i386.iso or ubuntu-10.04-server-amd64.iso and place
this in the same directory as wubi.exe and it will use that for the
install.

wubi uses the normal windows boot loader to launch ubuntu, this is
configured by boot.ini, this file is hidden on windows, can you check
this file and see if it has a line something like:

C:\wubildr.mbr = Ubuntu


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


Skype audio crashes

2010-07-31 Thread Terry Talim
Skype audio crashes when teleconferencing, and even when using just audio,
and with it crashes skype seconds thereafter.

  I've had this problem ever since I installed skype back . I have looked
repeatedly for answers on forums but it seems like only a very few people
have it. So I fear this might be a hardware issue.

I have a Lenovo T61 laptop with an Intel soundcard running Ubuntu Studio. I
really hope it's more a settings/preferences issue. I have upgraded a month
ago to Lucid Lynx.

Please let me know what kind of information would help identify the problem
so I can post them. Any hints are welcome. I'm willing to try out anything
now that i'm on vacation. I'll keep trying to find out what's wrong and keep
you posted.

Regards, Terry

My jobs -
http://socialworkdegreesonline.net/mba-degrees-for-social-workers.html and
http://onlinenursinggraduate.com/neonatal-nurse/
-- 
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] Ubuntu que caiba em 2GB?

2010-07-31 Thread cesaraf
On Thu, 29 Jul 2010 00:38:19 -0300
Renato Alvim renato.al...@gmail.com wrote:

 Colegas, um favor a mais...
 Meu sobrinho está com um netbook com hd de apenas 2GB.
 Montei um Ubuntu no pendrive-não há leitor de CD.
 Mas ele exige 2.4GB. e não pôde ser instalado.
 O que me sugerem?
 Algum Ubuntu enxuto, minimal?
 Ou até - heresia-outra distro mínima?
 Ou outra solução, mas de preferência com o Ubuntu.
 Obrigado.
 
 
 -- 
 *Obs : É MUITO importante que, ao encaminhar este e-mail, apague meu
 endereço de e-mail do CORPO do mesmo, e os de TODOS os presentes no mesmo!
 Assim como, ao adicionar mais de um destinatário, use sempre o Cco, cópia
 oculta, ou Bcc, em inglês, jamais o Para ou Cc. Verifique se ainda assim há
  endereços expostos no corpo do mesmo, antes de repassá-lo, seja solidário e
 apague-os **! Evitam-se SPAM e uso criminoso da conta.*
 []´s
 -
 *Renato Alvim* - Rio de Janeiro - RJ - *OM8* 32.375
 *Sítio* : :www.renatoalvim.com
 *blog*:http://renatoalvim.blogs.sapo.pt
 *http*://musicapopular.ning.com -
 Budista - Nam-Myoho-Rengue-Kyo
 -
 -- 
 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

Procure por Lubuntu (Ubuntu com x lxde)...eu uso aki num pen de 8G...bem 
legal!!!

Abs,
-- 
César de A. Ferreira
2.6.32-24 generic i686 GNU/Linux
Linux User #355727
Ubuntu User #26536
Machine Register id 403079

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

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


[Ubuntu-BR] [off-topic] Squid Black List

2010-07-31 Thread Antonio Fabiano Hermida Filho
Bom dia, camaradas.

Alguém, por um acaso, tem alguma lista negra de squid que possa me
emprestar? Devolvo em bom estado, sou cuidadoso, ofereço garantias...
(Se ela bloquear o IMO.im, melhor ainda).
Eu estava usando uma lista de bloqueio do governo chinês e, nossa senhora,
pra carregar no squid a coisa levava tempo...


Obrigado desde já ;)
--
Antonio f. Hermida
cel  21 8119-5890
skype  afhermida

Somos todos cães de beira de estrada, pegos de surpresa, sem entender que é
sempre o momento errado de atravessar.
-Bernardo de Carvalho
-- 
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] [Suporte] Consultoria Mikrotik/pfSense/Linux a partir de R$ 35, 00

2010-07-31 Thread Luiz Gustavo S. Costa
A mundounix oferece a você uma oportunidade de consultoria na sua rede
através do produto de suporte remoto.

Suporte a produtos de rede como:

       Mikrotik
       pfSense
       Linux
       FreeBSD
       OpenBSD

Como funciona a consultoria remota ?

Através de ferramentas de compartilhamento de desktop (VNC), nós
oferecemos um produto que você possa acompanhar o trabalho que esta
sendo efetuado no seu ambiente além de ser gravado e enviado para o
cliente.

Os sistemas operacionais baseados no Unix oferecem ferramentas de
acesso seguro como SSH (pfsense também oferece a opção de acesso via
web) de forma que todos os esforços de implementação de suporte e
consultoria possam ser realizados de forma remota.

Quanto custa ?

A consultoria remota tem valores a partir de R$ 35,00 por hora de
consultoria, é necessário porém efetuar um levantamento (a partir de
relato e/ou documentação fornecidos pelo cliente).

Como Pagar ?

A consultoria remota pode ser paga através de cartão de credito
utilizando o serviço Paypal (que aceita cartões de bandeira nacional,
visa, mastercard) ou através de transferência/deposito bancário.

Entre em contato através do MSN: cont...@mundounix.com.br

ou através do email: cont...@mundounix.com.br

Veja mais detalhes em: http://miud.in/8Jj


Muito obrigado.

--
Luiz Gustavo Costa (Powered by BSD)
*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
mundoUnix - Consultoria em Software Livre
http://www.mundounix.com.br
ICQ: 2890831 / MSN: cont...@mundounix.com.br
Tel: 55 (41) 9844-3701
Blog: http://www.luizgustavo.pro.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] [Suporte] Consultoria Mikrotik/pfSense/Linux a partir de R$ 35, 00

2010-07-31 Thread Iuri Diniz
é permitido propaganda?
[off topic]?

2010/7/31 Luiz Gustavo S. Costa luizgust...@luizgustavo.pro.br

 A mundounix oferece a você uma oportunidade de consultoria na sua rede
 através do produto de suporte remoto.

 Suporte a produtos de rede como:

Mikrotik
pfSense
Linux
FreeBSD
OpenBSD

 Como funciona a consultoria remota ?

 Através de ferramentas de compartilhamento de desktop (VNC), nós
 oferecemos um produto que você possa acompanhar o trabalho que esta
 sendo efetuado no seu ambiente além de ser gravado e enviado para o
 cliente.

 Os sistemas operacionais baseados no Unix oferecem ferramentas de
 acesso seguro como SSH (pfsense também oferece a opção de acesso via
 web) de forma que todos os esforços de implementação de suporte e
 consultoria possam ser realizados de forma remota.

 Quanto custa ?

 A consultoria remota tem valores a partir de R$ 35,00 por hora de
 consultoria, é necessário porém efetuar um levantamento (a partir de
 relato e/ou documentação fornecidos pelo cliente).

 Como Pagar ?

 A consultoria remota pode ser paga através de cartão de credito
 utilizando o serviço Paypal (que aceita cartões de bandeira nacional,
 visa, mastercard) ou através de transferência/deposito bancário.

 Entre em contato através do MSN: cont...@mundounix.com.br

 ou através do email: cont...@mundounix.com.br

 Veja mais detalhes em: http://miud.in/8Jj


 Muito obrigado.

 --
 Luiz Gustavo Costa (Powered by BSD)
 *+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+*+
 mundoUnix - Consultoria em Software Livre
 http://www.mundounix.com.br
 ICQ: 2890831 / MSN: cont...@mundounix.com.br
 Tel: 55 (41) 9844-3701
 Blog: http://www.luizgustavo.pro.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




-- 
Iuri Diniz
http://iuridiniz.com [Sou um agitador, não um advogado]
http://blog.igdium.com [Linux on Limbo]
-- 
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] [OFF-TOPIC] AMSN, pigdin, ebbu dy, empathy nenhum está conectando HOJE.

2010-07-31 Thread Sharkman BR

Depois desse problema c/ o MSN, já repararam a mensagem de erro q está dando ao 
configurar áudio/vídeo do amsn? 

Audio/Video call capabilities have been disabled in this version of a aMSN 
because Microsoft(TM) has changed their protocols again and disable access to 
their SIP servers, blocking aMSN from giving you access to this feature.

Desde ontem ñ consigo fazer chamadas c/ vídeo e/ou áudio usando o amsn nem pelo 
emesene, ambos nas últimas versões. Para conversa c/ texto está normal.
Alguém conseguiu fazer depois de ontem?

[ ]'s fraternos a tds!
Shark
  
-- 
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] Modem 3G da Claro

2010-07-31 Thread Fábio Lima
Também usei esse modem ZTE da Claro por pouco mais de 1 ano.
Na época do Ubuntu 9.04 era um pouco mais complicado configura-lo. O ubuntu
reconhecia e listava a Claro para aplicar as configurações automaticamente.
Mas estava tudo errado e eu tive que instalar o modem no janelas que eu
ainda mantinha em dual boot, copiar configurações de discage, usuario,
senha, APN, etc. Pra dar certo. Chatinho. Pesquisei o site do fabricanto do
modem (é uma empresa chinesa) e descobri que lá tinha pacotes .deb e .rpm
feitos sob medida para a Claro prontinhos pra baixar e instalar. Inclusive
ele instalava o discador personalizado da claro.
No ubuntu 9.10 percebi que ele reconhecia e instalava corretamente o modem,
dispensando qualquer ajuste adicional, o que fez que eu deixasse o discador
mala de lado.


Em 31 de julho de 2010 02:07, Rodrigo M. Palheta
rodrigo.palh...@gmail.comescreveu:

 Jose,


 Estou usando sem problema o modem ZTE com Claro via Live CD , so bastou
 Adicionar uma Conexao de Rede Banda Larga pelo Gerenciador de Redes do
 Ubuntu.

 Muito simples!

 Em 30 de julho de 2010 11:09, mario mariano mariobiol...@gmail.com
 escreveu:

  Uso um ZTE que comprei desbloqueado da OI  e agora está com chip Claro e
  não
  tive dificuldades no UBUNTU 10.04.
 
  E olha que foi a primeira vez que fiz isso, sou total iniciante!
 
  Em 29 de julho de 2010 08:39, Paulo de Souza Lima
  paulo.s.l...@gmail.comescreveu:
 
   Em 29 de julho de 2010 00:07, Jose A. Pinheiro javae...@gmail.com
   escreveu:
Gente, chega a ser impressionante a dificuldade que se encontra no
  Ubuntu
para se instalar um simples modem 3G em um pc.
Uma coisa tão corriqueira nos outros SOs no Ubuntu assume ares de
   pesadelo.
Para se ter uma ideia, estou ha varios dias tentando instalar o modem
  3G
E1553 da Huawei em um desktop e simplesmente não consigo.
so vejo uma solução: instalar o windows, porque so assim tenho
 certeza
   que
instalarei meu modem em no maximo 2 minutos.
é incrivel essa dificuldade!
   
--
Jose A Pinheiro
Ubuntu user
--
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
   
  
   Seria bom, *antes* de adquirir seu modem, fazer uma pequena pesquisa
   na internet para saber quais modems comprovadamente funcionam para, só
   então, escolher a marca e o modelo na loja, ao invés de se deixar
   levar pela lábia do atendente e aceitar o que te empurram.
  
   Pela minha experiência, os modems da Huawei se comportam mais
   amigavelmente no Linux do que os da ZTE, por exemplo. Os modems Huawei
   que tenho e funcionam perfeitamente são E156 e E1756. O E156 é
   instalado em cerca de trinta segundos, incluindo os cinco cliques
   necessários para configurar a conta no Network Manager. O E1756 pode
   ser instalado pelo NM (utilizando o usb-modeswitch para mudar o modem
   do modo pendrive para o modo modem) ou, no caso da Vivo (que é o meu),
   por um programa discador, específico para Linux, que vem na sua
   memória interna. O discador é idêntico ao utilizado no Windows.
   Imagino que seu modelo deva vir com um programa semelhante. Após
   instalado, ele consegue fazer os meus dois modelos funcionar, sem
   configurações adicionais. A vantagem é o contador de tráfego e a
   desvantagem é a demora em inicializar a conexão. Pessoalmente, prefiro
   o NM para gerenciar as conexões.
  
   Outra opção é solicitar para alguém um pouco mais experiente que
   instale o modem para você, pagando ou não pelo serviço, já que,
   aparentemente, você não tem tempo nem paciência para procurar as
   informações necessárias na Internet.
  
   Abraço.
  
   --
   Paulo de Souza Lima
   Técnico em Eletrônica e Administrador
   Curitiba - PR
   Linux User #432358
   Ubuntu User #28729
  
   --
   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
  
 
 
 
  --
  MARIO MARIANO RUIZ CARDOSO
  Educador
  Biologo
  --
  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
 



 --
 Rodrigo M. Palheta


 Bacharel em Ciência da Computação
 Universidade Estadual do Piauí - UESPI

 Mestrando em Informática Aplicada
 Universidade de Fortaleza - UNIFOR

 http://www.worldcommunitygrid.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




-- 
Fábio Lima
São Luis - MA
Seu computador pode ficar melhor. Pode ser rápido, imune a vírus, seguro e
fácil de usar. Instale o Ubuntu Linux! É grátis! É livre!

Re: [Ubuntu-BR] [OFF-TOPIC] AMSN, pigdin, ebbu dy, empathy nenhum está conectando HOJE.

2010-07-31 Thread Antonio Fabiano Hermida Filho
O vídeo no emesene tá funcionando bem ;)
--
Antonio f. Hermida
cel  21 8119-5890
skype  afhermida
(@antonio_hermida)

Somos todos cães de beira de estrada, pegos de surpresa, sem entender que é
sempre o momento errado de atravessar.
-Bernardo de Carvalho



Em 31 de julho de 2010 13:23, Sharkman BR sharkman...@hotmail.comescreveu:


 Depois desse problema c/ o MSN, já repararam a mensagem de erro q está
 dando ao configurar áudio/vídeo do amsn?

 Audio/Video call capabilities have been disabled in this version of a aMSN
 because Microsoft(TM) has changed their protocols again and disable access
 to their SIP servers, blocking aMSN from giving you access to this feature.

 Desde ontem ñ consigo fazer chamadas c/ vídeo e/ou áudio usando o amsn nem
 pelo emesene, ambos nas últimas versões. Para conversa c/ texto está normal.
 Alguém conseguiu fazer depois de ontem?

 [ ]'s fraternos a tds!
 Shark

 --
 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] [OFF-TOPIC] AMSN, pigdin, ebbu dy, empathy nenhum está conectando HOJE.

2010-07-31 Thread Marcelo Silva
Em sáb 31 jul 2010, às 13:23:02, Sharkman BR escreveu:
 Depois desse problema c/ o MSN, já repararam a mensagem de erro q 
está
 dando ao configurar áudio/vídeo do amsn?
 
 Audio/Video call capabilities have been disabled in this version of a 
aMSN
 because Microsoft(TM) has changed their protocols again and disable 
access
 to their SIP servers, blocking aMSN from giving you access to this
 feature.
 
 Desde ontem ñ consigo fazer chamadas c/ vídeo e/ou áudio usando o 
amsn nem
 pelo emesene, ambos nas últimas versões. Para conversa c/ texto está
 normal. Alguém conseguiu fazer depois de ontem?
 
 [ ]'s fraternos a tds!
 Shark

Eu nao consigo conectar o Kopete, alguem esta conseguindo?


-- 
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] [off-topic] Squid Black List

2010-07-31 Thread Márcio H . Parreiras
Olá,


http://www.shallalist.de/Downloads/shallalist.tar.gz

Use com squidguard ou dansguardian (prefiro o último).


Abraços,

-- 
    Márcio H. Parreiras

    GNU/Linux Professional

    +55(31)9632-0320

    Pedro Leopoldo - MG - Brazil

    Codificação/Encoding: UTF-8


    A caixa dizia: 'Requer MS Windows ou superior',
     então eu instalei Debian/GNU Linux
     http://www.debian.org/index.pt.html

    The box said: 'Requires MS Windows or better',
      then I installed Debian/GNU Linux!
      http://www.debian.org/index.en.html

    Proteja-se das ameaças digitais:
     use http://www.ubuntu-br.org/;

    Protect yourself from digital threats:
     use http://www.ubuntu.com/;
.

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

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


Re: [Ubuntu-BR] [off-topic] Squid Black List

2010-07-31 Thread Antonio Fabiano Hermida Filho
Muito grato!
--
Antonio f. Hermida
cel  21 8119-5890
skype  afhermida
(@antonio_hermida)

Somos todos cães de beira de estrada, pegos de surpresa, sem entender que é
sempre o momento errado de atravessar.
-Bernardo de Carvalho



Em 31 de julho de 2010 16:37, Márcio H. Parreiras m...@mhp.eti.br escreveu:

 Olá,


 http://www.shallalist.de/Downloads/shallalist.tar.gz

 Use com squidguard ou dansguardian (prefiro o último).


 Abraços,

 --
 Márcio H. Parreiras

 GNU/Linux Professional

 +55(31)9632-0320

 Pedro Leopoldo - MG - Brazil

 Codificação/Encoding: UTF-8


 A caixa dizia: 'Requer MS Windows ou superior',
  então eu instalei Debian/GNU Linux
  http://www.debian.org/index.pt.html

 The box said: 'Requires MS Windows or better',
   then I installed Debian/GNU Linux!
   http://www.debian.org/index.en.html

 Proteja-se das ameaças digitais:
  use http://www.ubuntu-br.org/;

 Protect yourself from digital threats:
  use http://www.ubuntu.com/;
 .

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

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

-- 
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] Modem 3G da Claro

2010-07-31 Thread Welington R. Braga
Zé,

Se há alguma dificuldade na instalação do dispositivo X, Y ou Z a
culpa não é do linux e sim dos fabricantes que só fornecem suporte ao
Windows, as vezes nem mesmo para o todo poderoso Mac há suporte.

Mas não estou aqui para criticar a sua frustração e nem para tornar
essa sua dúvida um offtopic maior do que já tem sido feito por alguns
colegas. Eu tenho um Huawei E226 e que funciona muito bem desde que o
adquiri em 2007, embora nesta última versão do Ubuntu e em algumas
outras eu tive que intervir manualmente para que ele funcionasse.

Para não ter que reescrever trezentas vezes a mesma coisa sugiro dar
uma olhada nestes dois links que talvez possam te ajudar [1] e [2]

[1] Ativando modem 3G no Ubuntu. http://blog.welrbraga.eti.br/?p=948
[2] Vários texto sobre 3G no Linux. http://blog.welrbraga.eti.br/?tag=3g

Fica uma dica para reduzir a sua agonia: Antes de comprar qualquer
acessório para o seu computador, faça o mesmo que se faz antes de
comprar um acessório para o seu carro (se informe sobre ele). Afinal
de contas duvido que você já tenha comprado pneu de trator para o seu
automóvel, só porque é mais resistente que os originais.


Abç.

Em 29 de julho de 2010 00:07, Jose A. Pinheiro javae...@gmail.com escreveu:
 Gente, chega a ser impressionante a dificuldade que se encontra no Ubuntu
 para se instalar um simples modem 3G em um pc.
 Uma coisa tão corriqueira nos outros SOs no Ubuntu assume ares de pesadelo.
 Para se ter uma ideia, estou ha varios dias tentando instalar o modem 3G
 E1553 da Huawei em um desktop e simplesmente não consigo.
 so vejo uma solução: instalar o windows, porque so assim tenho certeza que
 instalarei meu modem em no maximo 2 minutos.
 é incrivel essa dificuldade!

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

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




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

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

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

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


Re: [Ubuntu-BR] Dúvida sobre uso do modprobe (e com a placa RTL8187SE)

2010-07-31 Thread Zandre Bran
2010/7/30 Leonardo Bernardes inmo...@gmail.com:
 Amigos,

Ôlas Bernardes.

[...] Se eu digito:
 # modprobe rtl8187se
 Ele carrega o módulo normalmente, mas assim que o sistema é lançado, eu
 digito:
 # lsmod |grep rtl
 E o módulo não está mais carregado.

 Como eu faço para o sistema carregar esse módulo na inicialização?

   Altera o arquivo /etc/rc.local e coloca antes do exit 0:

modprobe rtl8187se

 E a propósito, se alguém tiver uma dica de como contornar o problema com
 essa placa, eu também aceito. Vai ser uma merda ter que instalar o Windows
 no micro dela, só por causa disso.

Terrorismo não. Tipo se não fizer eu vou morrer :)

 Abraços,
 Leonardo Bernardes

-- []s
-- Zandre.

:: https://launchpad.net/~zandrebran

-- 
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] Convite para se conectar no LinkedIn

2010-07-31 Thread Welington Braga
LinkedIn
Welington Braga solicitou sua adição como uma conexão no LinkedIn:
--

Rogerio,

Eu gostaria de adicioná-lo à minha rede profissional no LinkedIn.
-Welington

Aceitar convite de Welington Braga
http://www.linkedin.com/e/-wh6dqb-gcazml4w-a/yS5iHKnIGR89gF6qSY79z6hqVxsbgq6I37O_76zn/blk/I782874986_3/pmpxnSRJrSdvj4R5fnhv9ClRsDgZp6lQs6lzoQ5AomZIpn8_cRYSe3AQdPwOe3t9bR5KhzgVgRxRbPkUc3cQe3wNdj4LrCBxbOYWrSlI/EML_comm_afe/

Visualizar convite de Welington Braga
http://www.linkedin.com/e/-wh6dqb-gcazml4w-a/yS5iHKnIGR89gF6qSY79z6hqVxsbgq6I37O_76zn/blk/I782874986_3/0PnPoUejgTe38UdQALqnpPbOYWrSlI/svi/
--

Você sabia que pode ser o primeiro a saber quando um usuário confiável da sua 
rede mudar de emprego? Com as Atualizações de rede na sua página inicial do 
LinkedIn, você será notificado quando os usuários da sua rede mudarem de cargo. 
Seja o primeiro a saber e a entrar em contato!
http://www.linkedin.com/

 
--
(c) 2010, LinkedIn Corporation
-- 
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] [Suporte] Consultoria Mikrotik/pfSense/Linux a partir de R$ 35, 00

2010-07-31 Thread Zandre Bran
Ôlas Costa. Conteúdo comercial não são permitidos aqui sobre
qualquer hipótese. Ao enviar isto você está fazendo uma propaganda
negativa de teu produto/serviço. Visto que, se, *não*respeita* o
contrato da lista, porque respeitará outro contrato? Se não respeita
meu espaço violando regras de um lugar comum que participo, porque me
respeitará ao contratar teu serviço?

Ahhh e por favor, não me venha com está de que: ops, eu não sabia.

-- Zandre.

-- 
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] [Suporte] Consultoria Mikrotik/pfSense/Linux a partir de R$ 35, 00

2010-07-31 Thread Zandre Bran
2010/7/31 Iuri Diniz iuridi...@gmail.com:
 é permitido propaganda?

Não Iuri e por isto deve sentir o mesmo como se alguém acendesse
um cigarro no restaurante ao lado da tua mesa durante tua refeição. Ou
como outro que joga o lixo no chão, tendo uma lixeira a 1 metro.

Quero somente deixar claro que se a pessoa não respeita as regras
daqui, o que me faz pensar que respeitará outras regras? Conveniência?
Se não me respeita na utilização de um espaço comum, porque me
respeitará em outro local? Interesse? Oportunismo?

-- []s
-- Zandre.

:: https://launchpad.net/~zandrebran

-- 
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] [Suporte] Consultoria Mikrotik/pfSense/Linux a partir de R$ 35, 00

2010-07-31 Thread Antonio Fabiano Hermida Filho
Spam desnecessário ...
--
Antonio f. Hermida
cel  21 8119-5890
skype  afhermida
(@antonio_hermida)

Somos todos cães de beira de estrada, pegos de surpresa, sem entender que é
sempre o momento errado de atravessar.
-Bernardo de Carvalho



Em 31 de julho de 2010 19:15, Zandre Bran zandreb...@ubuntu.com escreveu:

 2010/7/31 Iuri Diniz iuridi...@gmail.com:
  é permitido propaganda?

Não Iuri e por isto deve sentir o mesmo como se alguém acendesse
 um cigarro no restaurante ao lado da tua mesa durante tua refeição. Ou
 como outro que joga o lixo no chão, tendo uma lixeira a 1 metro.

Quero somente deixar claro que se a pessoa não respeita as regras
 daqui, o que me faz pensar que respeitará outras regras? Conveniência?
 Se não me respeita na utilização de um espaço comum, porque me
 respeitará em outro local? Interesse? Oportunismo?

 -- []s
 -- Zandre.

 :: https://launchpad.net/~zandrebran https://launchpad.net/%7Ezandrebran

 --
 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] [Suporte] Consultoria Mikrotik/pfSense/Linux a partir de R$ 35, 00

2010-07-31 Thread Márcio H . Parreiras
R$ 35,00 por hora?

Isto é preço de moleque que só sabe (mal, mal) mexer com Ruindows :-)
Para lidar com segurança de rede, sei não...

Regards,

-- 
    Márcio H. Parreiras

    GNU/Linux Professional

    +55(31)9632-0320

    Pedro Leopoldo - MG - Brazil

    Codificação/Encoding: UTF-8


    A caixa dizia: 'Requer MS Windows ou superior',
     então eu instalei Debian/GNU Linux
     http://www.debian.org/index.pt.html

    The box said: 'Requires MS Windows or better',
      then I installed Debian/GNU Linux!
      http://www.debian.org/index.en.html

    Proteja-se das ameaças digitais:
     use http://www.ubuntu-br.org/;

    Protect yourself from digital threats:
     use http://www.ubuntu.com/;
.

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

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


[Ubuntu-BR] Amarok não toca MP3

2010-07-31 Thread Daut Lopes Junior
Prezados,

Estou reiniciando no mundo Linux (era usuário de outras versões no 
passado), e agora estou começando a usar o Ubuntu 10.04.

Estou tendo um problema com o Amarok que não toca nada. Ele simplesmente 
abre, demonstra iniciar a música, mas não toca.

Procurei no google e encontrei, basicamente, a dica de instalação do 
codec *libxine1-ffmpeg*, mas mesmo após da instalação, o comportamento 
do Amarok não mudou.

Alguém teria alguma outra dica que poderia resolver esse problema?

No aguardo, agradeço antecipadamente a atenção.

Obrigado.
Daut
-- 
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] Amarok não toca MP3

2010-07-31 Thread Jôjô Maravilha
Eu tenho a solução para você. Recentemente fiz um Wiki cujo assunto
principal e detalhado é o Amarok, se depois de tudo ainda precisar de ajuda
só solicitar a galera da lista.
http://wiki.ubuntu-br.org/Amarok

Em 31 de julho de 2010 21:11, Daut Lopes Junior daut.lis...@gmail.comescreveu:

 Prezados,

 Estou reiniciando no mundo Linux (era usuário de outras versões no
 passado), e agora estou começando a usar o Ubuntu 10.04.

 Estou tendo um problema com o Amarok que não toca nada. Ele simplesmente
 abre, demonstra iniciar a música, mas não toca.

 Procurei no google e encontrei, basicamente, a dica de instalação do
 codec *libxine1-ffmpeg*, mas mesmo após da instalação, o comportamento
 do Amarok não mudou.

 Alguém teria alguma outra dica que poderia resolver esse problema?

 No aguardo, agradeço antecipadamente a atenção.

 Obrigado.
 Daut
 --
 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




-- 
_
Locutor e Pedagogo
Jôjô Maravilha/ Jorge Graciano
http://twitter.com/jojomaravilha
https://edge.launchpad.net/~jorgegraciano
Wiki: http://wiki.ubuntu-br.org/jojomaravilha
 Linux user number 507138
 Ubuntu User number Linux is # 30637

“Não há teoria da educação sem teoria da finalidade da educação.”
-- 
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] Amarok não toca MP3

2010-07-31 Thread Anderson Queiroz
Daut, instalastes os codecs para rodar mp3??

caso não um pacote que contém paricamente todos os codecs que poderás
precisar é o ubuntu-restricted-extras
basta abrir um teminal e colar isto, sem as aspas:

sudo apt-get install unbuntu-restricted-estras

se usas o kubuntu:

sudo apt-get install kunbuntu-restricted-estras

ou podes procurar pelo pacote ubuntu-restricted-extras no synapitc

Anderson de França Queiroz


Em 31 de julho de 2010 21:41, Jôjô Maravilha jojomaravi...@gmail.comescreveu:

 Eu tenho a solução para você. Recentemente fiz um Wiki cujo assunto
 principal e detalhado é o Amarok, se depois de tudo ainda precisar de ajuda
 só solicitar a galera da lista.
 http://wiki.ubuntu-br.org/Amarok

 Em 31 de julho de 2010 21:11, Daut Lopes Junior daut.lis...@gmail.com
 escreveu:

  Prezados,
 
  Estou reiniciando no mundo Linux (era usuário de outras versões no
  passado), e agora estou começando a usar o Ubuntu 10.04.
 
  Estou tendo um problema com o Amarok que não toca nada. Ele simplesmente
  abre, demonstra iniciar a música, mas não toca.
 
  Procurei no google e encontrei, basicamente, a dica de instalação do
  codec *libxine1-ffmpeg*, mas mesmo após da instalação, o comportamento
  do Amarok não mudou.
 
  Alguém teria alguma outra dica que poderia resolver esse problema?
 
  No aguardo, agradeço antecipadamente a atenção.
 
  Obrigado.
  Daut
  --
  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
 



 --
 _
 Locutor e Pedagogo
 Jôjô Maravilha/ Jorge Graciano
 http://twitter.com/jojomaravilha
 https://edge.launchpad.net/~jorgegracianohttps://edge.launchpad.net/%7Ejorgegraciano
 Wiki: http://wiki.ubuntu-br.org/jojomaravilha
 Linux user number 507138
 Ubuntu User number Linux is # 30637

 “Não há teoria da educação sem teoria da finalidade da educação.”
 --
 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] Amarok não toca MP3

2010-07-31 Thread Daut Lopes Junior
Boa noite Anderson,

Instalei o pacote que indicou e aparentemente agora o Amarok está 
funcionando.

Vou fazer mais alguns testes, mas acredito que o problema foi resolvido.

Agradeço muito sua atenção!

Att,
Daut

On 31-07-2010 22:06, Anderson Queiroz wrote:
 Daut, instalastes os codecs para rodar mp3??

 caso não um pacote que contém paricamente todos os codecs que poderás
 precisar é o ubuntu-restricted-extras
 basta abrir um teminal e colar isto, sem as aspas:

 sudo apt-get install unbuntu-restricted-estras

 se usas o kubuntu:

 sudo apt-get install kunbuntu-restricted-estras

 ou podes procurar pelo pacote ubuntu-restricted-extras no synapitc

 Anderson de França Queiroz


 Em 31 de julho de 2010 21:41, Jôjô Maravilhajojomaravi...@gmail.comescreveu:


 Eu tenho a solução para você. Recentemente fiz um Wiki cujo assunto
 principal e detalhado é o Amarok, se depois de tudo ainda precisar de ajuda
 só solicitar a galera da lista.
 http://wiki.ubuntu-br.org/Amarok

 Em 31 de julho de 2010 21:11, Daut Lopes Juniordaut.lis...@gmail.com
  
 escreveu:

  
 Prezados,

 Estou reiniciando no mundo Linux (era usuário de outras versões no
 passado), e agora estou começando a usar o Ubuntu 10.04.

 Estou tendo um problema com o Amarok que não toca nada. Ele simplesmente
 abre, demonstra iniciar a música, mas não toca.

 Procurei no google e encontrei, basicamente, a dica de instalação do
 codec *libxine1-ffmpeg*, mas mesmo após da instalação, o comportamento
 do Amarok não mudou.

 Alguém teria alguma outra dica que poderia resolver esse problema?

 No aguardo, agradeço antecipadamente a atenção.

 Obrigado.
 Daut
 --
 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




 --
 _
 Locutor e Pedagogo
 Jôjô Maravilha/ Jorge Graciano
 http://twitter.com/jojomaravilha
 https://edge.launchpad.net/~jorgegracianohttps://edge.launchpad.net/%7Ejorgegraciano
 Wiki: http://wiki.ubuntu-br.org/jojomaravilha
  Linux user number 507138
  Ubuntu User number Linux is # 30637

 “Não há teoria da educação sem teoria da finalidade da educação.”
 --
 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] Amarok não toca MP3

2010-07-31 Thread Anderson Queiroz
Bom saber que minha dica ajudou xD

Sempre que instla um ubuntu a 1° coisa que faço é instalar o
ubuntu-restricted-extras assim não tenho problema com codecs =D

Anderson de França Queiroz


Em 31 de julho de 2010 22:39, Daut Lopes Junior daut.lis...@gmail.comescreveu:

 Boa noite Anderson,

 Instalei o pacote que indicou e aparentemente agora o Amarok está
 funcionando.

 Vou fazer mais alguns testes, mas acredito que o problema foi resolvido.

 Agradeço muito sua atenção!

 Att,
 Daut

 On 31-07-2010 22:06, Anderson Queiroz wrote:
  Daut, instalastes os codecs para rodar mp3??
 
  caso não um pacote que contém paricamente todos os codecs que poderás
  precisar é o ubuntu-restricted-extras
  basta abrir um teminal e colar isto, sem as aspas:
 
  sudo apt-get install unbuntu-restricted-estras
 
  se usas o kubuntu:
 
  sudo apt-get install kunbuntu-restricted-estras
 
  ou podes procurar pelo pacote ubuntu-restricted-extras no synapitc
 
  Anderson de França Queiroz
 
 
  Em 31 de julho de 2010 21:41, Jôjô Maravilhajojomaravi...@gmail.com
 escreveu:
 
 
  Eu tenho a solução para você. Recentemente fiz um Wiki cujo assunto
  principal e detalhado é o Amarok, se depois de tudo ainda precisar de
 ajuda
  só solicitar a galera da lista.
  http://wiki.ubuntu-br.org/Amarok
 
  Em 31 de julho de 2010 21:11, Daut Lopes Juniordaut.lis...@gmail.com
 
  escreveu:
 
 
  Prezados,
 
  Estou reiniciando no mundo Linux (era usuário de outras versões no
  passado), e agora estou começando a usar o Ubuntu 10.04.
 
  Estou tendo um problema com o Amarok que não toca nada. Ele
 simplesmente
  abre, demonstra iniciar a música, mas não toca.
 
  Procurei no google e encontrei, basicamente, a dica de instalação do
  codec *libxine1-ffmpeg*, mas mesmo após da instalação, o comportamento
  do Amarok não mudou.
 
  Alguém teria alguma outra dica que poderia resolver esse problema?
 
  No aguardo, agradeço antecipadamente a atenção.
 
  Obrigado.
  Daut
  --
  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
 
 
 
 
  --
  _
  Locutor e Pedagogo
  Jôjô Maravilha/ Jorge Graciano
  http://twitter.com/jojomaravilha
  https://edge.launchpad.net/~jorgegracianohttps://edge.launchpad.net/%7Ejorgegraciano
 https://edge.launchpad.net/%7Ejorgegraciano
  Wiki: http://wiki.ubuntu-br.org/jojomaravilha
   Linux user number 507138
   Ubuntu User number Linux is # 30637
 
  “Não há teoria da educação sem teoria da finalidade da educação.”
  --
  Mais sobre o Ubuntu em português: http://www.ubuntu-br.org/comece
 
  Lista de discussão Ubuntu Brasil
  Histórico, descadastramento e outras opções:
  https://lists.ubuntu.com/mailman/listinfo/ubuntu-br
 
 


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

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

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

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


[Ubuntu-BR] djbdns

2010-07-31 Thread Anderson Alves de Albuquerque
 Eu configurei o djbdns em um ambiente de teste. Apenas os processos abaixo
apareciam e a porta 53 não estava escutando.
 2306 ?Ss 0:00 /bin/sh /usr/bin/svscanboot
 2319 ?S  0:00 svscan /etc/service


 Após o boot os processos abaixo estavam presente e a porta 53 escutando.

 2306 ?Ss 0:00 /bin/sh /usr/bin/svscanboot
 2319 ?S  0:00 svscan /etc/service
 2322 ?S  0:00 supervise tinydns
 2323 ?S  0:00 supervise log
 2324 ?S  0:00 supervise dnscache
 2325 ?S  0:00 supervise log
 2329 ?S  0:00 multilog t ./main
 2330 ?S  0:00 /usr/bin/dnscache
 2331 ?S  0:00 multilog t ./main
 2332 ?S  0:00 /usr/bin/tinydns


 A minha pergunta é como iniciar os processos do djbdns sem reboot. EU terei
que colocar o djbdns em  server que não pode ser reiniciado.


-- 
[], Anderson Alves de Albuquerque.
---
E-mails: andersonalvesdealbuquerque#hotmail.com (replace # by @)
andersonaa#gmail.com (replace # by @)
ICQ: 73222660
---
-- 
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


Как настроить tc

2010-07-31 Thread Дмитрий Суслов
Всем привет!

*Условия:* Ubuntu Server 10.04 amd64 в локальной сети, выполняет роль шлюза
в интернет. В интернет смотрит ADSL-модем, PPP-клиент настроен на сервере
(модем в режиме bridge). Настроен iptables (маскарадинг). На этом же шлюзе
есть 2Tb HDD для файловой помойки и торрентов. В локальной сети виндовые и
линуксовые машины: пользуются интернетом и файловой помойкой.
*Задача:* обеспечить справедливое деление интернет-канала для пользователей
локалки. Торрент-клиент (что на шлюзе) должен пользоваться неиспользованными
остатками ширины интернет-канала.
*Вопрос:* Погуглив, я нашел несколько примеров для решения подобной задачи,
но там рассматривается деление именно всего трафика, выходящего через
интерфейс в локалку. Мне же надо делить транзитный трафик, проходящий через
маскарадинг, а трафик непосредственно с сервера никакими фильтрациями
трогаться не должен.
В статьях что-то было про метки, которые можно ставить определенным цепочкам
в iptables, и затем по этим меткам привязывать правила tc. Но ничего
конкретного не сказано.
Кто-нибудь решал подобные задачи?

-- 
С уважением,
   Дмитрий Суслов.
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Разговоры об IDE (разработка)

2010-07-31 Thread Владимир Бажанов
Давно пользуюсь Geany. Советую поставить её и немного настроить, так,
как вам будет удобно. Программа лёгка, не как остальные монструозные
нетбинсы и аптаны, напсана на GTK, всё что надо разработчику есть. Нет
только ненужных заморочек, которыми славятся всякие VS и им подобные
среды. Да и не нужно это в линухе, правда же, не нужно...
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Разговоры об IDE (разработк а)

2010-07-31 Thread Jill Smitt
On Sat, 2010-07-31 at 15:55 +0300, Владимир Бажанов wrote:
 Давно пользуюсь Geany. Советую поставить её и немного настроить, так,
 как вам будет удобно. Программа лёгка, не как остальные монструозные
 нетбинсы и аптаны, напсана на GTK, всё что надо разработчику есть. Нет
 только ненужных заморочек, которыми славятся всякие VS и им подобные
 среды. Да и не нужно это в линухе, правда же, не нужно...

Инсталирую, сейчас посмотрим


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


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

2010-07-31 Thread Vladimir Smagin
shorewall

On Сбт, 2010-07-31 at 16:30 +0400, Дмитрий Суслов wrote:
 Всем привет!
 
 
 Условия: Ubuntu Server 10.04 amd64 в локальной сети, выполняет роль
 шлюза в интернет. В интернет смотрит ADSL-модем, PPP-клиент настроен
 на сервере (модем в режиме bridge). Настроен iptables (маскарадинг).
 На этом же шлюзе есть 2Tb HDD для файловой помойки и торрентов. В
 локальной сети виндовые и линуксовые машины: пользуются интернетом и
 файловой помойкой.
 Задача: обеспечить справедливое деление интернет-канала для
 пользователей локалки. Торрент-клиент (что на шлюзе) должен
 пользоваться неиспользованными остатками ширины интернет-канала.
 Вопрос: Погуглив, я нашел несколько примеров для решения подобной
 задачи, но там рассматривается деление именно всего трафика,
 выходящего через интерфейс в локалку. Мне же надо делить транзитный
 трафик, проходящий через маскарадинг, а трафик непосредственно с
 сервера никакими фильтрациями трогаться не должен.
 В статьях что-то было про метки, которые можно ставить определенным
 цепочкам в iptables, и затем по этим меткам привязывать правила tc. Но
 ничего конкретного не сказано.
 Кто-нибудь решал подобные задачи?
 
 -- 
 С уважением,
Дмитрий Суслов.
 

-- 

Vladimir Smagin
http://blindage.org
PGP\GPG key http://pgp.mit.edu:11371/pks/lookup?search=vladimir
+smaginop=index


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: Разговоры об IDE (разработк а)

2010-07-31 Thread Jill Smitt
On Sat, 2010-07-31 at 15:55 +0300, Владимир Бажанов wrote:
 Давно пользуюсь Geany. Советую поставить её и немного настроить, так,
 как вам будет удобно. Программа лёгка, не как остальные монструозные
 нетбинсы и аптаны, напсана на GTK, всё что надо разработчику есть. Нет
 только ненужных заморочек, которыми славятся всякие VS и им подобные
 среды. Да и не нужно это в линухе, правда же, не нужно...

Где настраиваются цветовые схемы для Geany? Независимо от темы
оформления, главный редактор с белым фоном.


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


Re: Разговоры об IDE (разработка)

2010-07-31 Thread Владимир Бажанов
Нигде. Но вы можете сделать чёрный.
Правка - Настройки - Редактор - Отображение - Обратить цвета подсветки
синтаксиса.


В Суб, 31/07/2010 в 21:22 +0600, Jill Smitt пишет:
 Где настраиваются цветовые схемы для Geany? Независимо от темы
 оформления, главный редактор с белым фоном.


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


Re: Разговоры об IDE (разработка)

2010-07-31 Thread vova
В Сбт, 31/07/2010 в 19:51 +0300, Владимир Бажанов пишет:
 Нигде.

Мягко говоря, это неправда. http://www.geany.org/Download/Extras#colors
Плюс фак и мануал.


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


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

2010-07-31 Thread Андрей Новосёлов
В Sat, 31 Jul 2010 20:52:53 +0700
Vladimir Smagin 2...@blindage.org пишет:

 shorewall
 
 On Сбт, 2010-07-31 at 16:30 +0400, Дмитрий Суслов wrote:
  Всем привет!
  
  
  Условия: Ubuntu Server 10.04 amd64 в локальной сети, выполняет роль
  шлюза в интернет. В интернет смотрит ADSL-модем, PPP-клиент настроен
  на сервере (модем в режиме bridge). Настроен iptables (маскарадинг).
  На этом же шлюзе есть 2Tb HDD для файловой помойки и торрентов. В
  локальной сети виндовые и линуксовые машины: пользуются интернетом и
  файловой помойкой.
  Задача: обеспечить справедливое деление интернет-канала для
  пользователей локалки. Торрент-клиент (что на шлюзе) должен
  пользоваться неиспользованными остатками ширины интернет-канала.
  Вопрос: Погуглив, я нашел несколько примеров для решения подобной
  задачи, но там рассматривается деление именно всего трафика,
  выходящего через интерфейс в локалку. Мне же надо делить транзитный
  трафик, проходящий через маскарадинг, а трафик непосредственно с
  сервера никакими фильтрациями трогаться не должен.
  В статьях что-то было про метки, которые можно ставить определенным
  цепочкам в iptables, и затем по этим меткам привязывать правила tc.
  Но ничего конкретного не сказано.
  Кто-нибудь решал подобные задачи?
  
  -- 
  С уважением,
 Дмитрий Суслов.
  
 

http://www.opennet.ru/docs/RUS/LARTC/
Вот с этим и тоннели рыл и другие фишки делал. Исключительно полезная
штука.

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


Re: Разговоры об IDE (разработка)

2010-07-31 Thread Владимир Бажанов
Ухты. Стыд мне, но я туда никогда не ходил :)))

Ruby on Rails extras for Geany там вкусный!

В Вск, 01/08/2010 в 00:13 +0700, vova пишет:
 Мягко говоря, это неправда. http://www.geany.org/Download/Extras#colors
 Плюс фак и мануал.

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


Re: Нет звука в 10, 04 с ASUS M4A88TD-V EVO/USB3 (Vasiliy Kulikov)

2010-07-31 Thread andrei
lspci -nn
00:00.0 Host bridge [0600]: Advanced Micro Devices [AMD] RS780 Host
Bridge Alternate [1022:9601]
00:01.0 PCI bridge [0604]: ASUSTeK Computer Inc. RS880 PCI to PCI bridge
(int gfx) [1043:9602]
00:09.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to PCI
bridge (PCIE port 4) [1022:9608]
00:0a.0 PCI bridge [0604]: Advanced Micro Devices [AMD] RS780 PCI to PCI
bridge (PCIE port 5) [1022:9609]
00:11.0 SATA controller [0106]: ATI Technologies Inc SB700/SB800 SATA
Controller [IDE mode] [1002:4390] (rev 40)
00:12.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB
OHCI0 Controller [1002:4397]
00:12.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI
Controller [1002:4396]
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB
OHCI0 Controller [1002:4397]
00:13.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI
Controller [1002:4396]
00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller
[1002:4385] (rev 41)
00:14.1 IDE interface [0101]: ATI Technologies Inc SB700/SB800 IDE
Controller [1002:439c] (rev 40)
00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel
HDA) [1002:4383] (rev 40)
00:14.3 ISA bridge [0601]: ATI Technologies Inc SB700/SB800 LPC host
controller [1002:439d] (rev 40)
00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge
[1002:4384] (rev 40)
00:14.5 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB
OHCI2 Controller [1002:4399]
00:15.0 PCI bridge [0604]: ATI Technologies Inc Device [1002:43a0]
00:15.1 PCI bridge [0604]: ATI Technologies Inc Device [1002:43a1]
00:16.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB
OHCI0 Controller [1002:4397]
00:16.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI
Controller [1002:4396]
00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] K10 [Opteron,
Athlon64, Sempron] HyperTransport Configuration [1022:1200]
00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] K10 [Opteron,
Athlon64, Sempron] Address Map [1022:1201]
00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] K10 [Opteron,
Athlon64, Sempron] DRAM Controller [1022:1202]
00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] K10 [Opteron,
Athlon64, Sempron] Miscellaneous Control [1022:1203]
00:18.4 Host bridge [0600]: Advanced Micro Devices [AMD] K10 [Opteron,
Athlon64, Sempron] Link Control [1022:1204]
01:05.0 VGA compatible controller [0300]: ATI Technologies Inc Device
[1002:9715]
01:05.1 Audio device [0403]: ATI Technologies Inc RS880 Audio Device
[Radeon HD 4200] [1002:970f]
02:00.0 FireWire (IEEE 1394) [0c00]: VIA Technologies, Inc. Device
[1106:3403]
02:00.1 IDE interface [0101]: VIA Technologies, Inc. PATA IDE Host
Controller [1106:0415] (rev a0)
03:00.0 USB Controller [0c03]: NEC Corporation Device [1033:0194] (rev
03)
06:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd.
RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev
06)

Проблемы со звуком бывают припадками. До этого оно само собой
включилось, а вот теперь опять нет.
Конечно, вполне возможно, что это потому что нет секъюрите апдейтов. Их
у меня не было в срезе репов. Но может проблема в другом? Таки не
хочется идти в магазин менять, не будучи уверенным.
Хотя с другой стороны, пока что в семёрке всё вроде нормально.
-- 
andrei and...@student.su


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


багрепорты?

2010-07-31 Thread Vasiliy Kulikov
День добрый.

Нашёл в некотором софте из стандартного репозитория уязвимости и
зарепортил, как private, чтобы разрабы сами пофиксили. Вот уже больше
недели по каждой программе нет _никакой_ реакции, т.е. статус репорта new.

Понимаю, что т.к. софт из universe, никто из canonical ничего не обязан
поддерживать. Тем не менее, дырка на лицо.

Какая след. инстанция? Если с личным временем у разрабов софта всё так
тяжко, могу послать свои патчи, проблема в том - кому мне их посылать,
чтобы они достигли офф репозитория? Вряд ли обновления безопасности для
юниверса принципиально не выпускаются...

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


Re: Разговоры об IDE (разработк а)

2010-07-31 Thread Jill Smitt
On Sat, 2010-07-31 at 19:51 +0300, Владимир Бажанов wrote:
 Нигде. Но вы можете сделать чёрный.
 Правка - Настройки - Редактор - Отображение - Обратить цвета подсветки
 синтаксиса.
 
 
 В Суб, 31/07/2010 в 21:22 +0600, Jill Smitt пишет:
  Где настраиваются цветовые схемы для Geany? Независимо от темы
  оформления, главный редактор с белым фоном.
 
 
Спасибо, я там и нашел этот файл с конфигурациями, все устраивает.


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


Re: багрепорты?

2010-07-31 Thread Vasiliy Kulikov
On Sat, Jul 31, 2010 at 22:57 +0400, Dmitry Agafonov wrote:
 31 июля 2010 г. 22:07 пользователь Vasiliy Kulikov sego...@gmail.com 
 написал:
  День добрый.
 
  Нашёл в некотором софте из стандартного репозитория уязвимости и
  зарепортил, как private, чтобы разрабы сами пофиксили. Вот уже больше
  недели по каждой программе нет _никакой_ реакции, т.е. статус репорта new.
 
  Понимаю, что т.к. софт из universe, никто из canonical ничего не обязан
  поддерживать. Тем не менее, дырка на лицо.
 
  Какая след. инстанция? Если с личным временем у разрабов софта всё так
  тяжко, могу послать свои патчи, проблема в том - кому мне их посылать,
  чтобы они достигли офф репозитория? Вряд ли обновления безопасности для
  юниверса принципиально не выпускаются...
 
 Я полагаю, надо связаться с ответственным за пакет (кто загрузил его в
 репозиторий), потом с авторами самой программы.
 Хотя, конечно, должен быть какой-то алгоритм репортинга подобного и
 отслеживания статуса. И ответственные за безопасность.
 Может кто подскажет...

Насколько я понимаю, команда на ланчпаде, которая уведомляется при
приватных багрепортах, состоит из мантейнеров или авторов программы. Они
не ответили. Ланчпад - единственно верный способ багрепортинга для
убунты.

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


Re: багрепорты?

2010-07-31 Thread Владимир Бажанов
В дебиане есть такая фича.
Можно послать письмо на имя_паке�...@packages.debian.org и оно будет само
перенаправлено кому_надо. Если ваш пакет не относится к убунту-онли
пакетам (ну это не какой-то изобретённый каноникалом трей или типа того)
я думаю можно смело писать мейнтейрами пакета в дебиане.

http://www.debian.org/contact#packageproblems - вот, почитайте там.

В Суб, 31/07/2010 в 22:57 +0400, Dmitry Agafonov пишет:
 31 июля 2010 г. 22:07 пользователь Vasiliy Kulikov sego...@gmail.com 
 написал:
  День добрый.
 
  Нашёл в некотором софте из стандартного репозитория уязвимости и
  зарепортил, как private, чтобы разрабы сами пофиксили. Вот уже больше
  недели по каждой программе нет _никакой_ реакции, т.е. статус репорта new.
 
  Понимаю, что т.к. софт из universe, никто из canonical ничего не обязан
  поддерживать. Тем не менее, дырка на лицо.
 
  Какая след. инстанция? Если с личным временем у разрабов софта всё так
  тяжко, могу послать свои патчи, проблема в том - кому мне их посылать,
  чтобы они достигли офф репозитория? Вряд ли обновления безопасности для
  юниверса принципиально не выпускаются...
 
 Я полагаю, надо связаться с ответственным за пакет (кто загрузил его в
 репозиторий), потом с авторами самой программы.
 Хотя, конечно, должен быть какой-то алгоритм репортинга подобного и
 отслеживания статуса. И ответственные за безопасность.
 Может кто подскажет...
 
 -- 
 Dmitry Agafonov ~ http://agafonov.pp.ru/

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


Re: Разговоры об IDE (разработк а)

2010-07-31 Thread Jill Smitt
Geany
Хмм, когда я запускаю на выполнение программу (pyGTK), она после
закрытия окна не освобождает от задачи встроенный терминал. В случае
если я нажму CTRL+C в терминале, происходит очистка экрана, но заново
программу запустить инструментами Geany уже не получается. Кто
сталкивался с такими вещами? Как наладить это?


signature.asc
Description: This is a digitally signed message part
-- 
ubuntu-ru mailing list
ubuntu-ru@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-ru


[Maverick] linux kernel 2.6.35-13.18 uploaded (ABI bump)

2010-07-31 Thread Leann Ogasawara
We have uploaded a new Maverick linux kernel.Please note the ABI
bump.  This kernel have a few notable changes:

 * Syncs us up with the latest upstream AppArmor
 * Enables the -virtual kernel as a pv-ops kernel on EC2
 * Allows ureadahead2 to track the utilization of read-ahead pages
 * Prevents some race conditions during boot
 * Maintains the bootlaoder screen/contents through to plymouth starting
 * Enables USB and ethernet on the Beagle XM board.

The full changelog can be found at:

https://www.launchpad.net/ubuntu/+source/linux/2.6.35-13.18

Thanks,
Leann



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


[Bug 611974] [NEW] Sync mailman 1:2.1.13-4 (main) from Debian unstable (main)

2010-07-31 Thread Dave Walker
Public bug reported:

Please sync mailman 1:2.1.13-4 (main) from Debian unstable (main)

Changelog entries since current maverick version 1:2.1.13-2:

mailman (1:2.1.13-4) unstable; urgency=medium

  * Fix permissions on /var/lib/mailman/archives/private, so
archiving works again. Problem introduced in 1:2.1.12-3.
  * Fix invocation of update-rc.d which yields an error when
not using dependency-based boot (closes: #590249).
  * Checked for policy 3.9.1, no changes needed.

 -- Thijs Kinkhorst th...@debian.org  Tue, 27 Jul 2010 22:56:03 +0200

mailman (1:2.1.13-3) unstable; urgency=low

  * Drop unneeded Indexes option from shipped apache.conf.
  * Eliminate update_rc.d warning by not passing runlevel 1 at stop.
  * Add 25_site_logo patch by Paul Wise (closes: #267243).
  * Do not compress PDF's under /u/s/d/mailman (closes: #582259).
  * Back up ./configure before running autoconf, so it can be restored
in clean as not to generate irrelevant diff.gz content.
  * Switch to dpkg-source 3.0 (quilt) format.
  * Checked for policy 3.9.0, no changes needed.

 -- Thijs Kinkhorst th...@debian.org  Tue, 13 Jul 2010 21:35:40 +0200

** Affects: mailman (Ubuntu)
 Importance: Wishlist
 Status: New

** Changed in: mailman (Ubuntu)
   Importance: Undecided = Wishlist

-- 
Sync mailman 1:2.1.13-4 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/611974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mailman in ubuntu.

-- 
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 231706] Re: Enable ExtendedStatus for mod_status by default (was: munin apache plugin no data)

2010-07-31 Thread Stefan Fritsch
This has been done in 2.2.15-4

-- 
Enable ExtendedStatus for mod_status by default (was: munin apache plugin no 
data)
https://bugs.launchpad.net/bugs/231706
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to apache2 in ubuntu.

-- 
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 611974] Re: Sync mailman 1:2.1.13-4 (main) from Debian unstable (main)

2010-07-31 Thread Launchpad Bug Tracker
This bug was fixed in the package mailman - 1:2.1.13-4

---
mailman (1:2.1.13-4) unstable; urgency=medium

  * Fix permissions on /var/lib/mailman/archives/private, so
archiving works again. Problem introduced in 1:2.1.12-3.
  * Fix invocation of update-rc.d which yields an error when
not using dependency-based boot (closes: #590249).
  * Checked for policy 3.9.1, no changes needed.

mailman (1:2.1.13-3) unstable; urgency=low

  * Drop unneeded Indexes option from shipped apache.conf.
  * Eliminate update_rc.d warning by not passing runlevel 1 at stop.
  * Add 25_site_logo patch by Paul Wise (closes: #267243).
  * Do not compress PDF's under /u/s/d/mailman (closes: #582259).
  * Back up ./configure before running autoconf, so it can be restored
in clean as not to generate irrelevant diff.gz content.
  * Switch to dpkg-source 3.0 (quilt) format.
  * Checked for policy 3.9.0, no changes needed.
 -- Dave Walker davewal...@ubuntu.com   Tue, 27 Jul 2010 22:56:03 +0200

** Changed in: mailman (Ubuntu)
   Status: New = Fix Released

-- 
Sync mailman 1:2.1.13-4 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/611974
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mailman in ubuntu.

-- 
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 611226] Re: Dovecot-common Install Error

2010-07-31 Thread Ian Barton
Antonio,

Thanks for the feedback. Attached is the information you requested. The
computer has a static ip address of 192.168.0.30. It has bind9
installed, which is configured the same as my primary DNS server, which
it will eventually replace. The computer 192.168.0.32 is my secondary
DNS. As far as I can tell bind is working correctly.

Ian.

resolv.conf:
nameserver 192.168.0.30
nameserver 192.168.0.32
domain bantercat.co.uk
search bantercat.co.uk

/etc/hosts:

127.0.0.1   mail.wilkesley.net
192.168.0.30mail.wilkesley.net firewall.bantercat.co.uk

::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

/etc/nsswitch.conf:
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc Name Service Switch' for information about this file.

passwd: compat
group:  compat
shadow: compat

hosts:  files dns
networks:   files

protocols:  db files
services:   db files
ethers: db files
rpc:db files

netgroup:   nis

-- 
Dovecot-common Install Error
https://bugs.launchpad.net/bugs/611226
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to dovecot in ubuntu.

-- 
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 612082] [NEW] optparser attribute missing in cli.py

2010-07-31 Thread Ben Davidson
Public bug reported:

Running vmbuilder (python-vm-builder v0.12.3-0ubuntu1) in Lucid I get
the following output resulting in an Attribute error

administra...@server-base:/vm/server$ sudo vmbuilder kvm ubuntu --arch=i386 
--suite=lucid --flavour=virtual --libvirt=qemu:///system ip=192.168.2.101 
--part=vmbuilder.partition --templates=mytemplates --user=administrator 
--name=Administrator pass=password --addpkg openssh-server --mem=512 
hostname=server --bridge=br0
2010-07-31 16:49:28,283 INFO: Calling hook: preflight_check
2010-07-31 16:49:28,286 INFO: Calling hook: set_defaults
2010-07-31 16:49:28,287 INFO: Calling hook: bootstrap
2010-07-31 16:54:13,482 INFO: Calling hook: configure_os
2010-07-31 16:54:34,376 INFO: update-alternatives: error: no alternatives 
for rsh.
2010-07-31 16:54:34,461 INFO: update-alternatives: error: no alternatives 
for rlogin.
2010-07-31 16:54:34,547 INFO: update-alternatives: error: no alternatives 
for rcp.
2010-07-31 16:54:35,324 INFO: Creating SSH2 RSA key; this may take some 
time ...
2010-07-31 16:54:36,286 INFO: Creating SSH2 DSA key; this may take some 
time ...
2010-07-31 16:54:36,403 INFO:
2010-07-31 16:54:36,403 INFO: Warning: Fake initctl called, doing nothing
2010-07-31 16:54:36,404 INFO:
2010-07-31 16:54:36,405 INFO: Warning: Fake initctl called, doing nothing
2010-07-31 16:54:37,808 INFO:
2010-07-31 16:54:37,808 INFO: Current default time zone: 'Etc/UTC'
2010-07-31 16:54:37,811 INFO: Local time is now:  Sat Jul 31 15:54:37 
UTC 2010.
2010-07-31 16:54:37,812 INFO: Universal Time is now:  Sat Jul 31 15:54:37 
UTC 2010.
2010-07-31 16:54:37,812 INFO:
2010-07-31 16:55:07,479 INFO:
2010-07-31 16:55:07,479 INFO: Current default time zone: 'Etc/UTC'
2010-07-31 16:55:07,482 INFO: Local time is now:  Sat Jul 31 15:55:07 
UTC 2010.
2010-07-31 16:55:07,482 INFO: Universal Time is now:  Sat Jul 31 15:55:07 
UTC 2010.
2010-07-31 16:55:07,482 INFO: Run 'dpkg-reconfigure tzdata' if you wish to 
change it.
2010-07-31 16:55:07,483 INFO:
2010-07-31 16:55:12,919 INFO: Calling hook: post_install
Traceback (most recent call last):
  File /usr/bin/vmbuilder, line 24, in module
cli.main()
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 115, 
in main
self.set_disk_layout(hypervisor)
  File /usr/lib/python2.6/dist-packages/VMBuilder/contrib/cli.py, line 250, 
in set_disk_layout
hypervisor.optparser.error(%s parsing --part option: %s % (errno, 
strerror))
AttributeError: 'KVM' object has no attribute 'optparser'

** Affects: vm-builder (Ubuntu)
 Importance: Undecided
 Status: New

-- 
optparser attribute missing in cli.py
https://bugs.launchpad.net/bugs/612082
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to vm-builder in ubuntu.

-- 
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 612124] [NEW] Sync tomcat6 6.0.28-2 (main) from Debian unstable (main)

2010-07-31 Thread Thierry Carrez
Public bug reported:

Please sync tomcat6 6.0.28-2 (main) from Debian unstable (main)

Changelog entries since current maverick version 6.0.26-5:

tomcat6 (6.0.28-2) unstable; urgency=low

  * Add debconf questions for user, group and Java options.
  * Use ucf to install /etc/default/tomcat6 from a template
  * Drop CATALINA_BASE and CATALINA_HOME from /etc/default/tomcat6 since we
shouldn't encourage users to change those anyway

 -- Thierry Carrez thierry.car...@ubuntu.com  Tue, 20 Jul 2010
14:36:48 +0200

tomcat6 (6.0.28-1) unstable; urgency=low

  [ Niels Thykier ]
  * Removed depends on JREs for the library packages. It is no longer
required by the policy.

  [ Torsten Werner ]
  * New upstream release (Closes: #588813)
- Fixes CVE-2010-2227: DoS and information disclosure
  * Remove 2 patches that were backports to 6.0.26.

 -- Torsten Werner twer...@debian.org  Mon, 19 Jul 2010 18:22:52 +0200

** Affects: tomcat6 (Ubuntu)
 Importance: Wishlist
 Status: Confirmed

** Changed in: tomcat6 (Ubuntu)
   Importance: Undecided = Wishlist

** Changed in: tomcat6 (Ubuntu)
   Status: New = Confirmed

-- 
Sync tomcat6 6.0.28-2 (main) from Debian unstable (main)
https://bugs.launchpad.net/bugs/612124
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to tomcat6 in ubuntu.

-- 
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 589880] Re: hangs on step checking aliens

2010-07-31 Thread Germán Pablo Gentile
What do you need to check it? Im using the official chkrootkit version
from repos. Is amazing it dont work

-- 
hangs on step checking aliens
https://bugs.launchpad.net/bugs/589880
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to chkrootkit in ubuntu.

-- 
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 612180] [NEW] package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: el subpro ceso script post-installation instalado devolvió el c ódigo de salida de error 1

2010-07-31 Thread mario
Public bug reported:

Binary package hint: bacula

ESTA BIEN EXPLICADO EN EL SUMARIO- GRACIAS- MARIO GOMEZ

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: bacula-director-mysql 5.0.1-1ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-24.38-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
Architecture: i386
Date: Sat Jul 31 22:51:46 2010
ErrorMessage: el subproceso script post-installation instalado devolvió el 
código de salida de error 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
SourcePackage: bacula
Title: package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: 
el subproceso script post-installation instalado devolvió el código de salida 
de error 1

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


** Tags: apport-package i386 lucid

-- 
package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: el 
subproceso script post-installation instalado devolvió el código de salida de 
error 1
https://bugs.launchpad.net/bugs/612180
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

-- 
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 612180] Re: package bacula-director-mysql 5 .0.1-1ubuntu1 failed to install/upgrade: el subproce so script post-installation instalado devolvió el c ódigo de salida de error 1

2010-07-31 Thread mario

** Attachment added: AptOrdering.txt
   http://launchpadlibrarian.net/52803428/AptOrdering.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/52803429/Dependencies.txt

** Attachment added: Df.txt
   http://launchpadlibrarian.net/52803430/Df.txt

** Attachment added: Dmesg.txt
   http://launchpadlibrarian.net/52803431/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/52803432/DpkgTerminalLog.txt

-- 
package bacula-director-mysql 5.0.1-1ubuntu1 failed to install/upgrade: el 
subproceso script post-installation instalado devolvió el código de salida de 
error 1
https://bugs.launchpad.net/bugs/612180
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bacula in ubuntu.

-- 
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 608685] Re: bind9 fails to start in Lucid Lynx, can't read openssl.cnf

2010-07-31 Thread J Queiroz
The workaround worked for me too.

-- 
bind9 fails to start in Lucid Lynx, can't read openssl.cnf
https://bugs.launchpad.net/bugs/608685
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to bind9 in ubuntu.

-- 
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 570317] Re: package nfs-common 1:1.2.0-4ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2010-07-31 Thread RJ Noneya
** Changed in: nfs-utils (Ubuntu)
   Status: Invalid = Incomplete

-- 
package nfs-common 1:1.2.0-4ubuntu4 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 127
https://bugs.launchpad.net/bugs/570317
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 367304] Re: complete loss of all audio after jaunty

2010-07-31 Thread bing
** Changed in: linux (Ubuntu)
   Status: Incomplete = Invalid

-- 
complete loss of all audio after jaunty
https://bugs.launchpad.net/bugs/367304
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 610200] Re: kernels after 2.6.32-17 have random failures in booting

2010-07-31 Thread Mitch Towner
** Tags removed: needs-kernel-logs

-- 
kernels after 2.6.32-17 have random failures in booting
https://bugs.launchpad.net/bugs/610200
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 611867] Re: FTBFS in maverick. Error: 'mkdir' was not declared in this scope

2010-07-31 Thread Bhavani Shankar
Hello mohar!

here is a review of your patch!

1. why are you reverting the debian patch level change in the patch?

2. There is no mention of maintainer with @ubuntu.com mail address
(Hint: use update-maintainer from the ubuntu dev tools package to set
Maintainer field)

3. AFAIK there is no need of including sys/types.h as sys/stat.h
includes definition for mkdir function so the patch will reduce further

keeping the above points in mind I have reworked and I have pasted my
own patch for your reference

regards


** Patch added: updated diff to fix FTBFS
   http://launchpadlibrarian.net/52767764/kball.diff

** Changed in: kball (Ubuntu)
   Status: New = Confirmed

** Branch linked: lp:ubuntu/kball

-- 
FTBFS in maverick. Error: 'mkdir' was not declared in this scope
https://bugs.launchpad.net/bugs/611867
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 610141] Re: Reboot gives black screen after BIOS loaded

2010-07-31 Thread Mitch Towner
** Tags removed: needs-kernel-logs

-- 
Reboot gives black screen after BIOS loaded
https://bugs.launchpad.net/bugs/610141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 608528] Re: Asus M2N68_VM fails to boot

2010-07-31 Thread Mitch Towner
Thank you for attaching that information. If you could test the latest
upstream kernel available that would be great. It will allow additional
upstream developers to examine the issue. Refer to
https://wiki.ubuntu.com/KernelMainlineBuilds . Once you've tested the
upstream kernel, please remove the 'needs-upstream-testing' tag. This
can be done by clicking on the yellow pencil icon next to the tag
located at the bottom of the bug description and deleting the 'needs-
upstream-testing' text. Please let us know your results.

** Tags added: needs-upstream-testing

-- 
Asus M2N68_VM fails to boot
https://bugs.launchpad.net/bugs/608528
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 406218] Re: r8169 stopped working

2010-07-31 Thread bing
** Changed in: linux (Ubuntu)
   Status: Incomplete = Fix Released

-- 
r8169 stopped working
https://bugs.launchpad.net/bugs/406218
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 406999] Re: crash during update

2010-07-31 Thread bing
** Changed in: linux (Ubuntu)
   Status: Incomplete = Invalid

-- 
crash during update
https://bugs.launchpad.net/bugs/406999
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 570317] Re: package nfs-common 1:1.2.0-4ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 127

2010-07-31 Thread Steve Langasek
** Changed in: nfs-utils (Ubuntu)
   Status: Incomplete = Invalid

-- 
package nfs-common 1:1.2.0-4ubuntu4 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 127
https://bugs.launchpad.net/bugs/570317
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 567719] Re: open office menu- and controls-fonts blurred

2010-07-31 Thread teg
Disable Special Effects helped but it is only a workaround as I don't
have such problems with other applications.

** Changed in: openoffice.org (Ubuntu)
   Status: Expired = New

-- 
open office menu- and controls-fonts blurred
https://bugs.launchpad.net/bugs/567719
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 418191] Re: no sound. audio device SigmaTel STAC9228 and installed ubuntu 9.04 inside vista

2010-07-31 Thread bing
** Changed in: linux (Ubuntu)
   Status: Incomplete = Fix Released

-- 
no sound. audio device SigmaTel STAC9228 and installed ubuntu 9.04 inside vista
https://bugs.launchpad.net/bugs/418191
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 305354] Re: Seamonkey closes (without asking, as it should) all windows when I type on search in 4shared.com

2010-07-31 Thread Balaco
Yes, at that time, it did happen every time I tried. I find it strange
you couldn´t reproduce it.

Regards.

On Thu, 01 Jul 2010 13:43:25 -, Nomax no...@arcadebelgium.be
said:
 Sorry, I can't reproduce the bug. Does it happen every time you type
 something in 4shared search box?
 
 ** Changed in: seamonkey (Ubuntu)
Status: New = Incomplete
 
 -- 
 Seamonkey closes (without asking, as it should) all windows when I type
 on search in 4shared.com
 https://bugs.launchpad.net/bugs/305354
 You received this bug notification because you are a direct subscriber
 of the bug.
-- 
  Dedeco
  balacob...@imap.cc

-- 
http://www.fastmail.fm - Access your email from home and the web

-- 
Seamonkey closes (without asking, as it should) all windows when I type on 
search in 4shared.com
https://bugs.launchpad.net/bugs/305354
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 611959] [NEW] Please merge liblouis 2.0.0-1(main) from debian unstable(main)

2010-07-31 Thread Bhavani Shankar
Public bug reported:

Debian changelog

liblouis (2.0.0-1) unstable; urgency=low

  * New upstream release.
  * debian/control: Bump Standards-Version to 3.9.1 (no change needed).
  * debian/rules: Do not stop build on make check error.

 -- Samuel Thibault sthiba...@debian.org  Tue, 27 Jul 2010 02:42:36
+0200

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

-- 
Please merge liblouis 2.0.0-1(main) from debian unstable(main)
https://bugs.launchpad.net/bugs/611959
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 580183] Re: asus eeepc 1001px in/out jack not functionnal and screen microphone

2010-07-31 Thread buasaard
Tried with model=fujitsu, work both the input and output integrated, but
not the microphone and the headphone plugging the jack.

-- 
asus eeepc 1001px in/out jack not functionnal and screen microphone
https://bugs.launchpad.net/bugs/580183
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 363363] Re: Keyboard Layout Key(s) to change layout doesn't work

2010-07-31 Thread Ilgaar
*** This bug is a duplicate of bug 251443 ***
https://bugs.launchpad.net/bugs/251443

The Keyboard Layout Key change doesn't work PROPERLY.

I'm using Ubuntu 10.04. The default Alt+Alt keys to change the keyboard
layout acts very strange. It is very odd, when these keys are hit both
at the same time it usually changes the keyboard layout from the
secondary to primary but not from the main one to the second keyboard
layout. So on must always use the mouse to change the keyboard layout to
the main one. I don't know what causes this problem. but it is really
annoying.

-- 
Keyboard Layout Key(s) to change layout doesn't work
https://bugs.launchpad.net/bugs/363363
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 474514] Re: Banshee very slow when interacting with track lists

2010-07-31 Thread Chow Loong Jin
On Saturday 31,July,2010 04:48 AM, Toby Smithe wrote:
 This seems to be present as a regression in maverick with banshee
 1.7.3-2ubuntu1.
 
 ** Changed in: banshee (Ubuntu)
Status: Fix Released = Incomplete
 

It is probably related to something in sqlite. Please post the output of
banshee --debug --debug-sql while reproducing this issue.

-- 
Kind regards,
Chow Loong Jin

-- 
Banshee very slow when interacting with track lists
https://bugs.launchpad.net/bugs/474514
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 611959] Re: Please merge liblouis 2.0.0-1(main) from debian unstable(main)

2010-07-31 Thread Bhavani Shankar

** Patch added: debian  ubuntu diff
   http://launchpadlibrarian.net/52768889/liblouis.diff

** Changed in: liblouis (Ubuntu)
   Status: New = Confirmed

** Branch linked: lp:ubuntu/liblouis

-- 
Please merge liblouis 2.0.0-1(main) from debian unstable(main)
https://bugs.launchpad.net/bugs/611959
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 608058] Re: Boinc fails to start projects in Lucid

2010-07-31 Thread KevinM
Thanks Daniel. 
Booted three times in a row.
Will report back when Boinc next fails to start/load a project.
By the way, I have apport permanently enabled and the crash files in /var/crash 
don't seem to include one for Boinc (may be due to your comment about 
.xsession-errors in post #6.

-- 
Boinc fails to start projects in Lucid
https://bugs.launchpad.net/bugs/608058
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 598581] Re: RFE: apt-get install local .deb file

2010-07-31 Thread Michael Vogt
You can use the tool gdebi for this for now. It uses libapt as its
backend.

** Changed in: apt (Ubuntu)
   Status: New = Confirmed

** Changed in: apt (Ubuntu)
   Importance: Undecided = Wishlist

-- 
RFE: apt-get install local .deb file
https://bugs.launchpad.net/bugs/598581
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


  1   2   3   4   5   6   7   8   9   10   >