The officially official Devuan Forum!

You are not logged in.

#1 Re: Documentation » [HowTo] Install VirtualBox 6.1.36 on DEVUAN 5 » 2022-08-31 21:18:33

Ogis1975 wrote:

Why use this product of dubious quality when there is good quality and open source alternative-QEMU / kvm?

All my virtual machines are under virtualbox, when I was under mac I used vmware fusion.

But the idea of using qemu/kvm in the future is not distasteful.

#2 Re: Documentation » [HowTo] Install VirtualBox 6.1.36 on DEVUAN 5 » 2022-08-30 17:20:32

Head_on_a_Stick wrote:

Or you could add the unstable repositories and pin them to 100 so packages from there are treated like backports:

https://www.debian.org/doc/manuals/debi … le_literal

That would certainly be easier than adding a new thread every time a package is blocked from testing.

Thanks for the tip, I didn't know about this manipulation.

#3 Re: Documentation » [HowTo] Install ufw gui on DEVUAN 5 » 2022-08-30 17:18:15

Head_on_a_Stick wrote:
wingcommander1999 wrote:

The well-known ufw firewall GUI is not available by default on devuan 5

There is no "Devuan 5". I think you mean Devuan daedalus, which is the current testing branch.

A "feature" of the testing branch is that sometimes transitions from the unstable branch are blocked and this leads to the package being removed. This is entirely normal and it happens regularly.

Here is the bug that has caused gufw to be blocked from the testing branch:

https://bugs.debian.org/cgi-bin/bugrepo … ug=1012402

Once it is fixed gufw will be allowed to transition and it will become available in testing again. If it is not fixed before Devuan 5 is actually released then it will not be part of that release.

I based myself on what I read in "/etc/os-release"

devuan-5.png

#4 Re: Documentation » [HowTo] Install VirtualBox 6.1.36 on DEVUAN 5 » 2022-08-30 17:07:38

Head_on_a_Stick wrote:

If gdebi is used to install the VirtualBox .deb it will pull in libvpx6 from the repositories automatically. No need to do it yourself like some hair-shirted Slackware user.

This works for me:

apt install -s ./virtualbox-6.1_6.1.36-152435~Debian~bullseye_amd64.deb

Remove the -s option if you actually do want to install the world's worst virtualisation solution.

And then it can also happen that the right libssl dependency is missing:

wget http://deb.devuan.org/merged/pool/DEBIAN/main/o/openssl/libssl1.1_1.1.1o-1_amd64.deb
sudo gdebi libssl1.1_1.1.1o-1_amd64.deb

#5 Documentation » [HowTo] Install OpenRGB on DEVUAN 5 » 2022-08-30 16:55:02

wingcommander1999
Replies: 0

To download OpenRGB:

OpenRGB

Don't forget to unzip the archive.

To install OpenRGB:

sudo gdebi openrgb_0.71.1_amd64.deb

From now on you can enjoy all your lighting.

#6 Documentation » [HowTo] Install ufw gui on DEVUAN 5 » 2022-08-30 16:36:14

wingcommander1999
Replies: 3

The well-known ufw firewall GUI is not available by default on devuan 5, so we will download the package from the Devuan Package View site:

wget http://deb.devuan.org/merged/pool/DEBIAN/main/g/gui-ufw/gufw_20.04.1-4_all.deb

To install the package:

sudo gdebi gufw_20.04.1-4_all.deb

And here is the firewall with a graphical interface.

#7 Documentation » [HowTo] Recover Dual Boot on DEVUAN 5 » 2022-08-30 16:12:34

wingcommander1999
Replies: 0

By default under DEVUAN 5 os-prober is missing from the grub file.

We'll add it back and then update grub to support dual boot:

sudo nano /etc/default/grub

In the grub file add the line below:

GRUB_DISABLE_OS_PROBER=false

Update grub:

sudo update-grub

After the reboot the dual boot is available again.

Source

#8 Documentation » [HowTo] Install VirtualBox 6.1.36 on DEVUAN 5 » 2022-08-30 16:00:34

wingcommander1999
Replies: 9

