The officially official Devuan Forum!

You are not logged in.

#1 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-16 20:58:01

OK, the latest update is that I changed the Devuan /boot/extlinux/extlinux.conf back to the original setup:

UI menu.c32
PROMPT 0
MENU TITLE Welcome to Devuan - Debian without SystemD
TIMEOUT 100
DEFAULT devuan

	LABEL devuan
		MENU LABEL Devuan
		KERNEL /vmlinuz
		APPEND initrd=/initrd.img ro root=/dev/sdd1

by mounting the partition in Slackware and editing. When I rebooted, I was suddenly able to boot into the system again, so I uninstalled all kernels except for the low latency kernel and after having rerun the NVIDIA.run script, everything seems to be working fine. I will wait a couple of days before I mark this topic as solved, just in case there is something else.

#2 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-16 15:16:00

@ fsmithred

Here I thought that I had everything sorted, but I compiled a low latency kernel following the instructions here and now even though I changed the entries in the Devuan /boot/extlinux/extlinux.conf to as follows, it refuses to boot, but just cycles through the countdown from 10-0 and back again:

UI menu.c32
PROMPT 0
MENU TITLE Welcome to Devuan - Debian without SystemD
TIMEOUT 100
DEFAULT devuan

	LABEL devuan
		MENU LABEL Devuan
		KERNEL /vmlinuz-4.9.88-lowlatency
		APPEND initrd=/initrd.img-4.9.88-lowlatency ro root=/dev/sdd1

Interestingly, if I mount the Devuan partition /boot/extlinux/ and manually rename all of the files that end in ".amd64" and add ".bak" at the end, and reboot, I get the same error about the partition /dev/sdd1 no longer existing, as I did when I tried editing the Devuan /etc/inittab and changed:

# The default runlevel.
id:2:initdefault:

to

# The default runlevel.
id:1:initdefault:

sooo I am pretty sure that there is some sort of glitch in Devuan ASCII, as switching runlevels in the /etc/inittab shouldn't cause an error like that, and I can't imagine that renaming files with ".bak" should do that either.

#3 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-16 07:21:20

fsmithred wrote:

Sorry I don't have anything useful to add. When I get a chance, I'll try extlinux with a multi-boot system and let you know what I find.

I just successfully booted into Devuan ASCII on my triple boot system. Here are my extlinux.conf entries:

Slackware64 14.2 /boot/extlinux/extlinux.conf entry for Devuan ASCII install:

	LABEL devuan
		MENU LABEL Devuan - Debian without SystemD
		COM32 chain.c32
		APPEND hd3 1

Devuan ASCII /boot/extlinux/extlinux.conf entry (Devuan ASCII only):

UI menu.c32
PROMPT 0
MENU TITLE Welcome to Devuan - Debian without SystemD
TIMEOUT 100
DEFAULT devuan

	LABEL devuan
		MENU LABEL Devuan
		KERNEL /vmlinuz
		APPEND initrd=/initrd.img ro root=/dev/sdd1

On the Devuan ASCII side, I could make do with less, as I really don't need a menu. All I want to be able to do is to boot into the system from the Slackware extlinux menu, but it is the first thing that works.

#4 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-15 15:19:37

fsmithred wrote:

Sorry I don't have anything useful to add. When I get a chance, I'll try extlinux with a multi-boot system and let you know what I find.

Looking forward smile

#5 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-14 12:46:15

@fsmithred
OK, So now I have what I believe to be a working Devuan system (as there were no errors during the install or when install extlinux), but I am unable to boot into it. /boot/extlinux/extlinux.conf contained the following to boot the Devuan system to start with:

	LABEL devuan
	MENU LABEL Devuan
	COM32 chain.c32
	APPEND hd3 1

As this is a matter of chain loading, I only included a minimal /boot/extlinux/extlinux.conf on the root partition of the Devuan install. It read:

KERNEL /vmlinuz
APPEND initrd=/initrd.img ro root=/dev/sdd1

However, I got the error:

No Default or UI configuration directive found!

Next, I copied the menu.c32 module from my Slackware64 install to /boot/extlinux/ on the Devuan system and edited the /boot/extlinux/extlinux.conf for the Devuan system to read:

