The officially official Devuan Forum!

You are not logged in.

#176 Re: Devuan » Debian has fallen. What now? » 2020-05-08 13:32:25

bimon wrote:
HevyDevy wrote:

there is also slapt for slackware which is similar to APT...

https://en.wikipedia.org/wiki/Slapt-get

But there is some strange situation with package dependency lists which a present only in Salix derivative.

It is not as good as debian's apt that is for sure but it is workable.

#177 Re: Devuan » Debian has fallen. What now? » 2020-05-08 13:29:56

there is also slapt for slackware which is similar to APT...

https://en.wikipedia.org/wiki/Slapt-get

#178 Re: Devuan » Debian has fallen. What now? » 2020-05-08 13:19:30

slackware is alright imo, i  think only one person is maintaining it too ( Patrick Volkerding ).

You can always uninstall packages with slackware to get a minimal system. Installing packages is not that hard either if you bother to learn how to do it, just sayin.

There is daily builds from this uk server as well. http://slackware.uk/people/alien-curren … rrent-iso/

slackware is one of the original linux distro's, its good to see it still around.

#179 Re: Installation » New install of Beowulf » 2020-05-06 11:37:50

Xfce4 has its own volume/control icon plugin so volumeicon wont be a default consideration imo.

Network may not be an issue it depends on how you connect to the net, generally most users connect via routers but via wifi, the source is the issue really. If you are connecting via wifi from say someone elses router and you cant get access to an ethernet port then it could be problematic. If on the other hand you own a smart phone you can connect via tethering which is a fairly simple procedure. That is my understanding of basic user problems when it comes to connection, wifi is usually a secondary consideration, ethernet the main consideration.

#180 Re: Other Issues » ecryptfs-utils » 2020-05-04 12:01:13

Ok thanks for that suggestion ralph and nixer i will give it a  "go" wink  I would rather have something in the apt repos than have to mess about building software from source.

#181 Other Issues » ecryptfs-utils » 2020-05-03 13:14:59

HevyDevy
Replies: 3

Ive recently discovered this software on another platform and wanted to use it on my devuan installation but unavailable in the repos, after some reading it seems systemd is potentially the cause. I just wanted to know if anyone here using devuan beowulf has been using this utility successfully ? Archlinux says that systemd is a potential issue to its use also.

Warning: Unfortunately the automatic unmounting is susceptible to break with systemd and bugs are filed against it.[2] [3] [4] [5] If you experience this problem, you can test it by commenting out -session optional pam_systemd.so in /etc/pam.d/system-login. However, this is no solution because commenting out will break other systemd functionalities.

https://wiki.archlinux.org/index.php/ECryptfs

Some back info.

https://bugs.debian.org/cgi-bin/bugrepo … bug=928956

considering the below script or else just use the git branch of ecryptfs-utils as im more familiar with this.

https://gist.github.com/mzpqnxow/ce8fbf … cd1d80d506

#182 Re: News & Announcements » Beowulf Beta is here! » 2020-05-03 11:37:59

I tested out the latest netinstall amd64 iso dated 26/4 and not sure if i missed a step or stuffed up the step, but it seems the installer completely misses dpkg-reconfigure locales. Had to manually fix this once installed to disk.

#183 Re: ARM Builds » ascii installer-ARM64 question » 2020-04-28 16:12:27

I could not tell you differences in the images hosted to those that are built via arm-sdk. Give it a go, spend a some time educating yourself on the subject matter.

I know alpine linux has ready images for raspi3 and instructions to create said images with a persistent installation. When i get an rpi3 i will probably be doing a lot of testing, but for systemd free i believe alpine linux might trump devuan all things considered.

https://alpinelinux.org/downloads/

#184 Re: ARM Builds » ascii installer-ARM64 question » 2020-04-28 11:44:54

Sorry i should have pointed the link to the correct sdk which is arm-sdk, its a fairly simple process as long as dependencies are met. I managed to do the live-sdk awhile back but will try the arm-sdk tommorow when i have some spare time up my sleeve.

https://git.devuan.org/sdk/arm-sdk

This will build you a image for use on a rpi3

#185 Re: Devuan Derivatives » Star 2.1.0 - Distrowatch review » 2020-04-28 06:37:18

Congrats, just read the review, sounds like a good distro for a beginner and experienced alike.

#186 Re: ARM Builds » ascii installer-ARM64 question » 2020-04-28 06:24:38

Bit of a miscommunication here i think. Im fairly certain those images are devuan ascii only for the raspberry pi not raspbian images.
I think the live sdk will source those files from the link in your op, not 100% certain. Im might give this a try myself as im thinking of getting an RPi3 to use as a netflix box.

edited for my dyslexia in typing wink

#187 Re: ARM Builds » ascii installer-ARM64 question » 2020-04-27 14:24:13

Ok so found some rather old arm64 embedded images that are still available, but from 2018.

https://mirror.leaseweb.com/devuan/devu … /embedded/

#188 Re: ARM Builds » ascii installer-ARM64 question » 2020-04-27 14:03:23

I installed raspbian many years ago on one of the rpi2's i think. From memory its a process of flashing the filesystem onto an sd card. Take a look at the lakka documentation, very similar. I haven't researched how devuan does it as i dont have an rpi anymore.

http://www.lakka.tv/doc/Alternative-ima … g-methods/

edit: looks like you would need to build your own image via simple distro kit?

https://devuan.org/os/distro-kit

#189 Re: Hardware & System Configuration » Conky on-screen formatting/layout » 2020-04-14 04:51:56