When installing virtualbox via .deb file retrieved from the site, an error appeared because a dependency was not satisfactory for the installation. (libvpx6)

For this we will download the missing dependency and install it using the devuan Package View site:

wget http://deb.devuan.org/merged/pool/DEBIAN/main/libv/libvpx/libvpx6_1.9.0-1_amd64.deb

Once downloaded, just open an terminal window:

sudo gdebi libvpx6_1.9.0-1_amd64.deb

After installing the missing dependency you can continue installing virtualbox.

#9 Documentation » [HowTo] Install latest youtube-dl on DEVUAN 4 » 2022-08-29 05:54:37

wingcommander1999
Replies: 3

youtube-dl are a program in command line to download video from youtube and many other sites.

Source

youtube-dl needs the python3-pip package for upgrading it, but since January 1st 2020 Python 2.7 reaches end of life after 20 years of development.
(Source)

This is the error message after classic installation, if no python 2.7 are availlable in the sources:

" /usr/bin/env: ‘python’: No such file or directory"

To solve this issue we need two things, python3-pip package and change the path to work fine.

At first download the python3-pip package like:

sudo apt install python3-pip -y

We can install latest youtube-dl or take it in the Mint sources with Synaptic.

To upgrade it:

sudo pip3 install --upgrade youtube_dl

Now we change the path doing a symbolic link:

sudo ln -s /usr/bin/python3 /usr/local/bin/python

Yet we can download vids, just open an terminal and paste:

youtube-dl my_video_link

Source

#10 Documentation » [HowTo]Install latests community NvidiaGraphicsDrivers on DEVUAN 4 » 2022-08-29 05:49:02

wingcommander1999
Replies: 1

First step install Linux Headers and compilation dependencies:

sudo apt install linux-headers-$(uname -r) build-essential libglvnd-dev pkg-config dkms -y

Second step blacklist the nouveau driver, create a blacklist file:

sudo nano /etc/modprobe.d/blacklist-nouveau.conf

In the file add the following and save the file:

blacklist nouveau
options nouveau modeset=0

Then regenerate the kernel initramfs:

sudo update-initramfs -u

Third step install the latests NvidiaGraphicsDrivers:

sudo apt install firmware-misc-nonfree nvidia-kernel-dkms nvidia-driver nvidia-cuda-toolkit nvidia-cuda-dev nvidia-settings nvidia-smi nvidia-xconfig nvidia-opencl-icd nvidia-opencl-common nvidia-detect -y

Reboot.

To view how version you have installed, just open an terminal and enter follow:

nvidia-smi

Source

[Edit] After updating the repos there was a dependency error with the nvidia-settings package in the backports sources, to fix this incident it was enough to remove the backports source command.

It may happen that the persistenced daemon does not activate and need i386 binaries to work, it will then have to be done manually with the commands below:

sudo dpkg --add-architecture i386
sudo apt update
sudo update-rc.d nvidia-persistenced defaults
sudo service nvidia-persistenced start

Source

Enjoy!

#11 Desktop and Multimedia » [HowTo]Add debian version in conky » 2020-07-29 12:32:18

wingcommander1999
Replies: 1

Conky is a open source software desktop system monitor for the X Window System. It is available for Linux, FreeBSD, and OpenBSD. Source

My work are forked from Neon Cipher good tutorial => Conky System Monitor on My Desktop. How to Install and Configure It on Linux.

I add the code after the 85 line in the conky.conf file:

sudo nano ~/.config/conky/conky.conf
$font${color DimGray}Debian Version $alignr ${execi 30 cat /etc/debian_version}

The output:

conky-debian-version.jpg

Don't forget to adjust the config file with your material.

Here the forked config file in english:

conky.conf

if you encounter any inconsistencies with the amount of memory, just toggle "no_buffers" to yes in the conky.conf file, stop and start conky processu with the system monitor, open an terminal and write conky and enter to take effects.

#12 Desktop and Multimedia » [HowTo] Merge videos with ffmpeg » 2020-07-29 12:30:59

wingcommander1999
Replies: 0

