You are not logged in.
How is your ISP blocking you? I had one site I use falsely blocked in my IPS's DNS servers. I got round it by changing /etc/resolv.conf to use 1.1.1.1 as nameserver. That may be an easier way round.
But I'd be interested in knowing how to install tor. So I can access sites like washingtonpost.com without silly messages about GDPR compliance (in their case the button to click to say I want access doesn't work at all!)
Chris
Pressing control-S just after the messages come out might enable you to read them (then control-Q to continue).
If that fails could you take a video of the console during shutdown, then play it back slowly?
Chris
Seeing the cron log reminded me that cron tries to email output from cron jobs to the user it runs as. So if you don't want the emails just redirect the output to /dev/null (much as the output from the debian-sa1 job is). Or redirect it to a file so you can see it if you want.
Chris
Hello,
I had a lot of "fun" getting CUDA working under Devuan. See the following threads for details:
https://dev1galaxy.org/viewtopic.php?id=2299
https://dev1galaxy.org/viewtopic.php?id=2259
And search the forum for keywords like CUDA, Nvidia, nouveau, etc.
Chris
How long did you wait before pressing the power button? I've heard of delays of a few minutes during shutdown, could that be happening here? That's a fairly easy thing to test.
Look in the BIOS to see if there are any options that might affect shutdown processing (or support for different OSes).
What make and model is your laptop? Search for reported problems with that make and model (and BIOS version).
Look in syslog etc to see if any interesting messages are there.
Chris
ESR is one of the better known figures in the UNIX world. You can read most of his writings at http://www.catb.org/~esr/ (several are well worth reading).
He made several good points about how to make Devuan easier to install. In particular having one and only one installer per architecture that then asks what sort of install you want to do and if you want to install non-free code. If you must keep old versions available then clearly label them as deprecated (and don't put them on the home page).
He could have been a bit more tactful but that's no reason to reject everything he said.
A magazine cover disk may need to be more specialized since space is limited (they may want to have more than 1 distro on a single DVD) and it should be usable to install on a system that does not have internet access. But the people building the cover disk should be more experienced than the average user.
Chris
Try adding set-x as the second line of the script. That should produce tracing output from the script which will show what it's doing.
Chris
For messages coming out during the bootup try control-s to freeze screen output and control-q to restart it. That should stop them long enough to copy them down (or take a photo of the screen).
Chris
It's probably the program invoked by the script that's causing the segfault.
Try making a copy of the script and changing line 68 to:
echo "$dirname/$appname" "${params[@]}" -style cleanlooks
Run that and it should tell you what program it's actually trying to run. Then try searching for problems with that program (start by running file against it, that will tell you what sort of program it is).
Chris
Check what /etc/nsswitch.conf says for hosts (see the man page for nsswitch.conf for what it means).
Check /etc/resolv.conf (that tells the system which DNS server(s) to use).
If there is more than 1 DNS server in there try commenting out all but one and checking if it works with that one.
If there is only one them comment it out and add nameserver 8.8.8.8 (that's google's nameserver).
Chris
Try:
ping -c 1 deb.devuan.org
That should do the DNS lookup the same way as apt-get does.
Chris
It's worth fighting for access to source code whenever you can.
Eg if you are involved in a product liability lawsuit make sure your side's lawyers ask for full source code during the discovery phase. That makes life harder for whoever owns proprietary code (it's usually easy to find a few silly bugs in any sizeable amount of source code which makes them look bad in court).
Chris
Could you set the clock back on the server? If it's only used as a mirror to install Linux from it doesn't matter if it has the date wrong.
Chris
Running chmod 755 /var/log/lost+found as root will allow all users to read /var/log/lost+found but not put anything in it. lost+found is where fsck puts files it has recovered from a damaged filesystem so there is usually nothing in there. I would not worry about allowing read access to it unless I have sensitive data on the system that not all users should be able to read.
Chris
Hiding the password is only useful if someone might be watching the screen (it doesn't help if they are watching your fingers as you type a password in). But it's impossible for a password manager to know if someone might be watching the screen, so they always assume the worst.
Chris
From the log
Jul 15 21:36:55 BOSSDESK kernel: [28145.560311] [ pid ] uid tgid total_vm rss nr_ptes nr_pmds swapents oom_score_adj name
...
Jul 15 21:36:55 BOSSDESK kernel: [28145.560366] [ 864] 1000 864 7501335 1891569 13923 33 5141580 0 mate-settings-d
...
Jul 15 21:36:55 BOSSDESK kernel: [28145.560437] Out of memory: Kill process 864 (mate-settings-d) score 968 or sacrifice child
Jul 15 21:36:55 BOSSDESK kernel: [28145.560449] Killed process 864 (mate-settings-d) total-vm:30005340kB, anon-rss:7566276kB, file-rss:0kB, shmem-rss:0kB
So I think mate-settings-d has a bug. It should not have that large a RSS (Resident Set Size).
Chris
From the (CRON) error (can't fork), the oom-killer and Out of memory: messages it looks as if your system ran out of memory. How much ram and swap space does it have? What does free -mt say when it's running OK and when it's having problems?
Chris
The way I would have done it it to make all systems that act as servers have a fixed IP address. Then systems connecting to them can use that IP address (preferably an entry in /etc/hosts).
First check what range of addresses your DHCP server can hand out (eg 192.168.1.2 to 192.168.1.200). Then give the server an IP address that's not in that range. You get problems if two systems try to use the same IP address.
Or configure the DHCP server to give the relevant system a fixed IP address.
You may not need this advice now, but someone else might find it useful.
Chris
To make it work the client needs to know what IP address vmdevuanr1 has. The server will know it's own IP address, probably as 127.0.0.1, so it will work there. The client needs to either have it edited into /etc/hosts when necessary (tedious manual work) or to be able to look it up in DNS.
What does /etc/resolv.conf contain? Mine contains:
nameserver 192.168.1.1
Which tells the system to ask my internet router (at 192.168.1.1) to resolve IP addresses. Try using your router as a DNS server as well as DHCP server. If it's already your DNS server look at it's admin screens to see if there's an option for it to resolve addresses it's handed out by DHCP. Or you may need to add a suffix to vmdevuanr1 in /etc/apt/apt.conf.d/proxy
Chris
See https://www.schneier.com/blog/archives/ … o_tra.html for details of a big hole in most browsers cookei handling.
Chris
Try ping vmdevuanr1 and host vmdevuanr1 on the system you ran apt update on.
(The "Could not resolve 'vmdevuanr1'" message sounds as if it is the key problem.)
Chris
First try:
ping -c 1 wiki.debian.org
on both systems. You should get something like:
$ ping -c 1 wiki.debian.org
PING wilder.debian.org (82.195.75.112) 56(84) bytes of data.
64 bytes from wilder.debian.org (82.195.75.112): icmp_seq=1 ttl=53 time=41.9 ms
--- wilder.debian.org ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 41.989/41.989/41.989/0.000 ms
Chris
how exactly are you "testing" those? We are continuosly checking all the mirrors behind deb.devuan.org and have not found any issue. You simply can't "point your browser" to those IPs, since you have to present a valid "Host: deb.devuan.org" header. If you know what I mean, you know how to work around it with wget/curl. If you don't, it's a bit too complicated to explain here. Basically, apt does the right thing, while your browser won't.
I was just pointing my browser at them, so ignore what I said. The 4 I listed showed a merged directory containing a dists directory with appropriate looking content, so I thought they were the only ones that would work. The rest appeared to fail.
Chris
Of all the IP addresses returned by host deb.devuan.org the only ones likely to work are:
5.196.38.18 - pkgmaster.devuan.org
185.203.112.44
31.220.0.151
37.187.111.86
Most of the rest don't have a /merged directory to serve. One just timed out when I was checking it.
Chris
My /etc/apt/sources.list contains:
## package repositories
deb http://pkgmaster.devuan.org/merged/ ascii main contrib non-free
deb http://pkgmaster.devuan.org/merged/ ascii-updates main contrib non-free
deb http://pkgmaster.devuan.org/merged/ ascii-security main contrib non-free
# deb http://pkgmaster.devuan.org/merged/ ascii-backports main
## source repositories
# deb-src http://pkgmaster.devuan.org/merged/ ascii main
# deb-src http://pkgmaster.devuan.org/merged/ ascii-updates main
# deb-src http://pkgmaster.devuan.org/merged/ ascii-security main
# deb-src http://pkgmaster.devuan.org/merged/ ascii-backports main
Checking what IP addresses we are using:
$ host pkgmaster.devuan.org
pkgmaster.devuan.org has address 5.196.38.18
$ host deb.devuan.org
deb.devuan.org is an alias for deb.roundr.devuan.org.
deb.roundr.devuan.org has address 195.85.215.180
deb.roundr.devuan.org has address 37.220.36.58
deb.roundr.devuan.org has address 46.4.50.2
deb.roundr.devuan.org has address 95.216.15.86
deb.roundr.devuan.org has address 91.121.196.103
deb.roundr.devuan.org has address 5.196.38.18
deb.roundr.devuan.org has address 130.225.254.116
deb.roundr.devuan.org has address 185.203.112.44
deb.roundr.devuan.org has address 31.220.0.151
deb.roundr.devuan.org has address 185.26.197.8
deb.roundr.devuan.org has address 200.236.31.1
deb.roundr.devuan.org has address 185.183.113.129
deb.roundr.devuan.org has address 141.24.220.40
deb.roundr.devuan.org has address 37.187.111.86
So pkgmaster.devuan.org points to one of the round robin addresses deb.devuan.org points to. So it should make no difference.
But I'm suspicious of the Connection failed [IP: 37.220.36.58 80] messages you got. And when I look at http://37.220.36.58/merged in a web browser I get a message saying The requested URL /merged was not found on this server.
Try temporarily using pkgmaster.devuan.org and see if that works. Or any other IP address that deb.roundr.devuan.org maps to.
Chris