You are not logged in.

#41 2018-12-30 09:10:20

jalfonsi
Member
Registered: 2018-05-26
Posts: 22

Re: BunsenLabs Hydrogen ARM edition?

I've just checked Kali website. As far as I know Kali is rolling release. They provide arm images and also a very recent experimental 64 bit for Raspberry. There's also a very interesting post with Openbox optimization
https://www.kali.org/tutorials/my-custo … tribution/
So maybe a rolling release arm image for Raspberry with BL Openbox...it would be really fancy.

Offline

#42 2019-04-04 15:38:42

jalfonsi
Member
Registered: 2018-05-26
Posts: 22

Re: BunsenLabs Hydrogen ARM edition?

Hello, I have successfully installed Bunsenlabs Helium packages (all with architecture 'all') on top of a minimal Openbox setting with roxterm-gtk3 terminal, geany and pcmanfm running on Raspbian Lite Stretch (through PINN online installer which is a great commodity for writing your chosen system to SD card). Then I added Synaptic and Gdebi and other missing packages (xfce4-screenshooter) so that menu launchers could work. Only jgmenu for armhf is missing. I'm willing to introduce it to my students next year because it allows no distractions from coding.
It would be nice that BL developers could provide a script that downloads BL keyring, adds BL repos to sources.list and installs automatically all required packages to have a fully working BL Raspbian flavour. This could be easily applied also to forthcoming Raspbian Buster with Lithium as well as to other architecture (see arm64 for Pine Book for instance).

Offline

#43 2019-04-04 15:49:23

hhh
Gaucho
From: High in the Custerdome
Registered: 2015-09-17
Posts: 16,155
Website

Re: BunsenLabs Hydrogen ARM edition?

I'd love to see a screenshot of your desktop!

BTW, there is a build for RaspEx build for several Raspberry models that was built by someone else that uses a combination of Ubuntu and BunsenLabs Helium...

https://raspex.exton.se/?p=931

https://news.softpedia.com/news/you-can … 3168.shtml


I don't care what you do at home. Would you care to explain?

Offline

#44 2019-04-04 16:22:03

jalfonsi
Member
Registered: 2018-05-26
Posts: 22

Re: BunsenLabs Hydrogen ARM edition?

Pure Debian magic!
Actually it's a photo but I don't see here how to upload photos to posts...

Last edited by jalfonsi (2019-04-04 19:32:40)

Offline

#45 2019-04-04 18:49:58

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: BunsenLabs Hydrogen ARM edition?

jalfonsi wrote:

...
Actually it's a photo but I don't see here how to upload photos to posts...

You need to post a link to an image host. Many of us here use scrot.moe


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#46 2019-04-04 19:30:56

jalfonsi
Member
Registered: 2018-05-26
Posts: 22

Re: BunsenLabs Hydrogen ARM edition?

Offline

#47 2019-04-04 19:42:03

stevep
MX Linux Developer
Registered: 2016-08-08
Posts: 381

Re: BunsenLabs Hydrogen ARM edition?

The openSUSE Build Service will build armhf binaries for Stretch, if any are needed. It's called "armv71" there, but the packages come out as armhf.

I still can't get pbuilder or sbuild  to do it in Stretch.

Offline

#48 2019-04-04 20:03:23

damo
....moderator....
Registered: 2015-08-20
Posts: 6,734

Re: BunsenLabs Hydrogen ARM edition?

jalfonsi wrote:

After uploading your image, scroll down the embed codes and copy/paste the thumbnail link in your post. Like this...
20190403_181524_HDR.th.jpg


Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt  «» BunsenLabs on DeviantArt

Offline

#49 2019-04-16 14:03:35

jalfonsi
Member
Registered: 2018-05-26
Posts: 22

Re: BunsenLabs Hydrogen ARM edition?

twoion wrote:

Of course packages which are architecture 'all' (most of our packages) will work. When using these on ARM, you'll not get updates to tint2, jgmenu and the flashplayerplugin fix for Firefox which be now are shipping but otherwise you'd be fine.

I just recompiled jgmenu, tint2 and flashplayerplugin from deb sources in the BL deb repository using dpkg-buildpackage and I got deb packages generated for armhf!
So it should be quite easy for BL Lithium as well with next Raspbian Buster.

Last edited by jalfonsi (2019-04-17 16:41:27)

Offline

#50 2019-08-12 21:57:52

stevep
MX Linux Developer
Registered: 2016-08-08
Posts: 381

Re: BunsenLabs Hydrogen ARM edition?

twoion wrote:
jalfonsi wrote:

Hi all. I have a suggestion. Given that Raspbian was updated just one month ago, what about adding Openbox and Bunsenlabs ARM package repos to it and having a nice iso for Raspberry Pi? Of course with official BL customization. Kali Linux already provides images for Raspberry...don't know however if they're rolling release

Binary packages from BL Helium + Stretch-Backports are not available for Debian ARM archs at the moment because the pbuilder crosscompiling scripts for that were/are broken in Debian 9. I can look again sometime but I don't think it got fixed.

Of course packages which are architecture 'all' (most of our packages) will work. When using these on ARM, you'll not get updates to tint2, jgmenu and the flashplayerplugin fix for Firefox which be now are shipping but otherwise you'd be fine.

I've just managed to get pbuilder on a Stretch base to build armhf and arm64 packages by adding this to my ~/.pbuilderrc file:

if [ "$ARCH" == "armhf" ] && [ "$(dpkg --print-architecture)" != "armhf" ]; then
    DEBOOTSTRAP="/usr/sbin/qemu-debootstrap"
    PBUILDERSATISFYDEPENDSCMD="/usr/lib/pbuilder/pbuilder-satisfydepends-apt"
fi

if [ "$ARCH" == "arm64" ] && [ "$(dpkg --print-architecture)" != "arm64" ]; then
    DEBOOTSTRAP="/usr/sbin/qemu-debootstrap"
    PBUILDERSATISFYDEPENDSCMD="/usr/lib/pbuilder/pbuilder-satisfydepends-apt"
fi

Since we at MX Linux have received some tenders from a inexpensive arm64 laptop maker about a spin for their machine.

$ARCH comes from the build command, adapted from this instructional:
https://jodal.no/2015/03/08/building-ar … -pbuilder/

OS=debian DIST=stretch ARCH=armhf pdebuild --debbuildopts "-jauto"&& exit

Woot!

Last edited by stevep (2019-08-12 22:05:41)

Offline

#51 2019-08-13 05:56:00

jalfonsi
Member
Registered: 2018-05-26
Posts: 22

Re: BunsenLabs Hydrogen ARM edition?

These are very good news! Last month I bought that inxepensive arm64 laptop myself, too. Armbian already provides command line iso for that, so one needs only to put BL packages on top of that!

Offline

#52 2019-08-13 15:25:19

bigbenaugust
Member
From: the 704 / KCLT
Registered: 2017-05-20
Posts: 179

Re: BunsenLabs Hydrogen ARM edition?

where is the "Like" button? I was thinking about an arm64 lappy myself...


--Ben
BL / MX / Raspbian... and a whole bunch of RHEL boxes. :)

Offline

#53 2019-12-23 13:43:19

bard
Member
Registered: 2019-12-22
Posts: 8

Re: BunsenLabs Hydrogen ARM edition?

Hi all,

Just letting you know I started a new topic about Lithium ARM edition. Hope we can make it even more popular :-)

Offline

Board footer

Powered by FluxBB