The officially official Devuan Forum!

You are not logged in.

#1301 Re: Other Issues » Ncurses » 2019-03-30 21:58:18

You do know how to leave an audience guessing wink

Perhaps you should test the waters at the freenode IRC #devuan as well, to increase the chances of running into someone else doing C with ncurses on both freebsd and devuan. It might be a more select group than this one.

#1302 Re: Off-topic » Gmail rejects messages from own server » 2019-03-30 21:37:12

I think that the most important problem is that I cannot resolve rDNS, as the IP is owned by my ISP

Maybe you've tried it already, but otherwise you should query your ISP about how to set up your reverse DNS. It should really be possible for you, especially as you are paying for having a static IP, but then again, every ISP is a company of its own.

#1303 Re: Devuan » Using Debian packages » 2019-03-30 01:26:36

@Head_on_a_Stick: You've got that advice backassed. It should be: don't pollute your system with flatpack.

#1304 Re: Devuan » ssh with a file manager??? » 2019-03-23 04:27:19

You might like to use sshfs, which lets you mount the remote file system as if a local directory tree. Then you can can browse them with your local file manager.

#1305 Re: Desktop and Multimedia » Tiny fonts » 2019-03-19 20:18:58

You may find qt5ct in beowulf. However installing it on ascii wants to pull in quite a few upgrades of other packages, and I wouldn't do it before fully dist-upgrading to beowulf (which still is some weeks into the future for me).

#1306 Re: DIY » run script after suspend » 2019-03-18 22:45:06

A quick review of the code suggests that "local" specializations should rather reside in /etc/pm/sleep.d than /usr/lib/pm-utils/sleep.d, but that's not the problem here (since the latter is the "program" place for such scripts). However, the order is important. Scripts run in the order of their filenames, sorted as per sort (with LC_COLLATE=C).

Thus, the first check is where in the list of sleep scripts your script ends up, and then you need to determine whether that's the wrong place, and if so, rename it so as to have it run earlier or later. Note, if I understand it right, the scripts are run in the sort order before suspending, and reverse to that when resuming.

btw, it's good to append a true to your script, to make it always return success instead of returning whatever the amixer command returns.

#1307 Re: Desktop and Multimedia » Avidemux and h264enc » 2019-03-18 21:28:14

Yes it's good to be weary about that. Important, really. Especially if you're unsure about how to recover if things break.

At the same time, avidemux is imo the very best tool for e.g., easily and quickly cutting out the ads in a tv streamed Barbie movie you have captured for your granddaughter. Since I have it installed and verified myself, I decided that the benefit of suggesting this action outweighed the general "badness" of proposing this repo mixing.

But you are right, the rule of thumb is still: "don't mix repos" .

#1308 Re: Desktop and Multimedia » Avidemux and h264enc » 2019-03-18 12:44:15

I did this by using www.deb-multimedia.org, where their stretch distribution is compatible with ascii. It's the usual process of adding the source, update, install their keyring, and then install the packages.

Thus, add to your sources

deb http://www.deb-multimedia.org stretch main

then

apt-get update

then

install deb-multimedia-keyring

then another

apt-get update

then

apt-get install --no-install-recommends avidemux h264enc

and then comment out the source line and update yet again.

That last step is a precaution, to avoid any "accidental" other installations from that repository.

#1309 Re: Hardware & System Configuration » Preventing module load at boot » 2019-03-15 23:12:07

Perhaps you're using an initrd and omitted/forgot you update it after making the black listing?

In any case, the following steps worked fine for me:

# echo blacklist psmouse >> /etc/modprobe.d/psmouse-blacklist.conf
# update-initramfs -u -k all
# reboot

(See man update-initramfs for details about that command)

Note, I know it's a good/better habit to also add a comment into the black listing file, to remind yourself about when/what/why you made that system correction, for the (possible) future day when you pull your hair about not getting psmouse loaded. I'm a bit lazy that way, and leave this as a reader's exercise.

#1310 Re: Installation » [SOLVED] disabling slim » 2019-03-12 06:34:32

guuml.dev1 wrote:

Where does this "hidden database" come from? As far as I know there was no written manual at all-

Not very new, but it was new to me too until some few years ago... start with $ man insserv, I think.

#1311 Re: Installation » [SOLVED] disabling slim » 2019-03-11 22:06:47

Note that "disabling" slim with update-rc.d doesn't uninstall it, and it can well be started and stopped manually also after "disabling", which only means to remove it from the boot sequence.

Manual removal of the rc?.d links (that guuml.dev1 suggests) has almost the same effect, except that it doesn't remove slim from the "/etc/init.d/.depend.*" database, which also plays a role for sysvinit.

#1312 Re: Installation » [SOLVED] disabling slim » 2019-03-11 20:57:23

I don't think the service script can disable a facility, and you'll need to use update-rc.d directly for that. The command line would be

# update-rc.d slim disable

Refer to

$ man update-rc.d

for details.

