On Thu, Jun 26, 2025 at 12:24:22AM +0200, Michael Tuexen wrote:
M> > And it worked for me on the stabweek revision in my VM.
M> Strange.
M>
M> Could you change in /etc/rc.d/devfs
M>
M> o*) for device in ${devicelist}; do
M> if [ -c ${device} ]; then
M> chown ${parameter} ${device}
M> fi
M> done
M> ;;
M>
M> to
M>
M> o*) for device in ${devicelist}; do
M> printf "own chown %s %s\n" ${parameter}
${device}
M> if [ -c ${device} ]; then
M> printf "performing"
M> chown ${parameter} ${device}
M> fi
M> done
M> ;;
M>
M> and run
M> service devfs start
M> and send the output of it?
I added '\n' to the second printf. I get:
root@bobrik:~:|>service devfs start
own chown root:network bpf
performing
own chown root:network bpf0
performing
root@bobrik:~:|>
--
Gleb Smirnoff