FFmpeg is a collection of open source software intended for processing audio or video streams. Source

Be sure that you have the last version of ffmpeg:

ffmpeg -version

You will see an output of your version, in my case i have the last stable version 4.1.6.

No output??? Whaaaat!!! Don't panic on the Titanic, we need just to install the package:

sudo apt update && sudo apt upgrade -y
sudo apt install ffmpeg -y

Go to the Videos folder and we create an file like this, necessary to concat later:

file '/path_to_my_file/part1.mp4'
file '//path_to_my_file/part2.mp4'
file '/=/path_to_my_file/part3.mp4'

then save the file with a name of your choice in .txt output, in my example merge.txt.

Now we can merge our vids, the per-file main options retained are:

-f input/output with the concat option
-i input file or url
-c codec or stream output with the copy option

 ffmpeg -f concat -safe 0 -i merge.txt -c copy my_vids.mp4

After a few moments you can see your new merged video.

Enjoy! big_smile

Source

#13 Re: News & Announcements » Updating Sources to Beowulf stable » 2020-06-02 09:52:31

Marjorie wrote:

Can someone tell me how I go about updating my sources information, which are already set to Beowulf, now that Beowulf's Suite has moved from testing to stable?

If I try and update my package indices in Synaptic I get the message:

"Repository 'https://mirror.ungleich.ch/mirror/packages/devuan/merged beowulf InRelease' changed its 'Suite' value from 'testing' to 'stable' This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details."

This is repeated for the other sources.

I've read man apt-secure and it tells me how to update my repository if I'm a repository owner but not what I need to do as a simple user.

Hi, for using https mirrors you need to install the https transport package like:

sudo apt install apt-transport-https

Just update the sources to take effect.

Sources

#14 Re: Desktop and Multimedia » [HowTo] Fix Wired unmanaged under Cinnanom 3.8 » 2020-05-22 16:19:24

Head_on_a_Stick wrote:

Why would you want to use NetworkManager instead of ifupdown? NM is pure bloat for a simple ethernet connection.

Simpler solution:

# apt purge network-manager{,-gnome}

smile

EDIT: also remove network-manager-gnome to get rid of nm-applet.

@Head_on_a_Stick

after testing your line I have this as a result:

Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances       
Lecture des informations d'état... Fait
Les paquets suivants ont été installés automatiquement et ne sont plus nécessaires :
  cinnamon-common cjs crda dns-root-data dnsmasq-base gir1.2-appindicator3-0.1
  gir1.2-caribou-1.0 gir1.2-clutter-1.0 gir1.2-cmenu-3.0 gir1.2-cogl-1.0
  gir1.2-coglpango-1.0 gir1.2-gdesktopenums-3.0 gir1.2-gnomedesktop-3.0
  gir1.2-gtkclutter-1.0 gir1.2-json-1.0 gir1.2-keybinder-3.0
  gir1.2-meta-muffin-0.0 gir1.2-nm-1.0 gir1.2-nma-1.0 gir1.2-upowerglib-1.0
  gnome-backgrounds gvfs-bin iw libcaribou-common libcaribou0 libcjs0
  libimagequant0 libkeybinder-3.0-0 libmozjs-52-0 libndp0 libteamdctl0
  metacity-common mobile-broadband-provider-info python3-olefile python3-pampy
  python3-pexpect python3-pil python3-ptyprocess python3-pyinotify sgml-base
  wireless-regdb
Veuillez utiliser « apt autoremove » pour les supprimer.
Les paquets suivants seront ENLEVÉS :
  blueman* cinnamon* network-manager* network-manager-gnome*
0 mis à jour, 0 nouvellement installés, 4 à enlever et 2 non mis à jour.
Après cette opération, 24,3 Mo d'espace disque seront libérés.
Souhaitez-vous continuer ? [O/n]

At the end you can read that Cinnamon get fully purged, isn't especially what i search.

We can DL wicd then stop and disable NM without removing it.

#15 Re: News & Announcements » Beowulf Beta is here! » 2020-05-22 03:39:02

Andre4freedom wrote:

