The officially official Devuan Forum!

You are not logged in.

#1876 Re: Documentation » Tips for successfully migrating Ascii DE to Beowulf as of 11-08-2018 » 2018-10-24 22:44:41

I just did this a few days ago. Thanks for blazing a trail. It seems to be getting easier. Here's what I did -

Installed Refracta 9 (ascii with xfce installed a la carte, lxdm, elogind)
Added beowulf main repo to sources.list. Did not disable ascii repos.
Pinned policykit-1 and its libraries to the ascii versions.
Then ran apt-get update && apt-get dist-upgrade
Installed the 4.18 kernel, ran apt-get autoremove (only 3 or 4 packages got removed)
Rebooted.

It seems to be working. Shutdown/reboot buttons work in desktop and login screen. Mount/unmount removable drives on the desktop works. And I just got out of a video conference in chromium, so camera and mic are working, too.

Here's the pin file I used:  NOTE: It is no longer necessary to pin policykit packages.

Package: policykit-1
Pin: version 0.105-18* 
Pin-Priority: 1001

Package: libpolkit-agent-1-0
Pin: version 0.105-18*
Pin-Priority: 1001

Package: libpolkit-backend-1-0
Pin: version 0.105-18*
Pin-Priority: 1001

Package: libpolkit-gobject-1-0
Pin: version 0.105-18*
Pin-Priority: 1001

#1877 Re: Installation » Soon a fix for SSHFS and FUSE broken in the Devuan Stable Unstable ? » 2018-10-24 19:28:19

Please post your sources.list and any repos enabled under sources.list.d.
Also, post the output of apt-get install sshfs and dpkg -l *ssh*

#1878 Re: Installation » Soon a fix for SSHFS and FUSE broken in the Devuan Stable Unstable ? » 2018-10-24 13:58:31

What error message are you getting? I've never had a problem installing or using sshfs in debian or devuan.

#1880 Re: Documentation » HOWTO: Bypass the 4GB filesize limit in Refractasnapshot » 2018-10-21 17:00:18

Thanks! Added to my TODO notes. You just saved me from writing a bunch of code to make a live-usb from a snapshot work directory for cases where the iso is too big.

#1881 Re: Installation » [SOLVED, don't buy one to begin with] dell xps-13 » 2018-10-21 16:34:09

Or maybe i can use good sense (for a change) and use the Dell without worrying over the battery.

That's what I do on my 12-year-old Dell laptop. There always seems to be a wall outlet nearby, and I don't have to worry about working too long and running down the battery.

#1882 Re: Installation » [Solved] Keyboard configuration issue » 2018-10-21 12:06:59

Good find! I'm copying the answer here so we don't lose it. We can use either of the first two methods. Third one is here just to be complete. (I'm taking his word that this works. I haven't tried it yet.)

All of this leads to the three ways to enable Ctrl + Alt + Backspace termination of the X server, at least on a systemd based system. First, as part of your X session startup you can run setxkbmap to specifically enable C-A-B, among any other XKB changes you're already making:

    setxkbmap -option 'compose:rwin' -option 'ctrl:nocaps' -option 'terminate:ctrl_alt_bksp'

Second, you can manually create or edit a configuration file snippet in /etc/X11/xorg.conf.d or your equivalent to specify this. If you already have a 00-keyboard.conf or the equivalent, the option you want is:

    Option "XkbOptions" "terminate:ctrl_alt_bksp"

(A trailing comma is okay, apparently.)

Third, if you have Fedora or perhaps any systemd-based distribution, you can configure this the official way by running localectl with a command like this:

    localectl --no-convert set-x11-keymap us pc105+inet "" terminate:ctrl_alt_bksp

There is a bear trap lurking here. That innocent looking "" is very important, as covered in the Arch wiki page. As they write (with my emphasis):

#1883 Re: Installation » Where are the packages for installing development tools (gcc, etc.)? » 2018-10-20 14:16:21

You'll also need to install the linux-headers-<version> that matches your running kernel.
apt-get install linux-headers-$(uname -r)

