[01:42] Hi all. I am trying to add my hardware info to this page, but I don't see an edit option. I am logged into the page. https://wiki.ubuntu.com/QATeam/Hardware [01:46] hello? anyone not afk? === chihchun_afk is now known as chihchun [09:35] elopio: hi, do you know who would be the best person to ask questions to about autopilot ? [09:40] nerochiaro, please ping ubuntu-qa for help [09:41] nerochiaro, in the meantime, what question did you have? [09:43] brendand: ubuntu-qa: just wanted to know if there was a way in AP to get a list of elements in the correct order. select_many does not guarantee order, but i need to test the order of items in a list [09:54] nerochiaro, can you select_single the list and check the elements from there? [09:55] fgimenez: what do you mean "check the elements from there" ? how do i access them in order ? [09:58] nerochiaro, the list node returned by select_single should have an attribute representing the items, have you got an example of this? [10:00] nerochiaro, have you looked at the listview helpers from ubuntu-ui-toolkit? [10:01] brendand: no, that's a good tip. are they documented somewhere or should i look into the source ? [10:01] nerochiaro, they are documented. let me see [10:03] nerochiaro, http://people.canonical.com/~nskaggs/autopilot-sdk-helpers.html, doesn't look very complete though [10:04] brendand: right. does not have anything that can help me in the listview helper it seems [10:06] nerochiaro, no it seems not [10:07] nerochiaro, heh - look at this: [10:07] def _get_first_item(self): [10:07] """Returns the first item from the ListView.""" [10:07] items = self.get_children_by_type('QQuickItem')[0].get_children() [10:07] items = sorted(items, key=lambda item: item.globalRect.y) [10:07] return items[0] [10:08] nerochiaro, sorting the items by the y co-ordinate. clever :P [10:08] brendand: wow, that's clever. where does it come from ? [10:08] nerochiaro, from the QQuickListView CPO. But it's a private method [10:08] brendand: well then, i am stealing it [10:08] nerochiaro, there's no helper function to return all items sorted [10:09] nerochiaro, and also you probably want to get_children_by_type as it does, rather than using select_many [10:09] brendand: why ? [10:09] nerochiaro, well it reads better for one [10:10] brendand: right [10:10] nerochiaro, although if you're doing the select_many from the listview itself it won't matter [10:10] nerochiaro, if you're doing from a higher level then there's the (unlikely) possibility it could get items which aren't part of the list view you care about [10:11] brendand: got it. thanks [10:11] brendand: out of curiosity, what's the "CPO" you mentioned before ? [10:11] nerochiaro, custom proxy object [10:11] nerochiaro, basically autopilot wraps things in a 'proxy object' [10:11] nerochiaro, things that it introspects [10:12] nerochiaro, and the custom indicates that you override the default one to add some useful functions [10:14] brendand: understood. and the code works great too. great help, thank you === victorp_ is now known as victorp === rbasak_ is now known as rbasak [13:22] elopio: no, it's not a bug exactly. the test doesn't get run, but the setUp and tearDown do, which is a bit annoying for the autopilot tests as it means the app gets spawned/killed still [14:01] dobey, that's the one that should be fixed in upstream testtools [14:04] dobey: ah, it was that, right. [14:05] in the end veebers went with self.skipTest in the setup, so we are good. [14:11] brendand_: the dash breaks, as in the functionality of the dash? [14:11] elopio, well it doesn't start i don't think [14:11] or the tests helpers for the dash stop working as expected? [14:11] elopio, current symptoms are - the area where the dash should be is blank , and the test cannot find the MainView [14:12] brendand_: and what happens if you start unity manually? [14:12] elopio, i'm installing the uitk staging ppa to see if it's a problem there [14:12] elopio, same thing [14:12] brendand_: i don't think it's a testtools problem. it's just how python and unit tests in python, work [14:13] brendand_: we didn't touch production code at all. It would be good if you tell zoltan about it so they fix it. [14:13] dobey, unless something has changed, in fact the bug doesn't happen when run using unittest's test runner [14:14] dobey, so it is a test tools problem. unless we're talking about a new issue that has the same symptoms as the one i looked at yonks ago [14:14] elopio, well i need to prove it happens without using our code, which i'm doing right now [14:15] elopio, it could also be to do with an interaction between the unreleased version of unity8 and the uitk staging code [14:15] elopio, since i installed both to get the upstreamed helpers [14:15] brendand_: i'm not sure what you're talking about exactly, but i don't see how a decorator would be evaluated differently in standard python unittest. decorators are evaluated by the interpreter when the method they decorate is run [14:15] brendand_: right, that's possible. [14:16] dobey, maybe i missed a bit of context then and it's not actually the same issue [14:17] dobey, is there a bug? [14:18] brendand_: i haven't filed any bug for this [14:18] afaik, unittest does the same thing; it calls setUp(), calls the test_foo() method, then calls tearDown() [14:20] dobey, https://github.com/testing-cabal/testtools/issues/86 [14:20] brendand_, elopio i'm seeing the same blank scope as well since yesterday, i thought it had to do with my setup [14:21] fgimenez, did you have those packages installed? [14:21] brendand_: oh ok. *shrug* [14:21] brendand_, yes [14:21] dobey, is that the same issue? [14:21] brendand_: https://github.com/testing-cabal/testtools/pull/103 says it was fixed in september [14:22] brendand_, it breaks the dash completely, after a reboot the scope is still blank [14:22] dobey, yeah - but only upstream [14:22] brendand_: try ppa:dobey/testtools and see if it fixes it for you? [14:23] brendand_: if so, then yet another good reason to get the new testtools into the distro :) === jibel_ is now known as jibel [14:29] elopio, good news, it's not our code [14:29] elopio, bad news is uitk staging is busted [14:29] elopio, well - bad news for the sdk team :P [14:54] elopio, for https://trello.com/c/Ky65SZNk/142-epic-04-spike-add-the-right-proxy-extension-bases-to-cpos, do you know which suites are affected? [14:54] elopio, you mentioned address_book [14:54] address book, system settings, webbrowser. [14:54] I think that's it. [14:55] elopio, at least of the ones sanity touches, right? [14:56] elopio, do you have an MP that shows what kind of change needs to be done? [14:56] elopio, that would be super handy [15:01] elfy: does xubuntu core use the standard iso? [15:01] the standard mini.iso [15:01] oh [15:02] elfy: have you seen that someone is suggesting bug 1259525 is back in today's daily? [15:02] bug 1259525 in Xubuntu Default Settings "Lubuntu & Xubuntu & Ubuntu Kylin lightdm session fails to start. user-session is not set" [Undecided,New] https://launchpad.net/bugs/1259525 [15:02] xubuntu core is one of those you can install from the list, like ubuntu desktop [15:03] no, not seen that - just got in from work [15:03] btw thx for catching that bug with nto booting in vm. we finally crushed it. [15:03] not a lot of testing's been done, so it's hard to invalidate it based on the qa tracker alone [15:05] once I'm a bit more chilled I'll boot our image [15:05] is something wrong with jenkins? i just noticed all the results are way old https://jenkins.qa.ubuntu.com/view/Ubiquity/view/Lubuntu/ [15:05] hehehe [15:08] been saying that since December, given up now [15:08] brendand_: https://code.launchpad.net/~canonical-platform-qa/address-book-app/fix_base_class/+merge/256243 [15:11] brendand_: is there a bug reported for that? [15:11] elopio, for what? [15:20] wxl: looking like I can ack that bug rebirth [15:26] wxl and I can and as a plus in kvm http://i.imgur.com/F2UKnm5.png [15:28] elfy: bummer. i was hoping you were going to tell me it was bs. :( wonder if it's the same root cause. [15:29] I think that behind it for us I'm seeing the xfce background, which is wrong [15:34] yep === chihchun is now known as chihchun_afk [16:07] cyphermox: have you caught any of this with wxl and that wicked elfy guy? [16:07] eg images all fubar for us again? [16:08] define fubar? [16:08] missing characters in vms? [16:08] http://i.imgur.com/F2UKnm5.png [16:08] yeah, I was just looking at that [16:09] my understanding was that this was a qemu graphics issue [16:09] that and in vbox, we appear to be seeing xfce behind the dialogue - http://i.imgur.com/guVSpEH.png [16:09] that may be part of the case, but we also get dumped to a login box [16:09] the background isn't the right one or do you mean the icons? [16:10] shouldn't be xfce [16:10] the icons I saw a bug report and patch from ochosi, but it doesn't fix the issue here [16:10] ah, okay? [16:10] tbh, that's likely more of the same reason why the icons show up [16:10] yea - not sure this is *that* issue - Xubuntu is happy to ignore that till 15.10 afaik [16:10] mmm [16:11] something isn't completely setting the settings properly for your session [16:11] yea [16:11] but - it was yesterday [16:11] but I could maybe take another look at the backgroud [16:12] elfy: want to take a look whether that wallpaper comes from one of the files listed here? http://bazaar.launchpad.net/~ubuntu-installer/ubiquity/trunk/view/head:/bin/ubiquity-dm#L369 [16:13] that would help :) [16:14] I'll see what I can find [16:22] cyphermox: http://pastebin.ubuntu.com/10833874/ none of those appear to be in yesterday's image for a start [16:23] yey... [16:23] well, that would explain it I guess. We'll just need to figure out why and which one to use instead if it's on purpose [16:27] can't even login - username xubuntu with no password [16:30] ugh [16:30] alright, downloading the iso [16:31] amd64 or i386 that you're testing right now? [16:31] 64bit here [16:31] I'm trying to avoid downloading too much, network is abysmal here [16:32] :) [16:32] cyphermox: ok, so in yesterday's working one xubuntu-wallpaper is a link to xubuntu-vivid [16:32] I thought it would, just needed to check [16:33] cool [16:33] I can add that as a wallpaper option [16:33] or if you want, file a merge proposal, I'll do an ubiquity upload soonish [16:33] I think that knome was doing something with the slideshow last night - reverting something [16:34] http://bazaar.launchpad.net/~ubiquity-slideshow/ubiquity-slideshow-ubuntu/html/revision/677 [16:34] reverted something there afaik [16:36] as far as MP, I'm not at all sure what we need to do here, what's wrong etc [16:37] it's also affected Lubuntu - hence wxl's involvement [16:44] elfy is that using qxl on qemu? [16:45] I have never used qxl [16:45] is that a freudian slip :D [16:45] no [16:46] ah cause that sort of looks like bug 1261916 [16:46] bug 1261916 in xserver-xorg-video-qxl (Ubuntu) "Missing letters in spice client session with KVM guest" [Critical,Triaged] https://launchpad.net/bugs/1261916 [16:47] elfy: ianorlin: just waiting on the desktop images to rebuild. ~30min or less it seems [16:47] (for lubuntu) [16:48] wxl: I'm using 'todays' [16:48] just so you know [16:48] elfy: yeah i think xubuntu is in crontab a lot earlier than lubuntu :) [16:48] brb going to fix a printer issue for someone :/ [16:48] yep [16:49] ianorlin: as far as 'kvm' goes I just install it and the manager then use it - then hate it for owning images with root [16:49] actually only do it so I can tell infinity and cyphermox it's not *just* a vbox issue ;) [16:57] ok builds are done [16:57] just waiting for them to show up on the tracker [16:58] er rather get uploaded to cdimage [17:19] hello [17:20] wxl: elfy: that's not to fix a wallpaper issue is it? [17:20] i found a bug in ubuntu 14.04 [17:21] !bugs | Captonjamason [17:21] Captonjamason: If you find a bug in Ubuntu or any of its derivatives, please file a bug using the command « ubuntu-bug » - See https://help.ubuntu.com/community/ReportingBugs for other ways to report bugs. [17:21] ok [17:21] thanks [17:22] thank YOU Captonjamason [17:22] if you need help with the process, let me know [17:23] ok [17:23] its kinda wierd [17:23] cyphermox: i have no clue. i'm still waiting on our ISOs today to show up on the tracker. [17:23] cyphermox: (well, to show up on cdimage. supposedly the builds were successful) [17:25] my bug isnt any sort of package [17:25] Captonjamason: explain, please [17:26] some of the letters i type in dont show up even though they still go through on chat, skype etc. [17:27] wxl: oh my, the current image really is quite broken [17:27] elopio, hey, could we have someone from your side review https://code.launchpad.net/~macslow/unity8/shellRotation/+merge/256493 please? [17:27] this is in what flavor and version, Captonjamason ? [17:27] cyphermox: i assume you're referring to xubuntu? [17:27] normal ubuntu, 14.04 [17:27] wxl: yep [17:27] Captonjamason: has it always been that way or did it just happen recently? [17:28] wxl: it's like the live system didn't get setup properly [17:28] it just happend recently [17:28] im trying to get a screen shot [17:28] cyphermox: elfy: could it be related to the recent changes to the seed to add xserver-xorg-*-all as recommends? [17:29] Captonjamason: and does it happen in every single application, the terminal included? [17:29] excluding terminal [17:29] wxl: do you use gdm? [17:30] cyphermox: no, we use lightdm like everyone else. [17:30] ok [17:30] Captonjamason: can you list all of the apps you know it fails on? [17:31] skype, web browsers, file manager, ubuntu store, blender, code::blocks, ubuntu sdk, and sometimes when i search spotify [17:31] only sometimes when you search spotify, Captonjamason ? [17:31] no [17:32] all of those listed above [17:32] and spotify sometimes [17:32] but never, ever the terminal? [17:32] correct [17:32] fascinating [17:32] its basicly in every app i type in [17:32] Captonjamason: you have ibus running, correct? [17:33] pretty sure i do [17:33] yep [17:33] i do [17:33] im trying to get a screen shot [17:33] try killing it and/or replacing it with a different input manager (e.g. scim) and see what happens [17:33] i've had problems like that with ibus before [17:33] and they're super inconsistent [17:33] well [17:33] sometimes when i reboot its fine [17:34] but other times it does this "bug" [17:35] its insane [17:35] i still bet it's ibus [17:35] i probably is [17:36] *it [17:36] here's some potentially related bugs: [17:36] bug 1421483 [17:36] bug 1421483 in libreoffice (Ubuntu) "All keyboard input fails: "IBUS-WARNING **: Events queue growing too big"" [Undecided,New] https://launchpad.net/bugs/1421483 [17:36] wait [17:36] bug 1415678 [17:36] bug 1415678 in ibus (Ubuntu) "Keyboard input problems in various applications" [Undecided,New] https://launchpad.net/bugs/1415678 [17:36] my keyboard input doesnt fail [17:36] bug 1412544 [17:36] bug 1412544 in ibus (Ubuntu) "After using some keyboard keys cursor disappears in some apps" [Undecided,New] https://launchpad.net/bugs/1412544 [17:36] it still types fine [17:36] i get that :) [17:37] it still types fine [17:37] where the heck are my ISOs, cyphermox ? :( [17:37] the letters just pop of the screen [17:37] just a moment [17:37] and then sometimes come back [17:38] wxl: well, no logs for it yet [17:38] cyphermox: https://launchpad.net/~ubuntu-cdimage/+livefs/ubuntu/vivid/lubuntu ? [17:38] 40-some-odd-minutes ago [17:39] unless it's waiting on that ppc build [17:39] vived coming out soon? [17:39] *vivid [17:39] Captonjamason: yeah next week! [17:39] ah, you built lubuntu? [17:39] hack yeah [17:39] cyphermox: well crontab did XD [17:39] can wait to upgarde [17:39] *grade [17:39] heheh [17:39] wxl: 30 minutes ago? [17:40] well, 1 hour ago really [17:40] cyphermox: they finished building 50 minutes ago! [17:40] its impossible for me to type when the letters go away :\ [17:40] (except for ppc) [17:40] Captonjamason: did you try killing ibus or setting keyboard input method to none? [17:40] tried [17:40] still didnt do anything [17:41] wxl: well, ppc looks wedged, if I'm to believe previous build times [17:41] Captonjamason: a screenshot will helped [17:41] on it [17:41] wxl: lets move this to #-release [17:41] cyphermox: ko [17:49] this is a test to show that letter dissaper on my screen [17:49] http://i.imgur.com/JZVoGbw.png [17:49] thats what it looks like on my screen [17:49] i cant even type [17:49] Captonjamason: running low on memory perhaps? [17:49] 4 gb [17:49] 3 gb free [17:50] baffling [17:50] i dont think im running low [17:50] its insane [17:52] Captonjamason: i don't offhand know the solution to your problem :( have you asked in #ubuntu? [17:52] nah [17:52] Captonjamason: i'd start there [17:52] this is my first time joining one of the ubuntu chats [17:52] i figured coming here [17:52] thgat's the official support channel [17:52] ill give it a try [17:53] but its just insane [17:54] Captonjamason: you can also try running ubuntu-bug and it will try to help you find potential packages to file against. you probably could file against ubuntu-meta. [17:54] ok [17:55] and [17:55] what would it take for me to join the QAteam [17:56] should be right at the top of https://wiki.ubuntu.com/QATeam Captonjamason [17:56] basically: join the mailing list, hang out here, join the launchpad group, and get to doing what you want to do [17:56] if you have questions, pop in here or send something to the list [17:56] ok [17:57] i have yet to join mailing list [17:57] what in particular are you interested in helping with? [17:57] either tester or dev [17:58] i havent had much time to tinker with barebones linux [17:58] yeah well that's not necessary [17:58] so i might not be the best for dev [17:58] really [17:58] no, unless you want to do kernel development [17:58] uhhhh [17:58] no [17:58] some of the dev work needed doesn't even necessarily require code [17:58] alright [17:59] im in [17:59] like the other day we made a change to one of our seeds so the images would get all their packages pulled in [17:59] what i would suggest is this: [17:59] 1. do some formal testing [17:59] 2. report some bugs while testing [17:59] 3. try to figure out how to validate and fix those bugs [17:59] 4. fix them [18:00] alternately you could search for bugs in packages you're really familiar with [18:00] ok [18:00] you'll need to ask lots of questions along the way [18:00] don't hesitate to ask [18:00] i knew that i would need to ask alot of questions [18:00] i do have 1 question [18:02] to run dev builds and normal builds would i be able to run in virtualbox or do i need to dual boot or have to use a new computer all together? [18:02] Captonjamason: there are times where bare metal testing is useful, but most testing is done in vm [18:02] figured as much [18:03] i have a old computer i can use for bare metal testing [18:07] hey [18:08] Captonjamason: yes? [18:08] question [18:09] !ask | Captonjamason ☺ [18:09] Captonjamason ☺: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [18:09] sorry [18:09] np [18:09] bet it happens alot on here [18:10] more so on the support channels but no prob [18:11] anyways for setting up the vm, do i need to set the os type to ubuntu 32bit (i decided to use 32 for testing) or to other 32bit linux [18:12] really doesn't matter too much but the ubuntu would suffice [18:12] figured as much [18:12] btw if you have 64 bit hardware you should be able to test either image [18:12] i know [18:12] i have 64 bit ubuntu on 64 hardware [18:13] im gonna do both 32 and 64 for testing [18:13] just wanted to start with 32 [18:13] lunch calls, ta [18:14] now lunch sounds good [18:16] well im off to test [18:24] wow [18:24] vivid isnt too bad [18:24] well in ways of buggyness [18:51] elopio, what's up with https://code.launchpad.net/~canonical-platform-qa/webapps-core/x-test/+merge/249580? [18:53] hmm [18:54] Captonjamason, glad you think so.. [18:54] * balloons wonders how long till Captonjamason manages to break something [18:54] im deeply offended [18:54] i just took a look at it [18:55] that was it [18:55] im working on trying to fix a bug [18:57] Captonjamason, I meant "break" in a good way, my apologies. [18:58] lol [18:59] anything i need to work on except bug tracking [18:59] elfy: so the wallpaper issue will be fixed in the next image [19:00] well i guess i found a bug on vivid build' [19:01] was live cd working yet? [19:02] hello? [19:04] balloons: that's in the web team's hands now. I don't understand why it has not merged. [19:04] elopio, ack, I'll ask alex [19:06] balloons: thanks. [19:06] Saviq: I'll add it to the TODO. [19:06] elopio, thanks! [19:06] umm balloons, was live cd working in the newest vived update [19:07] *vivid [19:09] balloons: was live cd working in the newest vivid update [19:11] or is that a question for someone else [19:12] Captonjamason, I don't have today's image so I'm not sure [19:12] I've not synced yet [19:12] alright [19:13] when i clicked live cd it took me to a login page??? [19:14] what would i login with [19:15] well lunch calls [19:17] Captonjamason, that means the desktop is failing for some reason [19:17] if you try and login my guess is it will attempt to spawn a new session, fail, and return you to the login screen [19:20] hmmmm [19:20] thats what it did [19:20] did you check the md5 Captonjamason ? [19:20] yea [19:21] then perhaps the issue that elfy brought to my attention is affecting more than xubuntu (and maybe lubuntu) [19:21] well thats nice [19:23] what was the issue [19:26] a little error in an uplaod, Captonjamason [19:26] one little out of place '\' [19:26] always the stupid stuff :) [19:26] fix is uploaded, just waiting on everything to sync up [19:28] cool [19:28] https://bazaar.launchpad.net/~ubuntu-core-dev/user-setup/ubuntu/revision/287 fwiw [19:29] give it a bit and then we'll need to rebuild everything [19:29] balloons: you may want to be kept aware of the above ↑ [19:30] question [19:31] i need to get bazaar? [19:31] if you're going to do development, you'll certainly want bazaar [19:31] can i get a link for bazaar [19:31] i dont have it [19:31] even if you don't, it's good sometimes when bug hunting because then you can grab the code and recusively grep it for some important string [19:31] wxl, ahh yes, that would be it [19:32] elfy: fyi that bug affects everyone; see above [19:32] crap [19:33] i have a assighnment [19:33] i cant type [19:33] this should help with bazaar Captonjamason https://wiki.ubuntu.com/Bzr?action=show&redirect=Bazaar [19:34] thanks [19:34] np [19:34] i will work on that in a bit [19:34] i need to finish this [19:37] dangit [19:38] wxl, terminal wont let me install bzr, it says theres another program using admin accses, i have no other programs running except for spotify and firefox [19:38] i cant type [19:39] Captonjamason: you sure synaptic or anything isn't running? [19:39] pretty sure [19:39] lemme try it again [19:39] this is what it ga ve me [19:39] jamason@JAMASON-X551MA:~$ sudo apt-get install bzr [sudo] password for jamason: E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable) E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? [19:40] if you're SURE that no other package manager of any kind is running, then you can just rm /var/lib/dpkg/lock and carry on [19:40] ok [19:41] and yes i dont have any other package managers running [19:41] i dont use synaptic [19:41] well if you had a separate dpkg process running [19:41] or aptitude [19:42] nope [19:42] or any other apt-get process [19:42] etc [19:42] if not, the lock gets stuck sometimes [19:42] ok [19:42] i used that command and got it working [19:43] Captonjamason: you could also `sudo lsof /var/lib/dpkg/lock` if you want to see what command is complaining about it [19:44] well [19:44] its kinda too late [19:44] gimme a sec [19:44] reboot [19:44] yep [19:44] just saying in the future [19:45] ok [19:52] back [19:52] and i dont have the letter glitch wxl [19:54] and im on utopic now [19:56] could i get that link for bzr back wxl [19:57] this should help with bazaar Captonjamason https://wiki.ubuntu.com/Bzr?action=show&redirect=Bazaar [19:57] thanks [20:01] hey wxl, when i run ssh-keygen -t rsa -C "Your Name " as a command it says " To many varibles" [20:01] i changed the name and email to mine [20:03] Captonjamason: you can just do `ssh-keygen -t rsa` and it will ask you for a commend if you like [20:03] thanks [20:03] is that page outdated maby [20:04] it didnt ask me [20:05] Captonjamason: it doesn't matter too much [20:05] ok [20:10] done [20:10] what do i do now [20:14] do i need to do something after putting in my ssh key? [20:15] hello? [20:15] what? [20:16] wxl was helping me out with setting up bazzar [20:16] sorry Captonjamason too many things going on [20:16] np [20:17] did you upload your key to launchpad? [20:17] i compleatly understand [20:17] yes [20:17] then try grabbing something [20:17] how? [20:18] here's an example: bzr branch lp:lubuntu-default-settings [20:19] ok [20:21] done [20:21] did that do something [20:21] im more familiar with svn then git or bazaar [20:22] cd to lubuntu-default-settings [20:22] they're very similar [20:22] ok [20:22] woah [20:22] thats pretty cool for one command [20:24] one thing though, when i ran that it said i had to give my launchpad id or something like that [20:25] oh yeah [20:25] hm maybe that site is not the best [20:25] try doing bzr launchpad-login [20:25] k [20:26] No Launchpad user ID configured... [20:26] why terminal [20:26] why not? :) [20:27] it no work [20:28] try `bzr launchpad-login id` where id is your launchpad id [20:29] where can i find my launchpad id [20:29] on your launchpad page [20:29] where you uploaded your ssh key [20:29] thanks [20:29] i know i probably seem like a noob [20:30] sorry about that [20:31] hey wxl [20:31] bzr: ERROR: The user name https://launchpad.net/~minecraftdude2471 is not registered on Launchpad. [20:31] thats what it gave me [20:32] get rid of the rest of the url and use only your id Captonjamason [20:32] k [20:32] it worked [20:33] so how can i get the daily builds [20:33] you mean the isos or what? [20:34] isos [20:34] http://iso.qa.ubuntu.com/ [20:34] thanks [20:38] what is Mythbuntu [20:39] !mythbuntu | Captonjamason [20:39] Captonjamason: Mythbuntu is an Ubuntu derivative centered upon setting up a standalone MythTV system. See: http://www.mythbuntu.org for more information and #ubuntu-mythtv [20:39] thats kinda cool [20:39] !ubuntustudio [20:39] UbuntuStudio is a collection of packages for the artist who wishes to use Ubuntu as their Digital Audio Workstation. It contains all the best Audio/Visual components from the Ubuntu repositories. For more info and install instructions, join #ubuntustudio or see http://ubuntustudio.org [20:43] !lubuntu | captonjamason: i spend most of my time working with [20:43] captonjamason: i spend most of my time working with: lubuntu is Ubuntu with LXDE instead of !GNOME as desktop environment, which makes it extremely lightweight. See https://wiki.ubuntu.com/Lubuntu - /join #lubuntu for lubuntu support. [20:43] Captonjamason: any real reason for pinging the bo? [20:43] t even [20:43] elfy: i think he just learned there are bot commands so was making use out of them [20:43] !bot > Captonjamason [20:43] Captonjamason, please see my private message [20:44] Captonjamason: you can /msg ubot5 !whatever [20:44] or stop trolling [20:44] these might have been a bit hidden until a while, but they are recently updated: [20:44] Captonjamason, https://wiki.ubuntu.com/QATeam/DevelopmentSetup [20:44] or stop trolling [20:45] and others are: https://wiki.ubuntu.com/QATeam/DevelopmentToolsSetup and https://wiki.ubuntu.com/QATeam/DevelopmentToolsUsage [20:45] they are now linked to from the QATeam front page. [20:45] thx knome [20:45] which reminds me i should work on the QATeam wiki more [20:45] balloons, ping [20:45] biding time [20:45] why is the chat going all crazy now [20:46] knome, pong [20:46] hey balloons [20:46] balloons, want to have a wiki sprint? [20:47] hey elfy knome :-) [20:47] Captonjamason: troll alerts - imagine [20:47] a wiki sprint.. interesting.. [20:47] Captonjamason, it's just the crazy xubuntu folks stepping in [20:47] what sort of format would it take? live editing or ? [20:47] elfy: behave. he's new here and trying to figure his way around. [20:47] balloons, whatever we did before [20:48] balloons, i mean not a scheduled, i mean *right now* :) [20:48] wxl: right [20:49] Captonjamason: if you are, then all power to you, but please do not Enter as punctuation - we can all try at that ;) [20:49] knome, ahh, I see :-) [20:52] knome, no time like the present.. [20:52] yep! [20:52] so... https://wiki.ubuntu.com/QATeam/FAQ [20:53] and did you do work with the tracker pages? [20:54] i think you did [20:55] * knome claps [20:58] * balloons looks puzzled [20:59] yes the tracker pages.. and the walkthroughs. I've looked at them and done some editing, but I can't commit to updating the videos [21:00] heh [21:19] hmm I still have to hard power off desktop images on my laptop [21:20] is that solely a lubuntu thing ianorlin ? [21:20] haven't tried yet might try unity [21:20] is it the installer or the installed system? [21:20] installer post install [21:20] it worked on my mom laptop live session yesterday [21:20] this might be hardware specific [21:21] so these are all bare metal tests? [21:22] yes [21:22] have you tried virtual at all? [21:22] elfy: looks like your rebuilts got the new users-admin but the old ubiquity. i trust they don't work? [21:45] wxl on kvm with qxl graphics it stops after I click to the restart now buttons and doesn't get past that which is different [21:46] with which image ianorlin ? [21:46] desktop amd64 [21:46] so ubuntu [21:47] altenrates seemed to never have this problem [21:47] er lubuntu i mean [21:52] yep I haven't tried live session on bare metal for today's image [21:54] today's image is borked [21:54] waiting for the new ubiquity to get uplaoaded so i can schedule a rebuild [21:56] we need 2.21.22 ianorlin [21:56] wxl yet I actually got it to shut down from live session but pressing the enter on my numpad [21:56] weird' [21:57] I may end up trying manual install and seeing if I can shutdown with that enter there [22:05] wxl ah it is working if I press power button from broken live session it works not after install [22:05] should this be a new bug? [22:07] wasn't there a bug filed against something similar? [22:13] yeah but they all seem fix released [22:14] even the one that was reported yesterday on the tracker? [22:15] i think i' [22:15] m going to try the rebuild [22:18] um it even happens on the ones that I have the casper for fix released [22:20] gimme a sec and i'll check it out ianorlin [22:23] argh i can't find the darn thing [22:23] sometimes i really hate the iso tracker [22:25] mmmm [22:26] xubuntu core is rebuilding for some reason DalekSec [22:26] Hrm. Release Candidate therefore everything gets 'rebuilt'? It more or less should be the same as with upgrades. [22:30] yeah looks like we need a new bug ianorlin [22:31] bug 1436715 and bug 966480 are the two i know of and supposedly casper fixed them both [22:31] bug 1436715 in casper (Ubuntu Vivid) "Vivid DVD fails to reboot or shutdown w/o hard reset" [Critical,Fix released] https://launchpad.net/bugs/1436715 [22:31] bug 966480 in plymouth (Ubuntu Precise) "The prompt asking for media removal is not shown at the end of the installation" [High,Triaged] https://launchpad.net/bugs/966480 [22:42] wxl I have something that makes no sense if you mount the alternate installer image navigate to /boot/grub/efiX86_64 and it show grub files as music files [22:42] that is very confusing [22:42] whoa?! :) [22:42] just cat them out to /dev/dsp and see what happens hehe [22:48] hey [22:48] hello [22:50] hmm what to file the bug agianst? [22:51] i'd probably call it ubiquity [22:51] wxl but I do I report this as it is after I can get to a shell [22:51] apport-collcet? [22:52] ubuntu-bug it if you can [22:53] what about ubiquity [22:53] at the restart now prompt? [22:54] oh a bug with ubiquity [22:54] hm you can't get a vt on it? [22:59] not once I hit restart now [22:59] argh and the showing as music also happens after installing nautilus [23:00] shoot [23:00] looks like they're already building finals [23:00] is that bad wxl [23:00] new daily rebuilds are almost up, but that may slow things down a bit [23:00] the file command shows the images as executable [23:00] Captonjamason: not exactly. home stretch for vivid, but i want to get rid of this last bug before we go final. [23:01] wxl I may also want to test on this desktop to see if it is hardware dependent [23:01] but it did in vm as well [23:04] ianorlin: ok new rebuilds are up [23:04] need to do a really quick smoke test [23:23] cyphermox: ok, proper backdrop, reboots - still hangs on reboot in vbox [23:25] I am trying on bare metal and on ssd on my laptop [23:27] elfy do you have a bug for that? [23:28] same as previous [23:28] kvm works [23:28] just sorting a stick for a hardware boot [23:29] I have one in progress [23:29] yep [23:37] argh can't switch to a tty on this image [23:38] im back [23:43] hey wxl, pulseaudio is acting up [23:43] i am certainly no big fan of pulse, but what's the issue, Captonjamason ? [23:44] 1 sec [23:45] i fixed it by doing nothing [23:45] it said dummy output instead of my speakers [23:45] oh wow root is only users on this system [23:46] ? [23:46] I couldn't even use my normal way of right clicking then launching lxterminal from the installer but I could launch firefox download a directory and then launch pcmanfm [23:46] then I could launch only xterm [23:46] weird [23:48] i havent used xterm or uxterm at all, whats the diffrence between those 2 and terminal [23:50] and wxl, i dont like alsa a single bit, jack wont work, and i dont like pulse but i have to use it. [23:50] jack works fine for me, but it's not a good solution for desktop users [23:50] also if you use pulse you use alsa [23:51] and that's one of the bigger gripes i have about pulse: it's just extra fluff with little value [23:51] same with me [23:51] alsa works fine [23:52] i meant by alsa without like pulseaudio volume control [23:52] barebones alsa [23:53] yep, alsamixer works good [23:53] its ok [23:53] when i wore my awsome headphones when using "BareBoneALSA" i had static [23:54] probably had mic on or something of the sort [23:54] nah [23:54] those dont have mics [23:54] *mic [23:55] and worst part was i was working in ardour [23:55] so i needed to have almost perfect audio [23:56] so barebonesalsa didnt work all that great for me