I forgot about hwmon inside conky so you could just use hwmon inside conky to get the needed formatting and it will be better than piping commands via sensors, awk and fmt. Just check in /sys/class/hwmon for the correct outputs as per below conky commands.

TEMPERATURES
-------------------------------------
Core0:+${hwmon 1 temp 2}°C      Core1:+${hwmon 1 temp 3}°C  |
Core2:+${hwmon 1 temp 4}°C      Core3:+${hwmon 1 temp 5}°C  |

#190 Re: Hardware & System Configuration » Conky on-screen formatting/layout » 2020-04-14 00:43:07

fmt is the command you want. https://linux.die.net/man/1/fmt

This is how i do commands for conky sensors, you may need to play around with the fmt (format) values and the awk values.

sensors | awk 'NR==3{print $3} NR==4{print $3} NR==5{print $3} NR==6{print $3}' | fmt -20

You dont need cut or grep commands, awk can do all the hard work itself.

edit: and the way you want it formatted should be below command.

sensors | awk 'NR==3{print $1,$3} NR==4{print $1,$3} NR==5{print $1,$3} NR==6{print $1,$3}' | fmt -30

#191 Re: Installation » [BUG] beowulf beta netinst. ISO does not configure locales or timezone » 2020-04-02 13:05:20

Head_on_a_Stick wrote:

^ The tzdata package was configured for me, did you see the options for localisation in the installer?

Yes i did see that but when the install was complete and i rebooted, date was showing actual coordinated universal time from memory as i chose UTC computer time settings. Not a big deal though, as easy fixed with dpkg reconfigure tzdata. Maybe i missed something but im sure i did the correct procedure as i have done before by setting the computer to use UTC and tzdata to Australia/Brisbane.

#192 Re: Installation » [BUG] beowulf beta netinst. ISO does not configure locales or timezone » 2020-04-02 12:41:06

I used the same iso and had the same issue with locales and also with tzdata not being set properly.

#193 Re: Devuan Derivatives » [MiyoLinux] New Releases Uploaded » 2020-04-01 07:13:45

Looks good Miyo, does icewm come with its own panel similar jwm or do you have to use something like tint2 or xfce panel?

#194 Re: Other Issues » [solved] firejail + firefox sound issue » 2020-04-01 03:08:52

fsmithred wrote:

Good job! That worked. Commenting 'nogroups' fixed it. I tried commenting 'noroot' but that didn't help.

Cheers, will mark as solved then.

#195 Re: Installation » How do I make a triple-boot system, starting with Devuan? » 2020-03-31 14:59:13

Do you want all 3 to be Devuan installations?

Why do you want a triple boot system?

#196 Re: Other Issues » [solved] firejail + firefox sound issue » 2020-03-31 12:23:18

Thanks fsmithred.

I think ive fixed the issue, dont really understand the problem though. Sound is now working with firefox firejailed.

See here: https://github.com/netblue30/firejail/issues/2042
and here: https://github.com/netblue30/firejail/issues/3303

"noroot removes all user groups, nogroups redundant"

in

/etc/firejail/firefox-common.profile 

go to line 40 and comment "nogroups".

see if that works for you ?

#197 Other Issues » [solved] firejail + firefox sound issue » 2020-03-31 08:01:07

HevyDevy
Replies: 4

Hiya all,

I dont usually ask for help but this one has me stumped. Up until today ive used firejail with firefox and the sound has worked fine using only alsa. I dont have pulseaudio installed. sound returns when i stop using firejail with firefox so ive narrowed it down to an issue with firejail but unsure how to fix or find the bug if there is one, any pointers where to start?

Im using the latest beowulf beta with no dbus , i dont think that should be the issue as sound returns when i un firejail firefox.

Has anyone else experienced this using firejail with firefox?

#198 Re: News & Announcements » Beowulf Beta is here! » 2020-03-21 10:42:56

fsmithred wrote:
HevyDevy wrote:
ralph.ronnquist wrote:

Beowulf beta "netinstall"  without network gives you nothing. Try using "server" or "desktop" rather.

Not sure i understand what you mean here? I have network connection, that being usb0?

In the past, netinstall isos would give you a small and functional base system if you installed without a network. The current netinstall isos won't do that. For an offline install, people should use the server or desktop installer isos or the live isos.

That explains it, thanks for that. I was able to get a working system with just standard system utils but i had to run dpkg --reconfigure tzdata and locales even though that should have been done at installation time.

#199 Re: News & Announcements » Beowulf Beta is here! » 2020-03-20 09:47:08

ralph.ronnquist wrote:

Beowulf beta "netinstall"  without network gives you nothing. Try using "server" or "desktop" rather.

Not sure i understand what you mean here? I have network connection, that being usb0?

#200 Re: News & Announcements » Beowulf Beta is here! » 2020-03-20 07:38:50

Not sure if the iso i downloaded was currupted or not but ive tried 4 times to install this release. The checksum matched up ok to the iso.
I will download another iso and see if it happens again to rule out corruption. Before i go any further into details, has something changed with standard system utilities in tasksel as in the ascii installation i did not choose anything in tasksel and the installs went fine (wanted minimal system setup). Do i need to keep that box ticked? the iso was the amd64 netinstall.

I cant get any debug info from the boot messages as they dont get logged, but something along the lines of checkroot.sh failed and the system becomes read only. I have installed openrc and sysv inits.

edit: the hostname is missing when it finishes booting from grub, so there is a system there just malfunctioning one. Another oddity is that i cant backspace, when i do the cursor just moves forward. Im just testing on a partition too so these installs are not critical or anything.

Board footer

Forum Software