I've just tested the devuan_beowulf_3.0.0_beta3_netinstall-amd64 iso.
Looks good.
It's important to check the release notes.
I tested netinstall, selecting the Cinnamon DE and OpenRC
The few things to note:
1. I had to add " non-free contrib" to /etc/apt/sources.list to get firmware-amd-graphics (No problem)
2. Language settings / locales were respected (Great)
3. Lightdm-greeter had to be edited. Bug 438 is closed and fix will be backported to Beowulf. Thanks to the maintainer. (It's in the release-notes)
4. /etc/pulse/client.conf.d/00-disable-autospawn.conf must be modified. (It's in the release-notes)
5. Every other thing is just "smooth sailing". Beowulf is very robust and reliable. Thanks to the Devuaners!

I see recently that Beowulf came in Release Candidate, see joined pix:

capture-22-05-2020-052659.jpg

At the Beta page we can read that ASCII are moved to oldstable, but on the official page ASCII are the latest stable release at the moment, can someone confirm the thing?

capture-22-05-2020-053506.jpg

capture-22-05-2020-054131.jpg

#16 Re: News & Announcements » Beowulf Beta is here! » 2020-04-16 02:46:08

Marjorie wrote:

I installed Beowulf on a new Intel NUC with the desktop iso and expert install and choosing Cinnamon as my Desktop.
In the installer I specified the time zone and told the hardware clock to use UTP and the system to use NTP.

As reported elsewhere I initially had problems getting onto the network/internet.
However once this was sorted I ended up with the correct timezone but an inaccessible clock (controls greyed out in the Cinnamon settings) and the wrong time shown.

Installing chrony fixed the issue but I remain puzzled what the problem was: presumably it was in the default NTP setup.

Do not forget to add the latest Intel firmware for your NUc to be 100% operational.

sudo apt install intel-microcode -y

#17 Re: Desktop and Multimedia » [HowTo] Fix Wired unmanaged under Cinnanom 3.8 » 2020-04-15 15:26:25

fsmithred wrote:

Then comment on these 2 lines as follows:

#allow-hotplug ****
#iface **** inet dhcp

Where did you get those two lines? My interfaces file only has the entry for the loopback device. Did you set up the network manually during the install?

Nope I did not do anything, it was thus by default before having commented on the 2 lines described, here a screenshot:

capture-15-04-2020-171705.jpg

#18 Re: Desktop and Multimedia » [HowTo] Fix Wired unmanaged under Cinnanom 3.8 » 2020-04-14 20:46:06

Marjorie wrote:
wingcommander1999 wrote:

hello to you users of the freedom linux!

[snip]

And finally restart the service:

systemctl restart network-manager

Not on Devuan! systemctl is a systemd abomination invention.

Try:

sudo service network-manager restart

I've also found this problem with Cinnamon on a fresh install of Beowulf using the Desktop iso on an Intel NUC.
Cinnamon installs Network-Manager, which attempts to takeover network management, rewrites /etc/resolve.conf but doesn't get rid of the conflicting code in /etc/network/interfaces.
The result was that I couldn't access my network either over ethernet or wifi

Currently I still can't get it to work with a fixed IP over wifi, which is what I was trying to use, however DHCP works.

I'm confused, I forgot to adapt my tutorial based on devuan.

Everything is in order

#19 Re: Hardware & System Configuration » [HowTo] Fix AMDGPU Error » 2020-04-14 13:18:01

Head_on_a_Stick wrote:
wingcommander1999 wrote:

My configuration is poorly supported in Debian 10, no graphical interface works

Notwithstanding that this is the Devuan forums, your problem is already covered in the Debian wiki: https://wiki.debian.org/AtiHowTo#Firmware

In my case and my hardware configuration, I need to add some dependencies to make my graphical interface work.

After that applies only to my hardware configuration, I only share my feedback and if it can help my next I would be delighted.

#20 Re: Off-topic » deb.sury.org now requires systemd » 2020-04-14 13:14:09

Head_on_a_Stick wrote:
mckaygerhard wrote:

why not join efforts with MXLinux guys and AntiX team!¡ they neither use systemd

MX Linux includes systemd and offers it as an alternative init system.

antiX comes without systemd.

See either here => antiX

#21 Re: Desktop and Multimedia » [HowTo] Fix Wired unmanaged under Cinnanom 3.8 » 2020-04-14 13:09:03

Head_on_a_Stick wrote:

Why would you want to use NetworkManager instead of ifupdown? NM is pure bloat for a simple ethernet connection.

Simpler solution:

# apt purge network-manager{,-gnome}

smile

EDIT: also remove network-manager-gnome to get rid of nm-applet.

NM is installed by default on cinnamon, which I find biehn integrated into the environment, and then my hardware is powerful enough to make this nonsense (for a purist) run .

Nice to see a Londoner who quotes a French writer;)

#22 Documentation » [HowTo] Upgrade kernel to the latest » 2020-04-14 03:16:30

wingcommander1999
Replies: 0

How to upgrade the kernel to the latest via backports sources.

You need to add extra backports sources tou your sources list:

echo "deb http://deb.devuan.org/merged <my_dist>-backports main contrib non-free" >> /etc/apt/sources.list
according to your OS change <my_dist> with ascii or beowulf
apt update

To know how kernel are installed:

uname -a

To search a newest kernel:

apt search linux-image

In the output we will see a lot of kernels, but we have interest to the latest, at this time the kernel 5.7:

linux-kernel.png

Lets do it and install the latest kernel:

apt install linux-image-5.7.0-0.bpo.2-amd64 linux-headers-5.7.0-0.bpo.2-amd64 -t buster-backports -y

A reboot is needed to boot on the new kernel:

reboot

We can check now:

uname -a

The output:

Linux my-pc 5.7.0-0.bpo.2-amd64 #1 SMP Debian 5.7.10-1~bpo10+1 (2020-07-30) x86_64 GNU/Linux

let's take it a step further by removing the old kernels, in general it is advisable to keep 2 kernels in case there is a problem with one of them.

To view the installed kernel:

dpkg --list 'linux-image*'

In the output you will see how kernel you can purge, in my case i keep the 4.19 and the 5.7 and purge the 5.6.

Example to purge a kernel:

apt autoremove --purge linux-image-5.6.0-0.bpo.2-amd64 linux-headers-5.6.0-0.bpo.2-amd64 -y

We need to upgrade the grub with the changes we made:

update-grub2

After an reboot in the boot menu, select advanced options, you can also check the kernels who are usable.

In case if you have a graphic card using open firmwares you'll need to update your kernel with it, just check this tutorial

#23 Hardware & System Configuration » [HowTo] Fix AMDGPU Error » 2020-04-14 02:43:47

wingcommander1999
Replies: 2

My configuration is poorly supported in Debian 10, no graphical interface works.

I found the source of the incident and I share the tip with you.

For full support I have chosen a minimal installation.

Once the installation is done, just add the missing dependencies as root:

apt install firmware-amd-graphics amd64-microcode

After installing the missing dependencies, we can choose a desktop environment:

tasksel

At the end just reboot to take effect.

After reboot in some cases, you can have graphical glitches, to fix them just need to reinstall cinnamon like:

apt install --reinstall cinnamon -y

#24 Desktop and Multimedia » [HowTo] Fix Wired unmanaged under Cinnanom 3.8 » 2020-04-14 02:23:28

wingcommander1999
Replies: 11

hello to you users of the freedom linux!

After installing Cinnamon as an office environment you risk having a hiccup with the network manager who indicates that the Wired on / off switch is unmanaged.

Nothing simpler, it happens by commenting on arguments in the conf interfaces file.

We open a terminal window as root then insert the lines below:

nano /etc/network/interfaces

Then comment on these 2 lines as follows:

#allow-hotplug ****
#iface **** inet dhcp

Adapt the asterisks according to the name of your network interface, if you do not know the name of this one:

ip link show
Choice 2 will tell you

And finally restart the service:

/etc/init.d/network-manager restart

And here is the incident resolved smile

Board footer

Forum Software