[02:42] hello---I'm new to snappy and just learning my way around. [02:46] I see an error "beagleboneblack_1.0_all.snap failed to install: Signature verification failed with exit status 10" when playing with the beaglebone example oem package [02:46] any hints? [03:05] Ah---the magic seems to be adding the '--developer-mode' argument for locally built packages === kickinz1|afk is now known as kickinz1 [06:28] hi, i installed java on my snappy ubuntu and now wrote a bash script which starts a java application which should be running as a service. the problem is that apparmor won't let me execute java, it says "Operation not permitted". can i allow java to be called somehow? [06:29] (the service was installed as a snap) [07:00] D_Cent: what exactly is getting blocked? [07:00] Chipaca: the java call itself [07:00] D_Cent: dmesg | grep DENY [07:01] Chipaca: hm... that doesn't give me anything [07:01] D_Cent: then it isn't apparmor [07:01] Chipaca: systemctl status says: Apr 24 07:01:04 localhost.localdomain ubuntu-core-launcher[1318]: /apps/rda-watchdog.sideload/0.1/bin/rda-watchdog: line 4: /usr/bin/java: Operation not permitted [07:02] D_Cent: wait, you installed java to /usr/bin/? [07:02] Chipaca: well, I basically just installed the raspbian debian package - I didn't find a snap or anything for snappy [07:02] haha [07:03] D_Cent: how did you install a package from a different architecture? isn't raspbian armel? [07:03] Chipaca: i've got "oracle-java8-jdk_8_armhf.deb", so i guess not ;) [07:04] D_Cent: looks like there is an armhf raspbian. fair enough. [07:04] Chipaca: so why is the call getting blocked? is there another way to get java working? [07:05] D_Cent: it's not getting blocked; it's probably entirely broken [07:05] D_Cent: can you run java from the terminal? [07:05] Chipaca: but i can execute the script when not using systemd [07:05] Chipaca: exactly [07:06] D_Cent: once you've installed a debian package onto a snappy system it is not a snappy system any more, you're pretty much on your own there. have you looked into whether seccomp is blocking it somehow? [07:06] i've got to go, but can probably help you a bit further when i return in an hour and half or so [07:07] Chipaca: okay, thank you! [07:07] D_Cent: meanwhile, look into seccomp [07:07] I'll do [07:17] D_Cent, you either need to put the java install inside your snap or you need to create a framework package if you actually need to consume java from multiple snaps ... installing a deb will be reverted completely on updates [07:18] good morning [07:18] Chipaca, raspbian is armhf but ARMv6 ... === kickinz1 is now known as kickinz1|afk [08:08] ogra_: okay, so this will be a problem for me then... for example, i need wi-fi (wpa_supplicant) and that doesn't come with ubuntu core, so i installed that with dpkg, too [08:19] dpm, when trying the appliance guide last night, have you been hitted by this (second part of the bug) ? https://bugs.launchpad.net/snappy-ubuntu/+bug/1447724 [08:19] davidcalle, that's the bug that I fixed [08:20] dpm, oh! Cool :) [08:20] davidcalle, the .sideload references are now .canonical [08:20] dpm, ok, makes sense [08:21] davidcalle, I think it's because the original version of the guide was written with a locally-installed snapp, whereas a store snapp was made available afterwards. At least that's what I think [08:21] after changing the instructions to .canonical, the guide worked for me [08:22] * davidcalle should get a bbb [08:26] davidcalle: dholbach: did rcj's changes to the snappy docs get made yesterday? [08:26] mhall119, yep [08:27] mhall119, davidcalle responded at 23:54 CET === kickinz1|afk is now known as kickinz1 [08:35] Good morning all; happy Friday and happy Teach Your Children to Save Day! :-D [08:54] D_Cent: so if you need to use something like wap_supplicant, i think you need to create a framework package with that, and then make your package depend on the framework [08:54] D_Cent: however, i do believe the intention is for core to have some kind of wifi story soon :) [08:55] it might just mean that we're going to create that framework package ourselves [08:57] Chipaca: that would be great :) [08:58] D_Cent: meanwhile you might need to muddle through it on your own though :) [08:58] it's not even on the trello yet [08:58] afaik :) [08:58] Chipaca: so now i'm trying to put java directly into the snap and it *seems* to work. Now I have to deal with other issues that the usb4java library has ;) (temporary directory creation) [08:58] D_Cent: temp dir should be set up properly though [08:59] Chipaca: i guess it tries to create that directory right where you call the java command from, but i guess i can fix that :) i just hope that i won't run into problems when accessing usb devices [09:00] D_Cent: what directory is it trying to create? [09:00] D_Cent: wrt usb devices, that's what “snappy hw-assign” is for [09:00] Chipaca: it should be /apps/rda-watchdog/watchdog/usb4java [09:01] D_Cent: your thing is a framework? [09:01] Chipaca: right now it's just an app [09:01] D_Cent: that's not the path of an app though [09:02] Chipaca: ah wait... [09:02] Chipaca: /apps/rda-watchdog.sideload/current/watchdog/usb4java is the correct path [09:02] better :) [09:02] :) [09:02] * Chipaca hadn't even notice the missing version in the first one [09:03] D_Cent: your app is trying to write there? [09:03] Chipaca: the usb4java framework wants to extract a jar file temporarily to get access to a native library which it then wants to load [09:04] so you need to ship that library inside [09:05] ogra_: java doesn't give you too much control over that, does it? [09:05] * Chipaca doesn't know [09:05] i'll try that :) [09:06] Chipaca, i think java uses enmv vars you can shufflke around [09:06] D_Cent: if your java thing expects PWD to be writeable, better cd to $SNAP_APP_DATA_PATH (or $SNAP_APP_TMPDIR ?) before starting it [09:07] ogra_: or -Xeogijuoifvhiofiodsfqrigikvnueoicodifighiu43 [09:07] or maybe it was 44, and 43 was "go buy beer" [09:07] hard to know [09:08] Chipaca: aah thanks, that's a better idea [09:09] D_Cent: if you're running on an arm board, and you know that extracion is happening every time your app starts, and you can instead ship things unextracted, go with that [09:09] D_Cent: save yourself some time [09:11] s/arm/low power/ [09:11] probably same applies for the intel thingamajig [09:11] Chipaca: hmmm 2cd: /tmp/snaps/rda-watchdog.sideload/0.1/tmp: No such file or directory" [09:12] Chipaca: that happens when trying "cd $SNAP_APP_TMPDIR" [09:12] D_Cent: hm. maybe you need to mkdir -p it first? [09:12] if that doesn't work, double-hm :) [09:13] okay, double hmm ;) "mkdir: cannot create directory ‘/tmp/snaps’: Permission denied" [09:13] tee, hee. ok. that's a Bug [09:14] D_Cent: hm. the code to make it is there. [09:14] D_Cent: maybe you're running something old/ancient? [09:15] D_Cent: there's a mkdir in the wrapper in /apps/bin/ [09:15] Chipaca: i just build my image yesterday with ubuntu-device-flash [09:15] *built [09:15] D_Cent: could you pastebin the wrapper? [09:16] Chipaca: you mean my script which starts the java process? [09:17] D_Cent: no, i mean the wrapper that's created for the binaries declared in your package.yaml and placed in /apps/bin/ [09:17] D_Cent: which is what sets up the environ for your app before calling it with ubuntu-core-launcher [09:17] Chipaca: aah sure, just a sec [09:18] Chipaca: http://pastebin.com/sszsfZGt [09:20] D_Cent: so, that fine; that creates the directory [09:21] Chipaca: okay, but i start that as a service === timchen1` is now known as timchen119 [09:21] D_Cent: you .. what? [09:21] Chipaca: it is supposed to be started by systemd [09:22] D_Cent: but then it's not a binary, it's not in /apps/bin/ [09:22] i'm making you look in the wrong place :) [09:23] Chipaca: hehe so basically, i just run "sudo systemctl start rda-watchdog_rda-watchdog_0.1" and that runs the systemd script in /etc/systemd/system - seems like that doesn [09:23] * doesn't use /apps/bin [09:23] D_Cent: so, could you pastebin the service file from /etc/systemd/system/ ? [09:24] D_Cent: should be something like rda-watchdog_yourservice_yourversion.service [09:24] Chipaca: sure :) http://pastebin.com/jN2Gq3SK [09:25] hmmmm :) [09:25] dunno why i asked you to do that. no surprises there. [09:26] * Chipaca digs into it [09:26] hehe thanks :) [09:26] pitti: i've got a systemd question for you when you're around [09:30] Chipaca: now i see what it is trying to do - app armor reports: "audit: type=1400 audit(1429867806.982:39): apparmor="DENIED" operation="mknod" profile="rda-watchdog.sideload_rda-watchdog_0.1" name="/tmp/usb4java2636409983806462228.tmp" pid=2021 comm="java" requested_mask="c" denied_mask="c" fsuid=0 ouid=0" [09:31] D_Cent: good. now you need to find out what env var is needed so that it uses the "right" tmpdir [09:32] D_Cent: while i sort out that right tmpdir getting created, you should be able to create it yourself from outside [09:33] Chipaca: for the moment, i just use $SNAP_APP_DATA_PATH which exists and is writable [09:33] D_Cent: ok :) [09:34] mvo: sergiusens: I *think* we need to put something in tempfiles.d so the services get their tmpdir. Waiting for confirmation from pitty wrt that. [09:35] Chipaca: just shoot [09:36] pitti: we're telling services they should use a given TMPDIR [09:37] pitti: that TMPDIR does not exist [09:37] pitti: poking around a little it seems we need to drop a file in one of the tempfiles.d [09:37] pitti: is that the right way? [09:41] pitti: so a file named like the package, with one line of the form “d $TMPDIR 1777 ubuntu ubuntu” per service [09:44] Chipaca: that works, but TBH I'd rather set this up in ubuntu-app-launcher [09:45] Chipaca: i. e. just mount a private /tmp/ into the app's namespace, so that you don't need a $TMPDIR at all [09:45] pitti: that sounds a lot better; a lot of code doesn't check TMPDIR anyway. [09:46] Chipaca: yeah, that was my concern [09:46] Chipaca: I noticed that with the ROS snap, I had to sed its code to make it respect TMPDIR [09:46] can you actually call mount from a snap ? [09:46] ogra_: not on my watch :) [09:46] ogra_: no, you don't need to, just the launcher [09:47] * Chipaca doesn't actually have a watch [09:47] ah, so systemd then [09:47] ? [09:47] ogra_: no, ubuntu-core-launcher [09:47] (not related to that) [09:47] oh, thats a new thing ... [09:47] ogra_: maybe. it's also setuid. [09:47] * ogra_ only has dones service snaps yet [09:47] at least in my PoC I already create a new namespace for mounting a private /dev/pts/ [09:47] it's trivial to add a tmpfs /tmp/ there [09:48] I think that might not yet be in mvo's C implementation in vivid, but at some point we want to add it [09:48] pitti: is that PoC on the launcher, or is it something else? [09:48] ah [09:48] ok :) [09:48] Chipaca: on ubuntu-core-launcher, yes [09:49] so, we probably want to do that soon [09:49] because services have no tmpdir right now [09:51] yeah, agreed [09:51] and also the /dev/pts/ so that apps can't spy on each other's terminals (well, apparmor would/should prevent that too, but it's still cleaner) [09:53] pitti: sgtm. asac also wanted private /dev/, but that's hairier [09:54] anyway, sounds like we have a plan for this, and either you or mvo are on it already. I'll go back to worrying about obscure error cases. [09:54] D_Cent: meanwhile, you'll have to create the directory by hand every time (or create a file in /etc/tmpfiles.d; man tmpfiles.d) [09:55] Chipaca: we have restricted device access already [09:55] Chipaca: private /dev/ was teh original plan and PoC, but we have something better now (using the devices cgroup) [09:59] Chipaca: alright, thank you! [10:01] pitti: ok :) i thought we'd had to go back on that for now, but glad to be wrong [10:02] pitti: added a comment on the /dev/pts card so we don't forget [10:17] yeah, private /tmp and /dev/pts is planed just not done yet and will be added soon(ish) [11:47] hm... got another problem now. i put java into an own framework package and it works completely. now i have an app, set java as a framework for the app and tried calling "java". without mentioning the path "/apps/bin/java" it doesn't find the executable. if i use that path directly, i get an "operation not permitted" error [11:48] fwiw, and executable shouldn't be a framework [11:48] a framework should be something that mediates resources [11:50] hm.. okay, the documentation mentions i could put binaries and services into frameworks [11:51] sergiusens, an interpreter isnt a resource ? [11:51] ogra_: i felt that was coming [11:51] lol [11:52] it will be very hard to claim the 'java' namespace in any case === erkules_ is now known as erkules [13:07] can somebody explain what exactly java tries doing here so it gets killed? "[24632.544408] audit: type=1326 audit(1429880585.774:262): auid=1000 uid=0 gid=0 ses=25 pid=4173 comm="java" exe="/apps/rda-watchdog.sideload/0.1/java/bin/java" sig=31 arch=40000028 syscall=370 compat=0 ip=0x76ede622 code=0x0" [13:38] pitti: fyi, the private /dev conversation was because cgroups don't block what the app sees, only what the app accesses. so, ls /dev shows everything even if the app can only access /dev/foo. personally, I think that is fine. we aren't trying to reimplement container solutions-- if people want containers, they can use them [13:55] D_Cent: try scmp_sys_resolver 370 [13:55] D_Cent: this looks like there is a missing syscall in our seccomp whitelist [13:57] well, he is using an ARMv6 binary ... [13:57] could be related [13:58] yeah, we had issue with the arm private syscalls before [13:58] libseccomp did not implement them all, jdstrand send a patch upstream, maybe there are more private arm syscalls (but really I'm no expert for this) [13:59] I haven't sent one yet [13:59] err [13:59] haven't sent it upstream yet [14:00] there were 5 listed in the kernel sources and confirmed in other seccomp implementations (firefoxos, minijail) [14:00] we shouldn't have any more missing syscalls. our template might be missing one [14:01] the private syscalls have a much higher number. 370 is in the normal range and not a private arm syscall [14:02] ahah, ok [14:02] sorry [14:02] on bbb: [14:02] $ scmp_sys_resolver 370 [14:02] name_to_handle_at [14:03] name_to_handle_at is explicitly denied due to "a history of vulnerabilities and are not widely used" [14:04] tyhicks: can you look at backscroll for 1 hour and advise? [14:05] tyhicks: it appears java is trying to use name_to_handle_at [14:07] mvo: thanks a bunch! can you also tell me how to enable the syscall by default? [14:08] D_Cent: please read my comments [14:08] this is a problematic syscall and we've disabled it [14:09] jdstrand: ah okay, i'm sorry [14:10] you now, you can add it manually to /var/lib/snappy/seccomp/profiles/ [14:10] but it will be lost on upgrade [14:10] jdstrand: that's what i did for now :/ [14:11] you might be able to avoid it in your java code [14:11] jdstrand: it's actually not my code - it happens in the usb4java library (which basically is based on a C library) [14:12] this gives some information on the call: http://manpages.ubuntu.com/manpages/utopic/man2/open_by_handle_at.2.html [14:16] D_Cent: perhaps there is a way to disable it at compilation. It was introduced in 2.6.39 kernel (~4 years ago). if this library is meant to be used on older kernels... [14:18] I'm looking at how/why usb4java is using that syscall [14:18] jdstrand: i didn't compile it myself yet, so i guess i should do that now. the library i use now was built on GCC: (Debian 4.6.3-14+rpi1) 4.6.3 [14:18] tyhicks: hi! (and thanks) [14:18] jdstrand: hey :) [14:19] D_Cent: you might wait for tyhicks' response [14:20] D_Cent: hi - I've cloned the libusb4java and usb4java git trees and I'm not finding where that syscall is being made in either of them [14:21] D_Cent: can you give me some more info? (is it a specific version of libusb4java?) [14:21] tyhicks, he is grabbing the binaries from raspbian ... [14:21] which is a hacked up armhf, forced to ARMv6 instead of v7 ... [14:22] tyhicks: i can't find it either by just grepping, so it must be an indirect call i think [14:22] (so they rebuild the debian archive with different compile options) [14:22] hrm [14:22] tyhicks: the function is called once i call "UsbHostManager.getUsbServices()" [14:22] this is really odd [14:22] I've never heard of anything needing that syscall other than an nfs server that was implemented in userspace [14:24] tyhicks: i'm also very confused. everything else in my java code is working, just not that usb library call [14:29] tyhicks: fyi, https://codesearch.debian.net/results/name_to_handle_at/ [14:29] jdstrand: I'm on page 8 :) [14:30] btw, "UsbHostManager.getUsbServices()" is from javax-usb and I pulled down their git tree and don't see it being called in there [14:32] oh, interesting [14:32] jdstrand: I didn't see any packages actually using name_to_handle_at... only things that need to enumerate the syscall table [14:32] http://sources.debian.net/src/docker.io/1.3.3~dfsg1-2/contrib/mkseccomp.sample/?hl=393#L393 [14:32] i wish i could track that system call down a bit more, like with a call stack or something [14:32] docker blocks it by default. of course, they have a way to add it [14:33] * jdstrand notes we have a way to add blocked syscalls to via the "security-override" mechanism, however, this particular one is explicitly denied [14:33] too* [14:33] :( [14:34] I'm wondering if the "hacked up armhf, forced to ARMv6 instead of v7" part is the problem [14:35] maybe the syscall number is different somehow?? [14:35] that was what i thought ... [14:35] tyhicks: the oracle JVM runs fine on raspbian on the same machine (raspberry pi 2) [14:35] D_Cent: what is the oracle JVM version? [14:36] tyhicks: they only put the major version (8) into the package name [14:36] ok [14:40] D_Cent: I pulled down the tip of the jdk8u tree (http://hg.openjdk.java.net/jdk8u/jdk8u/) and I'm still not seeing open_by_handle_at() being used [14:41] D_Cent: I'm pretty convinced that nothing is using that syscall and there are other low level issues at play around syscall numbering [14:42] tyhicks: is there a way to make sure? [14:43] D_Cent: I can try to find the source of the kernel that you're running [14:43] tyhicks: or i'll try the openjdk package from here: https://launchpad.net/ubuntu/+source/openjdk-8 [14:44] D_Cent: you can try that but don't spend too much time on it [14:44] Hello, I'm trying to get a better understanding of Ubuntu Snappy. I'd like to know how the system image is put together (I guess this is made from debs) and how the "ubuntu-core" package that list listed by "snappy list" is created. I looked around on launchpad, but I'm a bit lost. [14:44] D_Cent: I don't think it'll help since I think the problem is lower in the stack than openjdk [14:44] tyhicks: fyi, http://paste.ubuntu.com/10879065/ [14:45] tyhicks: do you have a moment to go through that with me? [14:46] mvo, hey, you around? [14:46] tyhicks: well, a few moments [14:46] jdstrand: yeah, we should talk through that diff soon [14:46] D_Cent: what kernel version? `uname -r` [14:46] jdstrand, o/ do you know, by any chance, if the snaps define "hooks" in their manifest, or the "hooks" is just a click thing? [14:46] tyhicks, he is not using openjdk but oracles java for RPi ... ;) [14:47] nessita: hooks are click only [14:47] jdstrand, great, thanks [14:47] (white lie-- click-apparmor is still a hook, but that will be removed in coming weeks [14:47] ) [14:47] ogra_: uhh... happen to have a link to that source? [14:48] thecomedian: 3.19.1-4-generic-bcm2709 [14:48] woops [14:48] tyhicks, no, i just followed the conversation before you joined ... i guess D_Cent has one though [14:48] thecomedian: 3.19.1-4-generic-bcm2709 [14:48] tyhicks: 3.19.1-4-generic-bcm2709 - now i got that right [14:48] (and i doubt there is source .... being oracle ) [14:48] lol [14:49] thecomedian: sorry, auto completion by irssi ;) [14:49] np :) [14:49] tyhicks, next time you need to know D_Cent's kernel version, ask thecomedian ... he has it spare ... twice :) [14:49] :) [14:50] :-P [14:50] hehe [14:50] tyhicks: okay, the openjdk doesn't make it better [16:00] bbl [16:01] greetings [16:03] asac: We keep finding the issues with the boot partition getting corrupted in Snappy. Has someone addressed this in newer versions of snappy for the BBB? [16:08] davidcalle: hi - I've just noticed that https://developer.ubuntu.com/en/snappy/guides/filesystem-layout/ is outdated. The latest details are in http://bazaar.launchpad.net/~snappy-dev/snappy/snappy/view/head:/docs/system-updates.rst [16:09] davidcalle: do we plan to put that doc up as a separate one at some point? [16:13] davidcalle: bug raised - https://bugs.launchpad.net/snappy-ubuntu/+bug/1448203 [16:47] sergiusens: hey, can you add this to your webdm profile: '@{PROC}/sys/net/core/somaxconn r,' [16:47] sergiusens: see snappy-dev@ [16:48] sergiusens: there is another denial that we should address as well [16:53] slangasek: fyi: [16:53] $ sudo snappy update [16:53] Installing ubuntu-core (36) [16:53] Starting download of ubuntu-core [16:53] 136.29 KB / 136.29 KB [=================================================================================] 100.00 % 3.35 KB/s [16:53] Done [16:53] Failed to run command '/bin/mount -obind /boot/uboot /writable/cache/system/boot/uboot': mount: mount point /writable/cache/system/boot/uboot does not exist [16:53] (exit status 32) [16:54] I think that might be what is reported in the bug on upgrade problems [16:54] (that is a bbb) [17:00] jdstrand: yes, it's certainly the same bug. what was your upgrade path on this system? [17:01] after one update on the stable channel, I've got /boot/efi and /writable/cache/system/boot/efi which I don't think were there before. I also have /boot/uboot still correctly in place [17:01] slangasek: r33 trying to go to r36 [17:02] jdstrand: and r33 was the initially installed version? [17:02] slangasek: note, I've tried several times to upgrade [17:02] ok [17:03] slangasek: actually, I think I started on r30, got to r33, then tried r36 [17:03] slangasek: not sure if you say my other comments in that bug-- previous attempts had umount errors and autopilot errors in syslog [17:04] s/say/saw/ [17:05] ok [18:01] What is the intended behaviour if an app specifies a framework that is not installed? Resolve the dependency by installing the missing framework? Fail, and inform the user what is missing? [18:34] D_Cent: Hi - I got pulled into something else for a while but I just got a chance to look at the kernel sources that you're running [18:35] D_Cent: it looks like name_to_handle_at is syscall 370 there, too [18:35] D_Cent: however, I still think something odd is going on and don't feel comfortable white listing that syscall until we see the same behavior on one of the officially supported platforms [18:36] D_Cent: could you please file a bug against ubuntu-core-security so that we can track the issue? [18:39] Hi, can anyone hell me? I tried snappy 15.04 stable and edge (in kvm). And i want to try the webdm, but there is no service which listen in a TCP port except ssh. [18:39] vmayoral|pc: not sure which version you are using [18:39] vmayoral|pc: but we surely invested into making this pretty reliable [18:40] HoloIRCUser2: we are working on making webdm work on 15.04 right now... in a couple days an update will be in sotre that will bring the webserver back [18:40] Help not hell ^^ [18:40] HoloIRCUser2: its fine... i didnt even read "hell" until you mentioned it [18:41] HoloIRCUser2: https://developer.ubuntu.com/en/snappy/guides/webdm/ read the box on the right [18:42] :) [18:42] ADAC: thank you very mich! [18:42] HoloIRCUser2: in kvm you need to set the port, you'll see other examples of it. [18:42] welcome! [18:42] Lool, German Android keyboard [18:42] davmor2: that too, but webdm we preinstall doesnt start the server because its not compatible with latest snappy tooling yet... had to make that decision to get base system rock solid for release [18:43] buut couple days it will all look great and even better than before [18:43] asac: yeah I got hit installing it and couldn't figure out why I couldn't access it [18:43] HoloIRCUser2: android keyboard? wow... guess you try snappy on your laptop right now? :) [18:44] * asac uses his laptop for ubuntu core amd64 now [18:44] davmor2: i am sure sergio is hacking on the plane right now to get us stuff back [18:44] :) [18:44] vmayoral|pc: would you mind trying with the released image? [18:44] or rather 15.04/edge [18:44] if you want bleeding edge from stable [18:45] vmayoral|pc: so many things did land in last couple weeks that you surely want to update [18:45] davmor2: i connected to the console and searched with netstat for listening ports. I know what you mean. I am using bridge and not a internal network for the guests [18:45] jdstrand: what was your upgrade series to get into that state? [18:46] slangasek: you think you can try the upgrade path 30 -> 33 -> 36? i think its about the same kickinz1 had [18:47] jodh: can you provide an update to just filesystem doc? and at best integrate that as a separet md [18:47] we want one that is just about that [18:47] the system upgrade is good, but should refer to the spec that is just about that at best [18:47] thx [18:48] btw, interesting discussion going on here: http://www.phoronix.com/forums/showthread.php?117235-Ubuntu-s-Desktop-Next-Switching-From-DEBs-To-Snappy [18:48] asac: sorry was in a meeting [18:48] some folks seems to get it [18:48] jdstrand: i just asked 2 minutes ago :) [18:48] asac: flash r30, upgrading to r33, tried to get to r36 [18:49] I noticed autopilot errors after r33 [18:49] r30 to r33 was ok [18:49] if there were errors, I didn't see them [18:49] (there weren't on the console for sure) [18:49] right we must not send an update to the stable channel until we have figured [18:49] slangasek: did you pull 3? [18:50] just triple checking :) [18:50] I would agree with that [18:50] (being cautious) [18:56] asac: which box do you mean, I can't find such box ^^ [19:02] tyhicks: hey, thank you very much for your help! of course, i'll do that as soon as possible! [19:02] D_Cent: thanks! === kickinz1 is now known as kickinz1|afk [19:16] Hi, is there any place where I can learn how the ubuntu-core system image is put togehter? I have been looking for a launchpad repo that has all the tools that are used, but could not find anything. [19:47] blackout24: so we use our official infra to do that which is not very nicely documented [19:47] nor available [19:48] blackout24: we use livecd-rootfs [19:48] afaik [20:36] sorry, didnt see any pings if there were any :) [20:55] slangasek: so i am in a armhf click chroot ... and i have libssl-dev:armhf installed and i have an autoconf/make project that doesnt find it without me giving very strong hints... [20:55] slangasek: isnt there some magic supposed to be that does all that for me? like setting CONFIG_SITE=/etc.. ? [20:55] this doesnt do anything for me ;/ [20:56] i even ran autoreconf to ensure i ahve all the latest stuff [20:56] but nothing [20:58] ok guess i really have to set libdir manually [21:21] slangasek: figured it. ignore