#1884 Re: Installation » [Solved] Keyboard configuration issue » 2018-10-20 14:07:23

Altoid wrote:

I can confirm that with Xorg-7.7 installed (default settings) ctrl-alt-backspace also works.

Cheers,

A.

Huh. It's not working here, and I tried it on two different ascii installations, same version of xorg, with and without keyboard layouts plugin.

Here's one of the earliest mentions of the change I can find. I tried getting it working a couple times and failed, so I haven't tried it in years (until now.)
http://forums.debian.net/viewtopic.php? … ce#p429554

#1885 Re: Hardware & System Configuration » Problem encrypting the swap partition with cryptsetup [SOLVED]. » 2018-10-20 11:32:23

My first guess is that the uuid in the resume file in your initrd needs to be changed. Try running update-initramfs -u and see if that fixes it.

#1886 Re: Hardware & System Configuration » Users list in Slim display manager » 2018-10-20 00:48:48

True/False, Left/Right. Sometimes they switch places on me when I'm not looking. Sorry about that.

I tried this in a VM today and it worked, but you should heed the advice of the others.

#1887 Re: Installation » [SOLVED, don't buy one to begin with] dell xps-13 » 2018-10-20 00:44:48

Presumably you mean after i've installed the OS from the .iso file referenced in some post above this one which i can't access at this point.   And after installing the recommended .iso file in some partition and
rebooting to run the newly installed OS.  At that point in the process i run the following commands to install the broadcom drivers.  If that is correct, then 'uname' should in some way correspond to the version number or codename of the version that you recommend.

Yes, install the wireless firmware after you install the system to hard drive. I forget which iso you're using, too. If you're using one of the installer isos, you could use an ethernet cable during the installation and pull packages from the repository. The live-isos just install from the media.

uname -r is a command that returns the version number of the running kernel. Putting it in the package name like that is using command substitution, and you can run that apt-get command exactly the way I posted it. Bash will substitute the kernel version, and you'll get the right linux-headers package. It's also possible to represent it like this: linux-headers-`uname -r`. It does the same thing, and it's easier to type, but it's less visible in a forum post.

#1888 Re: Hardware & System Configuration » Users list in Slim display manager » 2018-10-19 21:26:36

ctrl-alt-F1 to drop to console and log in as root.

/etc/init.d/slim stop
apt-get install lightdm

A debconf dialog will come up and you can set lightdm to be the default display manager.

Edit /etc/lightdm/lightdm.conf to uncomment and change to true this:

#greeter-hide-users=false

so it looks like this:

greeter-hide-users=true