UI menu.c32
PROMPT 0
MENU TITLE Boot Menu
TIMEOUT 100
DEFAULT devuan

        LABEL devuan
        MENU LABEL Devuan
        KERNEL /vmlinuz
        APPEND initrd=initrd.img ro roodt=sdd1

On reboot, got the error:

failed to load COM32 file menu.c32

Sooo, then I returned to my Slackware64 install, again edited the /boot/extlinux/extlinux.conf for Devuan to read:

UI chain.c32
KERNEL /vmlinuz
APPEND initrd=/initrd.img ro root=/dev/sdd1

and copied the chain.c32 module from my Slackware64 install to /boot/extlinux/. On reboot, I this time got the error:

failed to load COM32 file chain.c32

I am not really sure where to go from here. My Slackware64 /boot/extlinux/extlinux.conf has constantly had the following information for booting my Devuan install:

	LABEL devuan
	MENU LABEL Devuan
	COM32 chain.c32
	APPEND hd3 1

----
On the off chance that it had something to do with the Slackware64 extlinux modules, I mounted the Devuan system and then copied the modules as per the instructions within the Devuan system:

cp /usr/lib/syslinux/modules/bios/*.c32 /boot/extlinux

The actual command was of course slightly different as I was working from within another system, but the modules and the target were correct. There is no change in the error that I receive, so it must be a configuration issue, but I haven't been able to pin it down.

#6 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-14 08:48:06

devuser wrote:

I see. How about this:

#!/bin/sh

SES="$( update-alternatives --list x-session-manager )"
C=1; for S in $SES; do
	echo "$C: $S"
	C=$(( $C + 1 ))
done
echo
S=''; while true; do
	echo -n 'Select window manager [1]: '
	read I
	echo "$I" | grep -q '[^0-9]' && continue
	if [ -z "$I" ]; then
		S=1
		break;
	fi
	if [ "$I" -gt 0 ] && [ "$I" -lt $C ]; then
		S=$I
		break
	fi
done
CMD="$( echo "$SES" | head -n$S | tail -n1 )"
echo "$CMD" > "$HOME/.wm"
echo "Default WM set to $CMD."

Then you could just do something like:

alias startx='startx "$( cat "$HOME/.wm" )"'

Very cool. Thanks.
----
So in reference to a triple boot system, extlinux and Devuan, I assume that Devuan continues to use runlevels as Debian used to do with Sys V. What argument should be included in these lines

	LABEL devuan
		MENU LABEL Devuan - Debian without SystemD
		COM32 chain.c32
		APPEND hd2 1

in /boot/extlinux/extlinux.conf to boot into runlevel 1???
----
Well, alternatively it is possible to go in and edit /etc/inittab, changing

id:2:initdefault:

to

id:1:initdefault:

This is good if you need to run NVIDIA driver install scripts that are very sensitive to any X.org running, but it is only a root command line. I have discovered that it is possible to

# su - username

to get into the user account. Unfortunately, it isn't possible to run an X session in that mode, as permission is denied...

#7 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-14 07:21:29

devuser wrote:
devuan_dk_fan wrote:
$ startx

I wish there was something similar for Devuan, thus avoiding the login manager for those users that like to keep it simple.

I might miss something here but startx exists on Devuan?

Yes, but the process I was describing doesn't work with Debian based systems, as there is no xwmconfig. The closest to that is running

# dpkg-reconfigure gdm

but that just switches between login managers and not window managers.

#8 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-14 07:12:19

fsmithred wrote:

If it's already dual boot and you're adding another OS, couldn't you just make a new entry in the existing boot menu?

That was the original plan. As far as I understand, while extlinux is able to read the entire file system (any file system) it still needs a boot loader at the target.

fsmithred wrote:

You could let it install grub and then switch to extlinux. When I did that, it was easy. I didn't set it up for multiple systems, but I do use syslinux on multiboot live-usb frequently, but those are all on the same partition. I'm not sure what happens when you want to boot from different partitions.

I followed your instructions to do that on another computer, which of course changed the MBR, but leaves /boot/grub on the system. It didn't interfere with anything on a single system boot, but I was wondering how that would play out with a triple boot system. It is of course possible to

# rm -r /boot/grub

but again was unsure if that would potentially cause problems with or affect the stability of a triple boot system.

fsmithred wrote:

At the slim login screen, press F1 to toggle different window managers.

Thanks. I know. I have set up the necessary i3.desktop files if they didn't exist, or if the existing ones didn't appear to be working with slim, but never had any success booting from anything other than the default WM. Having gained some experience with Slackware, I prefer starting at the command line, logging in, using the Slackware xwmconfig script, and then running

$ startx

I wish there was something similar for Devuan, thus avoiding the login manager for those users that like to keep it simple.

#9 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-13 21:17:07

@ fsmithred It looks like you are right about GRUB getting installed. I thought I avoided it by not specifying a location and then pressing the "go back" button. Unfortunately, the "expert" install sane defaults don't work either, as the install fails. I will have to take a look at this again tomorrow.

#10 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-13 15:18:01

Regarding the ASCII "expert" installer, I personally am of the opinion that it has gotten too complicated. I assume that this is something that Debian has decided, but I don't recognize half of the options any more, and for some weird reason, it appears that a choice of login managers is only available with LXQT. Being a happy WM switcher, depending on my workflow (XFCE/i3) the current situation is a nightmare as SLIM or SLiM is no longer developed, and provides no functional, practical means by which it is possible to easily switch between window managers.

#11 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-13 15:07:33

Here are all of the steps when using Devuan as the only Linux distro, in a single boot or dual boot situation with Win:

To install extlinux from within the installer, alt-F2 to get to a console.

# chroot /target /bin/bash
# . /etc/profile 
# mkdir -p /boot/extlinux
# nano /etc/apt/sources_list # comment out CD/DVD/USB source
# apt-get install extlinux syslinux-common
# extlinux --install /boot/extlinux
# dd if=/usr/lib/EXTLINUX/mbr.bin of=/dev/sdX bs=440 count=1
# cp /usr/lib/syslinux/modules/bios/*.c32 /boot/extlinux
# nano /boot/extlinux/extlinux.conf
Code:
	ui menu.c32

	label devuan
	menu label devuan
	kernel /vmlinuz
	append initrd=/initrd.img ro root=/dev/sda1

Remember to set the proper partition as bootable!

In a triple boot scenario, I believe that it is enough to do the following, if extlinux is already installed with another Linux distro:

To install extlinux from within the installer, alt-F2 to get to a console.

# chroot /target /bin/bash
# . /etc/profile 
# mkdir -p /boot/extlinux
# nano /etc/apt/sources_list # comment out CD/DVD/USB source
# apt-get install extlinux syslinux-common
# extlinux --install /boot/extlinux
# dd if=/usr/lib/EXTLINUX/mbr.bin of=/dev/sdX bs=440 count=1

#12 Re: Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-13 13:34:30

fsmithred wrote:

Here are my notes on installing extlinux (after installation of the system)

To do it from within the installer, alt-F2 to get to a console.

chroot /target

Then you should be able to install extlinux.

Note: you must choose one of the expert installs to prevent grub from being installed.

Actually, it seems that I avoided installing GRUB in the normal install. On the second prompt, I exited to the install menu.

# extlinux --install /boot/extlinux

doesn't work. I get the error:

# extlinux --install /boot/extlinux
/bin/sh: 3: extlinux: not found

----
OK, I think I know where I went wrong. I should have done the following?

# chroot /target /bin/bash
# . /etc/profile 
# mkdir -p /boot/extlinux

Still a problem however:

# extlinux --install /boot/extlinux
bash: extlinux: command not found

#13 Installation » extlinux install from Devuan ASCII installer shell. » 2018-06-13 12:01:48

devuan_dk_fan
Replies: 18

I am trying to figure out how to install extlinux from the Devuan ASCII installer shell, as Devuan is the last system in a triple boot system (Slackware 64 14.2, Win7 and Devuan). Unfortunately, the following method that I used for Slackware is kicking up an error:

# chroot /mnt /bin/bash
# . /etc/profile 
# mkdir -p /boot/extlinux
# extlinux --install /boot/extlinux
# dd if=/usr/share/syslinux/mbr.bin of=/dev/sda
# chroot /mnt /bin/bash
chroot: can't execute '/bin/bash/sh': No such file or directory

Any ideas?

#14 Re: Installation » Devuan, KXStudio and extlinux. » 2018-06-05 20:35:30

@fsmithred Thanks for all the information. I installed Devuan ASCII-RC 64-bit netinstall with LXDE-QT and added the the KXStudio repo and enabled the GCC5 packages. After an apt update and upgrade, I added all of the packages that I could remember from Slackware's Studioware and Ubuntu Studio. Everything looked set to install, until tuxguitar kicked up a broken packages error that Synaptic couldn't recover from:
Unresolved dependencies, bla, bla:

Depends: libswt-cairo-gtk-3-jni but it is not going to be installed
Depends: libswt-gtk-3-java but it is not going to be installed
Depends: libswt-webkit-gtk-3-jni but it is not going to be installed
Depends: libgcj14 (>=4.8) but it is not installable
Recommends: tuxguitar-jack but it is not going to be installed

If I get time tomorrow, I will try to complete an install of all of the packages, but as a point of departure, everything else looks good.

BTW, not crazy about LXDE-QT, but I really appreciate the ability to choose login managers during the expert install smile

#15 Installation » Devuan, KXStudio and extlinux. » 2018-06-04 18:39:47

devuan_dk_fan
Replies: 2

With ASCII on the doorstep, is it still not recommended to include other repositories?

I am planning the install a fresh Devuan system with the KXStudio repo included for audio production.

The install will be a triple boot (Win7, Devuan and Slackware), so I am interested in getting any feedback possible on extlinux in this connection. Win7 is already installed in UEFI mode and I am wondering how extlinux deals with (or the user) deals with changes to the system, such as kernel updates. Slackware64 14.2 uses elilo, which works with UEFI, but not in a multi-boot scenario. I find GRUB2 to be quite frustrating and would certainly consider using extlinux for a Devuan install, even without a multi-boot scenario, but I am a bit fuzzy on the details in reference to system upgrades, and I haven't been able to find any documentation on that particular aspect of extlinux.

#16 Re: Installation » Minimal bspwm Devuan install problems. » 2018-04-08 18:46:11

msi wrote:

Ok, how about commenting out the line starting sxhkd in your .xinitrc, then starting X and running sxhkd from the terminal. There might be error messages.

$ command not found
# command not found

sxhkd was not in /usr/bin. Something is obviously wrong with the package. I originally had problems with so called "documentation", but I thought that I had overcome the problem. I tried re-cloning the git but all of a sudden, git was no longer installed (I didn't uninstall it) I tried reinstalling gcc and xcb, which also pulled in some dependencies that were not installed last time around for some reason. I cloned the git and then ran "make" but got some errors about missing lib.something.so files. I am not sure that sxhkd can be compiled under Devuan. I therefore gave up, and installed a .deb package that I had compiled under Ubuntu 16.04 before I eschewed systemd. Most things seem to be running as expected now (hot keys), but I have come across a weird quirk (only) when I try starting geany (installed with apt-get) from Dmenu:

Configuration directory could not be created (Permission denied). There could be some problems using Geany without a configuration directroy. Start Geany anyway?

As it is, I have had to create a ~/.local and a ~/.local/share share directory manually, as well as a ~/.config/leafpad directory, for some reason, which I do not understand as I had none of these problems with missing directories when I installed i3wm using the same method.

#17 Re: Installation » Minimal bspwm Devuan install problems. » 2018-04-08 15:43:25

msi wrote:

"Make sure ~/.config/bspwm/bspwmrc is executable." (https://wiki.archlinux.org/index.php/Bs … n.27t_work)

Thanks smile I have checked that a couple of times, as that is the most obvious reason for the hot keys not to work. Unfortunately, that isn't the case, so there must be something else that is preventing the hot keys from working. I have also checked all of the dependencies, but I haven't found anything there either.

msi wrote:

Btw, what's the reason you're trying to use bspwm?

bspwm is to my knowledge, the lightest tiling window manager available.

#18 Re: Installation » Minimal bspwm Devuan install problems. » 2018-04-08 05:57:15

I followed the instructions and reduced my .xinitrc file to the following:

sxhkd &
lxterminal &
exec bspwm

The terminal fills the entire space (as it should), but I can't get any response from my hot keys, even when quitting the terminal. I compared the permissions for sxhkdrc on my Devuan install to the Slackware version and they are the same. I am at a loss as to why the hot keys aren't working.

#19 Re: Installation » Minimal bspwm Devuan install problems. » 2018-04-07 20:47:53

msi wrote:

I don't have any experience with bspwm. However, from what I can see in the screenshot, it seems like the window manager is not being started when you start X. Do you have an .xinitrc file in your home directory? If so, what does it look like?

Wow. Interesting. As a matter of fact, I don't have an .xinitrc. I don't have any experience with .xinitrc's. Any advice on how to create one? I just use xwmconfig in Slackware to set the window manager after login, and then run "startx".

msi wrote:

Also, did you build bspwm from source or install it through the package manager (which would be possible in ascii or ceres)?

What I did was I cloned from the git and then ran make, checkinstall so that I had some .deb packages should I need to build these packages again.

----

Here is the .xinitrc that xwmconfig generates for baspwm in Slackware, but I assume that some is distro specific?

#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps
[ -f $sysresources ] && xrdb -merge $sysresources
[ -f $sysmodmap ] && xmodmap $sysmodmap
[ -f $userresources ] && xrdb -merge $userresources
[ -f $usermodmap ] && xmodmap $usermodmap

sxhkd &

# Start the window manager:
if [ -z "$DESKTOP_SESSION" -a -x /usr/bin/ck-launch-session ]; then
  ck-launch-session dbus-launch --exit-with-session bspwm
else
  bspwm
fi

#20 Installation » Minimal bspwm Devuan install problems. » 2018-04-07 14:32:32

devuan_dk_fan
Replies: 9

I have installed a minimal Devuan system on my Acer Aspire One 725 with bspwm, as I am trying to minimize overhead using the apps that I need to run.

$ startx

gives me this. The focus stays in lxterminal and my few hot keys in sxhkd are unable to run with the lxterminal focus. I have earlier tried with urxvt, but it remains unfocused and no hot key commands work there either. All dependencies are installed as per here.

My bspwmrc is so far largely standard:

#! /bin/sh

sxhkd &

bspc monitor -d 1 2 3 4 5 6 7 8 9 10

bspc config border_width        1
bspc config window_gap          0
bspc config top_padding		12
bspc config bottom_padding	12

bspc config split_ratio          0.52
bspc config borderless_monocle   true
bspc config gapless_monocle      true

bspc rule -a Gimp desktop='^8' state=floating follow=on
bspc rule -a Chromium desktop='^2'
bspc rule -a mplayer2 state=floating
bspc rule -a Kupfer.py focus=on
bspc rule -a Screenkey manage=off

Here are my sxhkdrc file contents:

#
# wm independent hotkeys
#

# terminal emulator
super + Return
	lxterminal

# program launcher
super + d
	dmenu_run -fn '40x50' -i -nb '#000000' -nf '#FFFFFF' -sb '#8DC7E0' -sf '#000000'

# file manager
super + x
	pcmanfm

# web browser
super + b
	vivaldi-stable

# make sxhkd reload its configuration files:
super + shift + r
	pkill -USR1 -x sxhkd

#
# bspwm hotkeys
#

# quit bspwm normally
super + shift + e
	bspc quit

# close and kill
super + {_,shift + }w
	bspc node -{c,k}

# alternate between the tiled and monocle layout
super + m
	bspc desktop -l next

# send the newest marked node to the newest preselected node
super + y
	bspc node newest.marked.local -n newest.!automatic.local

# swap the current node and the biggest node
super + g
	bspc node -s biggest

#
# state/flags
#

# set the window state
super + {t,shift + t,s,f}
	bspc node -t {tiled,pseudo_tiled,floating,fullscreen}

# set the node flags
super + ctrl + {m,x,y,z}
	bspc node -g {marked,locked,sticky,private}

#
# focus/swap
#

# focus the node in the given direction
super + {_,shift + }{h,j,k,l}
	bspc node -{f,s} {west,south,north,east}

# focus the node for the given path jump
super + {p,b,comma,period}
	bspc node -f @{parent,brother,first,second}

# focus the next/previous node in the current desktop
super + {_,shift + }c
	bspc node -f {next,prev}.local

# focus the next/previous desktop in the current monitor
super + bracket{left,right}
	bspc desktop -f {prev,next}.local

# focus the last node/desktop
super + {grave,Tab}
	bspc {node,desktop} -f last

# focus the older or newer node in the focus history
super + {o,i}
	bspc wm -h off; \
	bspc node {older,newer} -f; \
	bspc wm -h on

# focus or send to the given desktop
super + {_,shift + }{1-9,0}
	bspc {desktop -f,node -d} '^{1-9,10}'

#
# preselect
#

# preselect the direction
super + ctrl + {h,j,k,l}
	bspc node -p {west,south,north,east}

# preselect the ratio
super + ctrl + {1-9}
	bspc node -o 0.{1-9}

# cancel the preselection for the focused node
super + ctrl + space
	bspc node -p cancel

# cancel the preselection for the focused desktop
super + ctrl + shift + space
	bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel

#
# move/resize
#

# expand a window by moving one of its side outward
super + alt + {h,j,k,l}
	bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}

# contract a window by moving one of its side inward
super + alt + shift + {h,j,k,l}
	bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}

# move a floating window
super + {Left,Down,Up,Right}
	bspc node -v {-20 0,0 20,0 -20,20 0}

This seems to just work in Slackware https://flic.kr/p/24y4QhF

Anyone have some experience with bspwm and Devuan?

#21 Re: Desktop and Multimedia » i3wm as default window manager on Devuan Jessie install. » 2018-03-24 11:35:21

ralph.ronnquist wrote:

You may want to peep at "[SOLVED] slim does not set a default session".
A bit old, but possibly relevant still.

Thanks ralph. The solution is to change the line in /etc/slim.conf to:

login_cmd           exec /bin/bash -login /etc/X11/Xsession i3

----

Actually, this isn't the answer, as Slim will now only boot into i3, regardless of whether I choose XFCE4 or not.

----

I tried adding a "session              i3" line after the "login_cmd" line, but that doesn't seem to work in the newer versions of Slim.

I also tried installing another login manager (lightdm) but there is a depend created between slim and a "task-xfce-desktop" package that the Devuan developers have put in. A stop gap measure to control Jessie's quirks?

#22 Re: Desktop and Multimedia » i3wm as default window manager on Devuan Jessie install. » 2018-03-24 09:20:35

Nice to hear from you MiyoLinux. I don't see any obvious candidate as you describe. The /etc/slim.conf file doesn't have any WMs listed at all and no obvious "session" candidates. This appears to be for setting the default shell:

login_cmd           exec /bin/bash -login /etc/X11/Xsession %session

Alternatively, there is:

sessionstart_cmd	some command

but the description states:

They can be used for registering a X11 session with sessreg.

This seems to me a more likely candidate as it seems to interact with .xsession, but then again, I could be completely off.

#23 Desktop and Multimedia » i3wm as default window manager on Devuan Jessie install. » 2018-03-24 01:06:58

devuan_dk_fan
Replies: 4

I am trying to set i3wm as default window manager on a Jessie install. I have tried:

update-alternatives --config x-window-manager

but the only alternatives that show up are xfce4. However it is possible to switch between xfce and i3wm when using the Slim login manager, so the system is at least partially configured, just not to set i3 as default...

#24 Re: Installation » Multiboot boot loading UEFI - no tty. » 2018-03-11 21:29:04

Thanks. "nomodeset" worked. Unfortunately, the Nvidia installer wants a libc development package that I can't find. I tried libc6-dev, but Synaptic reports that it is a broken package for some reason. Any ideas?
----
Found it, I was missing libc6-dev. Thanks again.

#25 Re: Hardware & System Configuration » How to replace Grub2 with Lilo? KISS multiboot configuration. » 2018-03-11 15:24:31

This thread is now forked as I have reinstalled Devuan using my computer's UEFI, rather than legacy mode and have been getting some other problems. The thread is here:
https://dev1galaxy.org/viewtopic.php?id=1931

Board footer

Forum Software