=== ev_ is now known as ev [13:01] I have started using snappy [13:02] yay [13:02] on a banan pi board.. I want to use that one as nfs server [13:02] so the interesting stuff was boring.. it just works [13:03] i took a beta image from lemaker .. with 4.2 kernel.. so no graphics drivers [13:03] hmm, i wonder how up to date the banana pi is wrt new image technology [13:03] (the bootloader handling and setup of things has changed a lot since the last banana pi image i know) [13:04] release: ubuntu-core/15.04/edge [13:04] well, that only reflects the userspace [13:04] ok .. not the device part [13:04] right [13:04] i was wondering if there is a way to switch release channels.. [13:05] we keep the stuff backwards compatible so you could have a very old setup, depends on th3e person who does the device part [13:05] and if he/she kept it up to date [13:05] hm from september [13:06] ah, that does sound decent [13:06] i thought about buying another one for other purposes.. and getting the mali drivers to work [13:07] yeah, we're still quite behind on any graphical stuff [13:09] for nfs server I started to create snapcraft.yaml file that pulls in deb files for nfs.. and some libraries.. [13:10] i am not pulling in a few libraries that i already found in the core image.. is that ok? [13:11] or should everything apart from libc and pthreas be duplicated in the snap? [13:12] the latter [13:12] nobody can guarantee that any libs stay in the core image [13:22] ok.. [14:36] is there a syntax in snapcraft to move files around, that were pulled in from debs? [15:08] anpok_, the copy plugin copies all contents of the stage packages [15:09] http://bazaar.launchpad.net/~ogra/+junk/ircproxy/view/head:/snapcraft.yaml here is a package that uses deb contents [15:37] hi guys, I'm trying to get an rPi to run as a webserver with snappy, but I have a hard time finding out how to do it. On a regluar Ubuntu Server you just install Apache and MySQL with apt-get, but it doesn't seem to work on this one. Please help. [16:12] ogra_: oh ircproxy was another thing i wanted to do [16:55] anpok_, i plan to upload it during the holidays, it is easy to build yourself though, just bzr branch and run snapcraft in the toplevel dir [16:56] it can be configured via "snappy config" (so it weill hook into the REST api later which will make it easy to intergrate it into UIs etc) [18:12] enoch85, you would need to bundle apache etc. in the .snap itself [18:12] kyrofa, Kyle? [18:12] enoch85, indeed :) [18:14] kyrofa, ok, hmm... I been struggling with this for a day now, and I still haven't figured out how to put the boot on the SD card and root on HDD, the filepath (setup) that Snappy offers, differs from all the guides I've tried [18:14] kyrofa, hey btw! :) [18:15] enoch85, haha, hi! Okay, and this is to enable ownCloud, yes? [18:15] kyrofa, sec, will send you a link [18:15] enoch85, so I've run this type of ownCloud setup for years, and I typically use the SD for the OS, but use the HDD for ownCloud's data [18:16] kyrofa, this is my mission: https://owncloud.org/blog/update-about-the-western-digital-and-owncloud-pi-project/ [18:17] kyrofa, aah ok, but what about the mysql and apache config? [18:17] kyrofa, I read that small writes to the SD card is bad practice [18:18] enoch85, dont put the OS on the SSD ... instead format the SSD as ext4, label it "writable", remove the "writable" label from the old writable partitions and copy the content to the SSD ... then reboot [18:18] s/partitions/partition/ [18:18] ogra_, we're talking about the SD card in the rpi2 [18:18] yeah [18:18] leave the readonly parts there [18:19] and move the writable partition to the ssd [18:19] ogra_, ah, interesting idea [18:19] by simply moving the label and data over [18:19] we mount the partitions by label ... so thats pretty easy [18:20] enoch85, that ^^ would make the SD lifetime quite a bit longer [18:20] what is important is that you copy the data ... there is some cloud-init metata data thats required to configure the user on boot .... you wont get in without that in place [18:20] ogra_, thanks! kyrofa that's what I thought [18:20] *meta [18:21] ogra_, all this is new to me, so I would really appriciate a guide of some kind, or at least the commands of doing this [18:21] note though that USB2.0 is limited to 24MB/s ... the disk throughput wont be stellar [18:21] ogra_, yeah, I know, but this is what I have to work with [18:22] yep [18:22] enoch85, you might want to start walking before you run though-- perhaps focus on getting owncloud working before optimizing? [18:23] enoch85, since you're investigating apache and mysql, I'm assuming you're looking to make an owncloud .snap sans Docker, correct? [18:28] kyrofa, I'm one of the maintainers of the ownCloud VM, and I have provided a VM from my site (www.techandme.se) since 2014, so I'm familiar with Ubuntu Server since before. A couple of days ago I got an email from Frank that asked me if I thought it was a good idea to make the rPi appliance (with) snappy. I thought he meant that the appliance should *be* snappy, so I said yes - and now I'm here trying to figure out how to get Ubuntu [18:28] Snappy to run well as a webserver with ownCloud on Apache and MySQL and all the other needed dependencies. :) [18:32] kyrofa, then if that means running a Docker container, then yes. [18:32] enoch85, yeah, Snappy/Ubuntu Core is a bit different than good-old Ubuntu Server. So normally you'd expect to simply install the apache, mysql, and php packages, extract the owncloud tarball, and start running (more or less), right? [18:33] * ogra_ always thinks the snappy app confinement is enough to shield apps ... no need for extra container overhead imho ... [18:33] especially since it eats you alive on a rPi [18:33] Yeah, not something I'd recommend either, but that's the only ownCloud .snap that exists right now [18:34] yeah [18:34] enoch85, .snaps differ from .debs in a number of ways, but a big one is that .snaps must include their dependencies [18:36] enoch85, which means making an ownCloud .snap "the right way" would be putting apache/php/mysql etc. in a .snap with ownCloud configured as well [18:36] * ogra_ likes to see snaps as project packages ... the focus isnt so much on the actual software itself but more on the feature and functionality a snap provides [18:36] Indeed. enoch85 think of .snaps as deployment solutions for a product [18:37] enoch85, which is why it's such a good fit for this project. When a new version of ownCloud is released, or you find a bug in the config, you can release a new .snap with the problem fixed, and then the whole thing can be updated transactionally [18:38] enoch85, if you've got Ubuntu Core running on the rpi2, I suggest you begin looking at Snapcraft for putting the pieces together [18:39] enoch85, I'd be happy to do this with you on Monday too, if you like (I only have a few minutes today, I'm afraid) [18:39] if you look at my upnp-server package in the store you can see that it ships lightttpd and minidlna in a bundle, each of them set up pre-configured for a single purpose ... in a future revision i could just replace lighttpd with apache without the user noticing (given i dont mess up the config indeed) [18:39] ogra_, great example, thank you [18:40] enoch85, perhaps eventually you decide apache2 sucks. Replace with nginx and release an update. End users don't see a difference [18:41] kyrofa, ogra_ so basically, what I would need to do is create a .snap with all the stuff pre-configured? and then just install it as a .snap in the root system of Snappy (that I moved to HDD) [18:42] well, pre-configured is up to you indeed :) [18:42] enoch85, yeah you got it [18:43] for the upnp-server case above i was following a very specific purpose ... i want a webdav share onn port 80 ... and every media file i drop in there should be served by upnp/dlna to my network ... [18:43] enoch85, so the challenge is coming up with an initial .snap. Fortunately, if you use Snapcraft you can use the .deb packages you're used to for apache and mysql etc. [18:43] so in that case you want some pre-config and a snappy config hook to adjust only related settings [18:45] kyrofa, ogra_ I'm not convinced yet. ;) I'm thinking of all the extra work that needs to be done rather than just using my old config scripts. And about the update, that is handled automatically today in my config via a cronjob that executes a script and make the necessary configurations: https://github.com/enoch85/ownCloud-VM/blob/master/production/owncloud_update.sh [18:45] why a cron script ? [18:45] kyrofa, ogra_ but I will sureley give it a try! you're kind to help! [18:45] isnt config migration something you only want to run on upgrades ? [18:46] ogra_, to obtain owncloud releases periodically, I would assume [18:46] ah [18:46] ogra_, yeah `php /var/www/owncloud/occ upgrade` [18:46] enoch85, indeed, I understand your hesitation [18:46] enoch85, consider this: what happens if this script fails? [18:46] that might need some special handling indeed ... since you would likely want snappy to actually handle the upgrades [18:47] to have the rollback feature and keep the download small due to using package diffs etc [18:47] ogra_, as the commands aren't the same on snappy as on ubuntu server then my old scripts would fail. And if I understand you correctly I would have to rebuild the .snap everytime I wouold want to update or make changes to the owncloud config. Then my questions is, who would maintain that? :) [18:48] why would you update the package for config changes ? [18:48] dont you want the user to do the config ? [18:48] (and keep/migrate it appropriately on SW upgrades) [18:48] ogra_, I think the vision is to have a product that can just be used, is that right enoch85 ? [18:49] kyrofa, ogra_ I agree that the scripts isn't totally failsafe, but during the 2 years I've used it I never run into any issues [18:49] kyrofa, yes [18:49] kyrofa, sure, i just dont understand the concerns about the config [18:49] kyrofa, that's right, my mission is to make a rPi image than will be shipped on the first 500 devices that WD will ship with ownCloud on [18:50] ogra_, maybe it's me that doesn't get how it really works, in my mind it seems comlicated [18:50] kyrofa, the target audience is noob users [18:51] your config lives in the writable space like in every other install [18:51] enoch85, plug in and go, my favorite [18:51] kyrofa, that's why everything has to work out of the box, and continue to work for years after that [18:51] enoch85, gotcha [18:51] kyrofa, haha ;) [18:51] if you upgrade there will be a backup of the old config and the migrated one ... [18:51] kyrofa, mine too [18:51] ogra_, [18:51] ogra_, ooh, sounds nice! [18:51] if you find you cant use the new config you can roll back to the last version of the app [18:52] enoch85, that's what I was talking about regarding the failure ^^ [18:52] (same fgoes for the OS itself, you can always go back to the last stable state ) [18:52] enoch85, your database was backed up, etc [18:52] ogra_, kyrofa like I said, I want to do this and I really appriciate your help! :) I'm just new to all this .snap thingy so that's why I sound uncertan [18:52] anyway, there is definitely no need for you to re-roll the package unless there is a new version you want to release [18:53] surely not needed for config changes ... [18:54] enoch85, you're in good company :) . And if you decide this isn't a good fit, we understand! Any chance you have some time on Monday to work on this together? [18:54] kyrofa, ogra_ so basically, .snap is like a "container" aka "app" that one would have to maintain, and make all the changes inside the .snap app..? to be clear, that includes updates to apache as well as apt-get isn't existing? [18:54] yes [18:54] enoch85, correct [18:54] kyrofa, sec, will check my schedule [18:56] * ogra_ gets evil looks from the GF on the sofa ... i guess i'll have to switch back to vacation mode ;) [18:56] kyrofa, working on monday, but are free on tuesday and wednesday :) [18:56] ogra_, haha :D [18:57] ogra_, this is what I do on my free time [18:57] enoch85, Tuesday works! [18:57] cool, I'll be online [18:57] kyrofa, btw, any time difference? [18:57] kyrofa, i'm in Sweden [18:57] enoch85, I'm on EST-- you? [18:57] Ha! Yes then :P [18:58] Time is 19:58 atm [18:58] kyrofa, 12 at your place? [18:58] enoch85, 13:58 here [18:58] kyrofa, ok, well, when I'm off I tend to sleep for a while :) [18:59] kyrofa, I will be prepared with a clean install of Ubuntu Snappy, and a freshly made partition of the WD HDD. :) [18:59] enoch85, I'm here steady from 0800-1600, just ping me? [18:59] kyrofa, yes, I'll ping you :) [19:00] enoch85, excellent :) . I look forward to it! [19:00] enoch85, alright I gotta run [19:00] kyrofa, ogra_ thanks for your help! talk to you on tuesday then. looking forward to get this baby up and running. :) === ljp is now known as lpotter === zbenjamin_ is now known as zbenjamin