(Make sure you're in the section under "[SeatDefaults]" and not "# Seat defaults")
Start lightdm:

/etc/init.d/lightdm start

Shutdown/reboot buttons should still work in desktop and at the login screen. I'm not sure about mounting removable drives with this combination. Some tweaking may be necessary.

Don't try to uninstall slim. It's not worth the trouble. (It'll want to pull everything with it because it was installed as part of a task package.)

If you want to change back to slim, run dpkg-reconfigure lightdm and set slim as the default.

#1889 Re: Installation » [SOLVED, don't buy one to begin with] dell xps-13 » 2018-10-19 20:49:00

Oh, I didn't realize you have an ethernet port. You're all set. Plug in, then

apt-get update
apt-get upgrade
apt-get install broadcom-sta-dkms linux-headers-$(uname -r) build-essential

You might need to reboot to get it to work.

Maybe the local coffee shop will let you plug in with a wire. Then you don't have to wait for the next visit to a hotel.

While you're there, you can install whatever php packages you need. You should already have ncurses. I don't understand the part about matching versions - I didn't think they were related in any way. ncurses-base in ascii is 6.0+20161126-1+deb9u2 and php7.0 is 7.0.30-0+deb9u1.

A search for 'php-ncurses debian' brings up a a few hits. This one from 2015 looks promising, but my browser is timing out trying to get there. http://grosan.co.uk/how-to-install-php- … on-debian/

#1890 Re: Other Issues » How to uninstall Pychess? [solved] » 2018-10-18 14:41:27

Look under ~/.config (in your home dir) for pychess config files. Delete them, and you will lose any config changes your use made to the application. No need to purge and reinstall.

#1891 Re: Installation » [Solved] Keyboard configuration issue » 2018-10-18 14:38:33

1, ctrl-alt-backspace hasn't worked in a long time. (maybe not since squeeze)
    Use alt-SysRq-k instead (SysRq is probably the same key as PrntScr.)

2. I don't know. I have been able to type those characters in a terminal when I was testing, but I can't tell you how I got there, and I don't remember the key combinations I used. Try the xfce4 keyboard plugin to switch layouts. (xfce4-xkb-plugin)

#1892 Re: Installation » [SOLVED, don't buy one to begin with] dell xps-13 » 2018-10-17 20:37:48

When you fix it let me know which ISO file supposedly works.  TY

Sorry to say, but I'm pretty sure it won't ever get fixed in Devuan or in Debian. FYI, the firmware you need is not in the debian-live-nonfree isos, either. Maybe Canonical feels wealthy enough to abide by the terms spelled out in the copyright notice. (Emphasis added)

2.3. Restriction on Distribution. Licensee shall only distribute the Software
(a) under the terms of this Agreement and a copy of this Agreement accompanies
such distribution, and (b) agrees to defend and indemnify Broadcom and its
licensors from and against any damages, costs, liabilities, settlement amounts
and/or expenses (including attorneys' fees) incurred in connection with any
claim, lawsuit or action by any third party
that arises or results from the use
or distribution of any and all Software by the Licensee except as contemplated
herein.

I think that leaves you with using ubuntu or getting different hardware (maybe a usb wireless dongle).

#1893 Re: Installation » [Solved] Wicd 1.7.4 question » 2018-10-17 16:44:58

Un-set wlan0 as the default wireless device, either in wicd preferences or in manager-settings.conf, and wlan0 will not be configured. When you want to connect to wireless (or if you get a sudden urge to see what wireless signals you can get) you'll need to set the default wireless device to wlan0 again.

Another option might be rfkill to turn it off.

#1894 Re: Installation » [Solved] Huge .xsession-errors file » 2018-10-13 01:53:52

Conky runs as your user, so give your user sudo nopasswd for du and change the command in conkyrc to

exec sudo du -sch /var/log

Make a file in /etc/sudoers.d/ with the following.

groucho ALL= NOPASSWD: /usr/bin/du

#1895 Re: Hardware & System Configuration » error: no symbol table - Grub error HOWTO fix » 2018-10-12 18:51:19

I think you have to go back to squeeze to find --root-directory in the grub-install man page. Pretty sure it still works, though. These days, I tend to chroot into the system to install grub, so I don't use that option.

#1896 Re: Installation » Request for package » 2018-10-12 18:46:47

It's over my head, too. I tried compiling from source, but I failed.

What comes in the .deb package is not enough to recompile. You need the source code to do that.

Another possibility is to run barry in an old version of debian in a virtual machine.

#1897 Re: Devuan Derivatives » KDEvuan Linux » 2018-10-12 18:39:43

off-topic message for mchasard:

dpkg-reconfigure locales

Hint for more effective use of irc - stay logged in, and the answer may come minutes or hours later.

#1898 Re: Installation » Request for package » 2018-10-11 13:32:00

You could try compiling it for ascii. Get the source either from the page you linked or get a slightly newer upstream source from https://sourceforge.net/projects/barry
But it looks like the project didn't continue beyond 2013. The homepage shown on the debian package page no longer exists.

#1899 Re: Desktop and Multimedia » How do you encrypt files? » 2018-10-10 18:03:13

I can imagine a future google service that warns you if someone is standing behind you when you're about to enter a password.

#1900 Re: Installation » [SOLVED, don't buy one to begin with] dell xps-13 » 2018-10-02 19:14:14

golinux wrote:

Why would that be necessary when Devuan has all of Debian's non-free drivers available at the user's discretion?

It would be necessary for someone who can't use a wired connection and needs one of the broadcom packages that require a network connection to install the firmware.

Board footer

Forum Software