#1313 Re: Installation » [SOLVED] ISO Installer - Installed on Canaimita MG101A3 [SOLVED] » 2019-03-01 05:06:00

inukaze wrote:

Save the changes and exit

echo "Edit the file resolv.conf"  #NOTE : you can ignore this line
nano /etc/resolv.conf

Content :

1.1.1.1

That file would normally have a line like (or up to 3 of these):

nameserver 1.1.1.1

and not just the IP address on its own. In some cases it has a line starting with domain and sometimes a line starting with search, and more ... see

$ man resolv.conf

for details.

#1314 Re: Other Issues » PHP 7.2 on Jessie » 2019-02-28 04:35:08

You should be aware that you've given yourself a new repository point to install software from, in the file /etc/apt/sources.list.d/php.list. That repository seems to offer some random pickings from debian jessie/stretch/buster. You could browse the pool https://packages.sury.org/php/pool yourself and see which goodies you possibly have got.

That "unknown" tag might be the result of running lsb_release -sc.

If you want to recover, whilst keeping php 7.2, it might work that you comment out the repository point in that file, then do an update followed by a dist-upgrade. Or just comment it out without dist-upgrade so as to avoid pulling in stuff from there in the future.

#1315 Re: Devuan Derivatives » [Fixed] Upgraded "Miyo-XTRA Beowulf" boot suspend/resume delay » 2019-02-27 10:45:13

If the file has an initial microcode blob before the ramdisk file system, you'll probably need two successive cpio calls to read it. And even more fun, the second part might be compressed separately, which then needs decompression into the pipeline as well.

For example: unpack first archive (microcode) and check type of second (probably gzipped).

cat /initrd.img | ( cpio -i ; file - )

Then: unpack the first archive, then the second with gunzip-ing

cat /initrd.img |  ( cpio -i ; gunzip | cpio -i )

Or if you like: unpack first, and copy second (compressed) into a file ramdisk.gz

cat /initrd.img |  ( cpio -i ; cat > ramdisk.gz )

The last one might be useful if you want to repack things manually since it lets you work out the byte size of the first archive, so you can prepend those bytes to a repacked image.

#1316 Re: DIY » Input requested regarding Suspend » 2019-02-20 20:59:32

Good. Apparently my use of apt-file leaves some to be desired.

#1317 Re: DIY » Input requested regarding Suspend » 2019-02-20 12:00:45

mmm maybe a

dpkg -S loginctl

could shed some light on it. For me, as I don't have that program, I tried

apt-file find loginctl

which reported it as belonging to systemd. And as far as I can tell, there is no installation candidate for that package in any Devuan repository.

#1318 Re: DIY » Input requested regarding Suspend » 2019-02-20 07:06:49

Well, I think one can say you are threading the boundary at least smile

MiyoLinux distribution = Devuan beowulf + ( some bits of systemd that happened to work today )

It doesn't bother me as such, but I might be special wink wink

#1319 Re: DIY » Input requested regarding Suspend » 2019-02-20 06:47:59

Are you sure? loginctl is in the systemd package .. or rather, where did you get it from?

#1320 Re: Desktop and Multimedia » Software update notifications in XFCE » 2019-02-12 09:29:48

With * as "minute" it'll run every minute at the hours that divide evenly. So, you do need a specific minute number.

#1321 Re: Hardware & System Configuration » ethernet and login manager concerns » 2019-02-10 05:51:54

At a guess, you have set up your machine to share /home between systems, but "forgotten" to synchronize the UID of the user(s)...

#1322 Re: Installation » winehq 4.0 » 2019-02-10 03:48:55

By the looks of it, wine version 4.0-1~bpo9+1 is available in ascii-backports.

#1323 Re: Hardware & System Configuration » ethernet and login manager concerns » 2019-02-10 03:42:12

1.  How can I get the packages for lightdm seeing as I have no internet connection on that install and devuan does not seem to offer the packages via web site like debian does with packages.debian.org?

Given that you can boot up some other partition/system with network connection, it should be easy enough the use chroot to the failing partition/system, and then use apt-get as per normal for it.

E.g., if the failing partition/system happen to be /dev/sda5, you would do the following, starting in the working system:

# mount /dev/sda5 /mnt
# chroot /mnt
# mount -t procfs proc /proc
# mount -t sysfs sys /sys
# mount -t devpts devpts /dev/pts
# apt-get install lightdm

That would install lightdm to the failing partition/system, which I assume is correctly set up as to its sources.list.

Note that the three later mount commands are not always needed; it depends on what you want to install. In fact, in some cases you also need to ensure there are nodes for /dev/sda and /dev/sda5 in the chroot file system, but that certainly shouldn't be needed for a lightdm installation.

To exit gracefully, you would first umount the three points within the chroot, then exit and umount /mnt.

#1324 Re: Hardware & System Configuration » [SOLVED]I had upgrade Jessie to Ascii and i need some fixes.[SOLVED] » 2019-02-09 07:53:34

i really don't understand what need udev for stop that errors

You need fewer spaces wink

Board footer

Forum Software