/srv/irclogs.ubuntu.com/2009/06/07/#ubuntu-bugs.txt

yoasifheya guys00:46
yoasifany idea how i can more effectively triage this bug? https://bugs.launchpad.net/ubuntu/+source/eog/+bug/37922100:47
ubot4Launchpad bug 379221 in eog "Scrolling in a zoomed in image results in blocks" [Undecided,New]00:47
bcurtiswxyoasif: you are getting some good help upstream, plus apport collected most of the information you need to have in the report.  In fact, upstream has more info than the ubuntu bug.. I think its a good enough job to get the triaged mark.  Setting...00:53
bcurtiswxyoasif, does it fix itself or is it a permanent "block"00:54
yoasifbcurtiswx: sweet deal :)00:54
yoasifbcurtiswx: does not fix itself, maybe if i do a fullscreen or something00:54
yoasifone sec00:54
yoasifbcurtiswx: initiating a full screen makes it redraw and it comes up fine, when exiting fullscreen it looks good again, but doing an up/down scroll messes it up again00:56
bcurtiswxyoasif: gj, everythings set00:57
yoasifbcurtiswx: thanks :)00:58
bcurtiswxyw00:58
yoasifbcurtiswx: is low really a good idea -- it's a regression00:59
yoasifregressions are a nono, no?00:59
bcurtiswxyoasif: upstream can't reproduce it, at the moment01:00
yoasifbcurtiswx: any chance producing a screencast might help?01:01
bcurtiswxyoasif: screencasts always help :-)01:01
yoasifcool01:02
yoasifbcurtiswx: updated the bug with a screencast heh01:15
bcurtiswxhmm, doesn't want to load for me01:18
bcurtiswxah, there we go01:21
yoasifbcurtiswx: unrelated question -- when there is a file playing in totem, and you open a new one in nautilus, what is supposed to happen?01:21
=== asac_ is now known as asac
bcurtiswxnautilus is the file manager, totem is playing a movie.. im confused on your scenario here01:23
yoasifi opened a mp3 in totem... now i double click on a new movie/file in nautilus... totem is the file handler.... nothing happens -- is anything supposed to happen?01:25
bcurtiswxit should change to that01:25
bcurtiswx(just tested it)01:25
yoasifbcurtiswx: hehe doesn't for me01:26
bcurtiswxi686 = x86_64 ?02:20
bcurtiswxif not whats diff of i386 and i686 ?02:20
jmarsdeni686 == newer CPUs from Intel with some extar instructions compared to the original 386.  Whether am i686 class CPu runs 64bit is a different thing entirely.02:21
bcurtiswxjmarsden: ty02:21
jmarsdenNo problem.  If you care about the details, try http://en.wikipedia.org/wiki/Intel_P6_(microarchitecture)02:21
jmarsdenFor checking whether your CPU can run amd64 (64bit) instructions, you can do    egrep '^flags.*(vmx|svm)' /proc/cpuinfo02:26
jmarsdenOh, sorry that is for virtualization...02:26
bcurtiswxhaha, i am just asking because of a bug02:27
bcurtiswxthx though02:27
jmarsdenOK.  The one for 64bitness is the lm flag, btw02:28
bcurtiswxbug #384044 I am wondering who I should subscribe to this bug, as well as im thinking importance = high02:58
ubot4Launchpad bug 384044 in ubuntu "Ubuntu 9.04 live CD crashes on boot" [Undecided,Incomplete] https://launchpad.net/bugs/38404402:58
jmarsdenbcurtiswx: looks like the bug is highly specific to a very old CPU and chipset (does Jaunty even officially support running on an 850MHz Athlon?), so I'm not sure how important that would be... also so far only one person reported it -- if you can't confirm it yourself, I'd leave the importance alone until it becomes clearer how many people are affected by it.03:02
bcurtiswxjmarsden: ok.. idk what else i'd add to that to make it officially triaged03:05
bcurtiswxthe wiki for debugging casper doesn't contain much, and i had the reporter do what it said... so should I mark as triaged and let the devs determine if its all still supported or not ?03:06
jmarsdenI'm not sure... if it can't be duplicated... you can probably mark it triaged, but that's just a guess... confirming it would be more useful -- can you find a friend who has that class of motherboard in their garage ??03:10
bcurtiswxjmarsden: we do the best we can, with what were given.  Marking it triaged :) thx03:11
jmarsdenNo problem :)03:12
=== kklimonda_ is now known as kklimonda
bencrisfordYou know the command sed -i 's/hell/hello/g' path/to/file12:24
bencrisfordis there a way of doing it so it only edits one line12:24
bencrisfordsay i have a two line file like this:12:25
bencrisfordHell12:25
bencrisfordHello12:25
bencrisfordhell12:25
bencrisfordand I only want the first hell to be hello12:25
bencrisfordhow would I do that?12:25
gesermake your regex more strict: sed -i 's/Hell$/Hello/g' path/to/file12:26
bencrisfordI dont understand geser :/  what does the $ do?12:27
geser$ matches end of line12:27
geser^ if you need the begin of line12:27
bencrisfordHow would I specify what line though?12:27
geserHell$ will match any line ending in Hell12:27
bencrisfordoh12:28
bencrisfordwell im editing a config file12:28
bencrisfordand writing a script that does it automatically12:28
bencrisfordbut alot of the settings are yes/no12:28
bencrisfordand im using that command, so im kinda stuck with the yes/no12:28
bencrisfordbecause its changing every no and every yes atm12:29
gesercan you show an example of what exactly you want to accomplish, it's often easier to tell a solution for a certain problem than a generic one (at least for me)12:31
bencrisfordok, sure, ill pastebin my code12:32
bencrisfordand what im trying to edit12:32
bencrisfordgeser: http://pastebin.com/m13dce84712:33
bencrisfordbut in the .conf i am editing there is many bools12:34
bencrisfordthe one i want to edit with that snippet is line 7712:34
geserand the setting is "no_kill = yes" ?12:35
bencrisfordno_kill = no12:36
geserwhy don't you simply look for a line starting with "no_kill = " (independent of the current value) and replace it with what you want?12:37
gesersed -i "s/^no_kill = .*$/no_kill = $NEW4/g' file12:38
bencrisfordgeser: Your're a genius!12:38
bencrisfordthank you so much :)12:40
bencrisfordgeser: Is there a command to clear a file?12:52
bencrisfordlike a log12:52
Hobbseerm?12:55
Hobbseerm file && touch file?12:55
Hobbseeecho '' > file might work, too12:55
* Hobbsee assumes that will behave as intended12:55
bencrisfordso:12:55
bencrisfordrm logfile.log && touch logfile.log?12:55
gesercat /dev/null > file12:56
Hobbseehm, even echo > file works12:56
geserbencrisford: and don't forget to restart the application if it has that file open while you empty it that way12:56
bencrisfordso what command am i running geser, Hobbsee?12:57
geserlike you want, but be aware that if the app has still the file open while you rm it, it will still be able to write to the now deleted file13:01
bencrisfordinfo pessulus13:28
bencrisford!info pessulus13:28
ubot4bencrisford: pessulus (source: pessulus): lockdown editor for GNOME. In component main, is optional. Version 2.26.0-0ubuntu1 (jaunty), package size 39 kB, installed size 1200 kB13:28
bencrisford!info13:31
bencrisford!info ubot413:31
ubot4bencrisford: Package ubot4 does not exist in jaunty13:31
bencrisford!info inkscap13:45
ubot4bencrisford: Package inkscap does not exist in jaunty13:45
bencrisford!info inkscape13:45
ubot4bencrisford: inkscape (source: inkscape): vector-based drawing program. In component main, is optional. Version 0.46-5ubuntu4 (jaunty), package size 14108 kB, installed size 61288 kB13:45
bencrisford!info quassel13:46
ubot4bencrisford: quassel (source: quassel): KDE4/Qt based, IRC client. In component main, is optional. Version 0.4.1-0ubuntu3 (jaunty), package size 19125 kB, installed size 54804 kB13:46
bencrisford!info ninja14:44
ubot4bencrisford: ninja (source: ninja): Privilege escalation detection system for GNU\Linux. In component universe, is optional. Version 0.1.2-2 (jaunty), package size 16 kB, installed size 88 kB14:44
=== yofel_ is now known as yofel
yoasifi think this should be tagged wishlist https://bugs.launchpad.net/ubuntu/+bug/38451417:46
ubot4Launchpad bug 384514 in ubuntu "What about a deamon warning the user when disk is full ?" [Undecided,New]17:46
xteejxHey guys, just a quick question, I've tried to get a backtrace for gdesklets, and it keeps coming up with an error about python2.5 - bug 384550 (it's mine - I'm trying to get more info)17:52
ubot4Launchpad bug 384550 in gdesklets "[jaunty] gdesklets fails to start with Could not launch 'gDesklets'" [Undecided,New] https://launchpad.net/bugs/38455017:52
hggdhlooking18:01
hggdhxteejx, yes, it seems to be related to python 2.518:01
xteejxhggdh, thanks :) is there any more info I can give?18:02
hggdhwell, you could look at the source package, to see what are the pre-reqs18:03
hggdhlooking for where python 2.5 is requested18:04
hggdhbut, as far as I can see, from a triage point of view, it is done18:04
hggdhthe programme is asking for a python that is not installed (and not listed as pre-req).18:04
xteejxthe source stuff is a bit beyond my level at the mo heh18:05
xteejxI'm guessing debian/rules problem18:05
BUGabundoxteejx: eheh18:05
hggdhxteejx, if it helps any, I just installed it & run it18:05
hggdhsuccessfully18:05
xteejx??? how18:05
BUGabundokarmic ?18:05
hggdhfor the record, I am running karmic18:05
hggdhheh18:06
BUGabundohow did I know lol18:06
BUGabundo:))18:06
xteejxI'm in Jaunty at the mo, Karmic is installed on my USB thumbdrive18:06
BUGabundohow are you guys ?18:06
xteejxnot bad thanks BUG, you?18:06
hggdhhey BUGabundo boa noite18:06
xteejxgood night?18:07
BUGabundohggdh: boa tarde, sff18:07
hggdhxteejx, yes, good night. and BUGabundo answered good afternoon18:07
xteejxahh, in english good night impies you are going hehe18:07
xteejx*implies18:07
yoasifi think this should be marked wishlist https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/38450518:08
ubot4Launchpad bug 384505 in evolution "More persistent calendar reminders" [Undecided,New]18:08
hggdhyes, but not in Portuguese18:08
hggdhyoasif, looking18:08
xteejxahh i see :)18:08
BUGabundohggdh: going where?18:09
hggdher, what?18:09
BUGabundoxteejx: ^^^18:09
xteejx?? I'm confused...18:09
hscdudehi18:09
hggdhoh, teej meant you say 'good night', in English, when you are going to bed/going home18:10
hscdudeis it just me or did sopmething happened to ssl crtificate18:10
xteejxhggdh, who said my name was teej :P18:10
hscdudebugs.launchpad.net uses an invalid security certificate.     The certificate will not be valid until 05/08/2009 05:05 PM.18:10
hggdhyoasif, it would be good to know what version of Evo and Ubuntu we are talking about in the bug.18:10
xteejxtake the s from https out or allow an exception in firefox18:10
xteejxhscdude, ^^18:11
hscdudexteejx: but why18:11
hggdhyoasif, but I tend to agree with you, sounds wishlist. But I will wait until we know the versions18:11
yoasifhggdh: cool18:11
hscdudesomeone failed at administrating that server or what18:11
xteejxhscdude, I assume you mean you cannot connect to the site?18:11
hggdhxteejx, your bug ;-)18:11
hggdhhscdude, let me check18:11
hscdudeI mean the site uses invalid ssl crtificate, which should be fixed18:11
xteejxI'm not having any probs18:12
hggdhxteejx, are you connected to edge, or standard LP?18:12
xteejxstandard18:12
hscdudeany webmaster of that site here?18:13
xteejxtry #launchpad18:14
hscdudeguys do you also get this invalid cert?18:14
xteejxnope18:14
xteejxi got 08/05/09 to 09/05/10 on the certificate...18:14
hggdhhscdude, I just checked both LP and edge, both show certs that are still valid (expiring in July 2009)18:14
hggdhso I guess we are being load-balanced...18:15
hscdudehmm.. perhaps our wifi is being highjacked \o/  wtf18:15
xteejxhggdh, why is mine different :S18:15
hggdhbrb18:15
BUGabundohscdude: to me the cert looks good18:15
BUGabundoand signed by GoDady18:15
BUGabundoI wonder if YOUR cert cache is outdate18:15
xteejxBUGabundo, that's exactly what i can see18:15
hscdudeBUGabundo: it was always working for me before18:15
hscdudeBUGabundo: also, this cert is in the FUTURE (wtf)18:15
xteejxhscdude, have you done the usual clear cache, etc?18:16
BUGabundomine says it expires in 201018:16
xteejxyeah 9th May 2010 on mine18:16
BUGabundoahh right18:16
BUGabundo09/05200918:16
BUGabundofor the issue date18:16
hscdudeyes I cleared cache18:16
BUGabundomaybe hscdude is reading it on Europe date format18:16
xteejxBUGabundo, 9th May 2009....its 7th June, I'm seeing the same thing, shouldnt be a problem18:17
hscdudeof course I am18:17
hscdudeUSA  m/d/y date format is retarded18:17
xteejxI'm English, mine woul dbe messed up too if that was the case18:17
xteejxhscdude, agreed on that one hehe18:17
hscdudeon a side note, someone should beat up the Open Office default time format, which uses m/d/y18:18
BUGabundoyou can18:18
BUGabundobut there is nothing system wide to set it on gnome18:18
BUGabundoonly kde18:18
xteejxdoesnt it change with the en-gb set?18:18
BUGabundothere's a bug for that18:18
xteejxthen again I hardly ever use OOo18:19
BUGabundoxteejx: here is one for you: make OOo calc use #,###.00 instead of #.###,0018:20
xteejxhscdude: nudge someone in #launchpad see if they know about the cert problem18:20
hscdudeohh!18:20
hscdudelol I found the problem.18:20
xteejxBUGabundo, I don't need to ###.## is GB standard :P18:20
BUGabundoxteejx: what prob? seems fine to me18:20
BUGabundonot in PT18:21
hscdudedate18:21
hscdudeSat Jan  6 00:31:26 EET 199618:21
BUGabundowe have .#,0018:21
BUGabundoSun Jun  7 18:21:14 WEST 200918:21
hscdudeI was in middle of debugging  wakup using CMOS clock magic.  didnt corrected my clock yet lol. n/m18:21
xteejxBUGabundo, looks like the UK are different with another thing again, left hand drive cars, . not , lol18:21
xteejxhscdude, lol no worries we all make mistakes :)18:22
xteejxanyway guys I'm off so bye all :) and thanks hggdh for the help18:24
=== yoasif_ is now known as yoasif
hggdhbcurtiswx, I see your issue was resolved ;-)23:57
bcurtiswxyes sir :-), thx for your help23:58

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!