The officially official Devuan Forum!

You are not logged in.

#1 Re: Installation » debootstrap » 2021-07-15 06:50:07

If it seems unlikely that a process still holds the file then please check the attribute of tha file

> lsattr /mnt/sda8/var/lieb/deepin/deepin_serurity_verify.whitelist

#2 Re: Devuan » Windows 11 will _enforce_ Secure Boot » 2021-07-07 06:45:06

Maybe there is anopther solution. Using ARM CPU's instead of amd64 like apple do could be the right step.
No TPM, no Intel ME, no meltdown and spectre and faster with less power consumption.

I would not be surprised if Distributors like System76, Tuxedo and others would bring out such devices if Win10++ came to the market.

#3 Re: Installation » [SOLVED] The perks of knowing » 2021-06-23 08:01:08

Hi

Sorry my mistake.

When I am talking about crontab then I am talking about the crontab file that sets up the environment.
But you are right; It is still the CRON command and logentry; The crontab log entries only occures when you execute the crontab commant
e.g. 'crontab -l' or 'crontab -e'

What I mean is if you execute the command from the crontab file in a statndard shell than there are a lot of environment settings already working
that came from /etc/profile, /etc/bash.bashrc, .profile, .bashrc or any other envirnment files that will be called on login or console opening.

cron on the other hand has by default NO environments setup so anything that is needed by a command has to be setup by the command itself.
(or in the crontab file but that's another story)

This is most of the time the reason why a command that works in a standard shell will fail in a cron call from the crontab file.

#4 Re: Installation » [SOLVED] The perks of knowing » 2021-06-22 11:36:06

While backintime fails in your crontab but is working in a standard shell it has something to do with the environment that is used by python inside the crontab.

#5 Re: Installation » [SOLVED] The perks of knowing » 2021-06-22 10:08:08

This error looks very stange and maybe one of your installed python package is corrupted.

the line
'from time import sleep'
is a core python function to import an external package (in this case the time utils lib)

First of all you should test if the command from the crontab is working on a standard shell. The cron environment is sometimes very special.

If this is also not working  you could try the following:
start python2 on a shell and execute 'from time import sleep'
If this fails then the problem is in the python installation.
But it is working then it means that the backintime package has a problem.

#6 Re: Installation » runit scripts » 2021-06-16 13:12:12

Hi,

i am using runit as init service and have running some service as 'core' runit scripts now.

I had some issues with the runit version in devuan (2.1.2-25) which have been fixed with 2.1.2-40
So I have installed the version 2.1.2-40 (from the antix repo) and found a behavior thats sound silly.

When I install a new service (e.g. update-service --add cron) that contains a log part then the link for the supervise folder
(e.g. log/supervise linked to /run/runit/supervise/cron.log) will be deleted and replaced by an (empty) supervise folder.

All fiiles (control, lock, ok, pid, stat, status) will stay in the /run/runit/supervise/cron.log folder and the newly created
/etc/sv/cron/log/supervise folder is empty. I can delete those folder and recreate the link but on the next reboot it will be reverted.

This doesn't happen to the supervise link of the service itselfs. (e.g. /etc/sv/cron/supervise will be linked to /run/runit/supervise/cron
and is not changing)

Where can I set the basefolder for the supervise folders for logs so they will work  as the supervise folder of the services itselfs?

EDIT: I got the runit version from bullseye (also 2.1.2-40) and it is the same behavior.

#7 Re: Installation » runit scripts » 2021-06-02 07:46:05

Hi Lorenzo

Thanks for the hint. I have cloned the repo and have taken a (deep) look into it.
I will change some things because it is perfect for cloud and container environments where the vm is often destroyed and recreated but is IMHO not perfect for real servers/desktop. E.g. every initscript is (re)reating the symlink from /etc/init.d/* to /bin/sv what is something that should be done by a debian package or a separate install script.

Lorenzo wrote:

As long as we use sysv's initscripts for boot it works exactly as in sysv: if something is really broken during boot you'll get an emergency shell, otherwise it will spit error messages on the console and try to proceed with the boot sequence.

So it is still best practice to check for all necessary depencies.

Lorenzo wrote:

Implement a set o runit boot-scripts is very low priority on my TODO list simply because the advantages are very few compared with the risk of regression. The amount of work required to have a runit boot-scripts that is on par with initscripts (works on several setups and all Debian arch, including non linux kernels) is too high and I'm focusing my work on other areas where with the same amount of work users will get far more concrete advantages.
Downstream like Devuan can use the BTS to request me to adjust the dependency in a way that makes it easier to experiment with their own set of bootscript, I would consider that a valid bug.

Yep, I totally agree with you. If stage 2 is working perfectly it may be time to step forward to change stage 1 and stage 3.
And stage 2 can be implemented as a separate independed debian package while stage 1 and stage 3 changes affects the runit debian package.

Lorenzo wrote:

Right now there is no such thing as facilities in runit (another valid bug on BTS). This on is on top of my TODO list and I need to sort it out before uploading the runit-services package. Runit doesn't need all sysv facilities, but it needs a facility when there are 2 or more alternative runit services that have to be checked for dependencies. Syslog is an excellent example.

Even systemd has not a perfect solution for this problem; it still needs HI instead of KI. wink

Lorenzo wrote:

Services that can log to stdout and use svlogd don't need to depend on syslog; same for services that have their own log system (like apache2). Simple rule of thumb: if there is a log/run that execs svlogd you don't need to depend on syslog.

Ahh, fantastic because this means there is a daemon independed way to administrate logfiles for different services to different locations. This is very useful on low memory mashine where I can pick only those log that I really need.

Thanks again for your explanations and your excellent work on the debian runit-script package.

#8 Re: Installation » runit scripts » 2021-05-26 07:20:58

Hi fsmithred,

thanks for your answers.

fsmithred wrote:

I don't know the answers to most of your questions, but there's a link to additional runscripts in this post:
https://dev1galaxy.org/viewtopic.php?pid=27300#p27300

This is the place where I found most of the answers and urls

I think these are the two main discussions of runit on our forum:
https://dev1galaxy.org/viewtopic.php?id=3716
https://dev1galaxy.org/viewtopic.php?id=3628

I even read them, too but there is very less informations about the runit scripts.
On the internet I found this https://github.com/cloux/aws-devuan/issues/1 but unfortunally the repos from cloudx are not longer valid.

I will try to take a look into the scripts from void linux for now.

#9 Installation » runit scripts » 2021-05-25 11:26:28

denk_mal
Replies: 5

I am using runit as init system but it seems to me that for now it is only a binary replacement for the sysvinit binary because the init.d/* scripts are executed as before. So I have started to replace them with real runit scripts.

I am using for now the debian scripts from Lorenzo Pulit
(https://salsa.debian.org/runit-team) as base for my devuan system.

  • Are there other, more devuan like sources for runit scripts?

I noticed that the runit stage 1 is based on the execution of rcS.d/* what looks ok for me.

  • Will runit stop if some of those initscripts will fail?

  • Does it make sense to implement real runit stage 1 scripts?

in the runit stage 2 every run script should check for depencies. sysvinit scripts contains a LSB header for facility. A sysvinit script could contain for example a $syslog facility that is resolvable with rsyslog or socklog.

  • what is the best way to transfer this to a runit init script?

  • Is it necessary to check for LSB facilities?

  • is it necessary to check for any possible facility e.g. that rsyslog has started OR socklog has started

  • or is there a common way to check for e.g a started $syslog daemon indepentely from the real installed syslog daemon?

And especially for $syslog; Is it necessary to check for it if there is a log/run script for the service?

Board footer

Forum Software