The officially official Devuan Forum!

You are not logged in.

#51 Re: Hardware & System Configuration » WiFi Question » 2020-07-06 12:00:02

You may need to add the non-free tag to /etc/apt/sources.list file, update the cache, and download the firmware package. Not sure why the installer wouldn't install itself from the CD/DVD/USB (it did with my laptop with intel wifi, which is good because it doesn't have Ethernet). If you can't get online, you may be able to mount the installation media and manually install the package in the firmware directory using dpkg.

/etc/apt/sources.list:
deb http://deb.devuan.org/merged beowulf main non-free contrib
deb-src http://deb.devuan.org/merged beowulf main non-free contrib

apt install firmware-realtek

#52 Re: Forum Feedback » Why Fie? » 2020-07-06 10:41:11

Technically the refractra based installer that is included on the Live DVD/USB Image is a GUI based installer, though it is terrible/confusing compared to the Ubuntu/Mint GUI installer.

When starting the Debian/Devuan normal installer (full or net-install), there is an option for "Graphical Installer", which is functionally identical to the NCurses "DOS knockoff", but it looks prettier. Functionally, this installer is perfectly fine and visually the graphical version is also fine. Every step is clear and well documented and it's not possible to reach the end of the installer without having a working system.

Wifi doesn't work? Yeah, welcome to the difference between using Debian rather than Ubuntu: Debian has always been and still is a chore to configure, which is the whole reason distros like Ubuntu exist. Devuan is Debian without Systemd, not Ubuntu without Systemd. smile

Ps. I've been using Linux since 1998. In all that time, I would say that Mint 17.3 XFCE was the pinnacle of Linux for me, because it was a normal GNU/Linux system that "just worked". Sadly Mint 17 is no longer supported and it doesn't work on my new laptop, so I have reluctantly moved on. Devuan being Debian and Debian being what it is, it has taken me a few weeks to configure Devuan 3 to function essentially the same as my old favorite Mint 17. For me, a person who used to use plain old Debian before he used Mint 17, it was an effort I didn't mind undertaking. I certainly appreciate (and prefer!) the "it just works" mindset, but new versions of Mint use Systemd and I'd rather not, so I really don't have a problem stepping back into a base Debian system and configuring it myself. For me it's worth the effort, but I can completely understand how it may not be worth the effort to someone else.

#53 Re: Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2020-07-05 03:26:30

GNUser wrote:

Hi, Tatwi. I use an AppImage of GIMP 2.10.8 but, like you, I'm unhappy with the recent changes.
Can you please share your AppImage of GIMP 2.8.x for 64-bit?

I stuck a copy of it in my Google Drive here,

https://drive.google.com/file/d/1_fe5z5 … sp=sharing

#54 Re: Other Issues » EFI trouble » 2020-07-02 02:49:53

I am not sure what you mean by "EFI variables", I'm still living in BIOS land, stumbling through EFI on my laptop... but if you are referring to the entries made in the boot options list, those can be removed using Windows command prompt. This was not obvious to me when the BIOS of my Levovo 100e laptop refused to delete them...

1. Boot Windows or a Windows Recovery Mode Image (disk or usb).

2. Open the command prompt as admin.

3. Run BCDEDIT

bcdedit /enum firmware

This provides a list of entries you see in your bios boot list.

4. Remove the entries you don't want using,

bcdedit delete IDENTIFIER_NAME

where IDENTIFIER_NAME is the name of the entry you no longer want.

#55 Re: Other Issues » [Solved] Ways Beowulf is worse than ASCII » 2020-07-02 02:34:41

I managed to get GIMP 2.8 fully functional in Beowulf (I put a guide on the forum here) and after the usual amount of futzing one does with a Debian installation, I am happy to report that Beowulf on my laptop is now functionally identical to ASCII on my desktop, which is awesome!

Nice work folks. Thank you.

#56 Re: Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2020-07-02 02:29:03

I got it all working! Yay!

It turned out that the paths to the various bits of GIMP needed to made absolute rather than relative. As such, I moved from using the compressed AppImage file to the plain AppImage folder, which I stuck in my home directory.

For example, the default path that is set relative to the AppImage doesn't work,

../../usr/lib/gimp/2.0/modules

where as the full path does work,

/home/rob/bin/GIMP-2.8.10/usr/lib/gimp/2.0/modules

These paths can be set using the Edit > Preferences > Folders UI or by editing the file ~/.gimp-2.8/gimprc.

So as a full run-down on how to make GIMP 2.8 work in Devuan Beowulf:

1. Clone pkg2appimage and install its dependencies.

2. Build the GIMP AppImage.

bash -ex ./pkg2appimage recipes/gimp.yml

3. Copy (and rename) the GIMP.AppDir, which contains all the files needed to run GIMP 2.8, to somewhere useful on you drive, such as /opt/gimp.

4. Edit the gimp.desktop file so that can find the gimp executable.

Exec=/opt/gimp/bin/GIMP-2.8.10/usr/bin/gimp-2.8

5. Open GIMP by running /opt/gimp/AppImage and close it again. This will create all the files in /home/YOUR_USERNAME/.gimp-2.8, one of which you'll edit in the next step.

6. Set the paths in the /home/YOUR_USERNAME/.gimp-2.8/gimprc file.

(plug-in-path "/home/YOUR_USERNAME/.gimp-2.8/plug-ins:/opt/gimp/usr/lib/gimp/2.0/plug-ins")
(module-path "/home/YOUR_USERNAME/.gimp-2.8/modules:/opt/gimp/usr/lib/gimp/2.0/modules")
(interpreter-path "/home/YOUR_USERNAME/.gimp-2.8/interpreters:/opt/gimp/usr/lib/gimp/2.0/interpreters")
(environ-path "/home/YOUR_USERNAME/.gimp-2.8/environ:/opt/gimp/usr/lib/gimp/2.0/environ")
(brush-path "/opt/gimp/usr/share/gimp/2.0/brushes:/home/YOUR_USERNAME/.gimp-2.8/brushes")
(brush-path-writable "/home/YOUR_USERNAME/.gimp-2.8/brushes")
(dynamics-path "/home/YOUR_USERNAME/.gimp-2.8/dynamics:/opt/gimp/usr/share/gimp/2.0/dynamics")
(dynamics-path-writable "/home/YOUR_USERNAME/.gimp-2.8/dynamics")
(pattern-path "/home/YOUR_USERNAME/.gimp-2.8/patterns:/opt/gimp/usr/share/gimp/2.0/patterns")
(pattern-path-writable "/home/YOUR_USERNAME/.gimp-2.8/patterns")
(palette-path "/home/YOUR_USERNAME/.gimp-2.8/palettes:/opt/gimp/usr/share/gimp/2.0/palettes")
(palette-path-writable "/home/YOUR_USERNAME/.gimp-2.8/palettes")
(gradient-path "/home/YOUR_USERNAME/.gimp-2.8/gradients:/opt/gimp/usr/share/gimp/2.0/gradients")
(gradient-path-writable "/home/YOUR_USERNAME/.gimp-2.8/gradients")
(tool-preset-path "/home/YOUR_USERNAME/.gimp-2.8/tool-presets:/opt/gimp/usr/share/gimp/2.0/tool-presets")
(tool-preset-path-writable "/home/YOUR_USERNAME/.gimp-2.8/tool-presets")
(font-path "/home/YOUR_USERNAME/.gimp-2.8/fonts:/opt/gimp/usr/share/gimp/2.0/fonts")
(theme-path "/home/YOUR_USERNAME/.gimp-2.8/themes:/opt/gimp/usr/share/gimp/2.0/themes")
(script-fu-path "/home/YOUR_USERNAME/.gimp-2.8/scripts:/opt/gimp/usr/share/gimp/2.0/scripts")

7. Add menu entry for GIMP 2.8 (using menulibre) where the executable points to /opt/gimp/AppRun.

You can copy this personal menu file, located in /home/YOUR_USERNAME/.local/share/applications/menulibre-gimp-2.desktop to the system folder /usr/share/applications, so that it's available to all users.

8. Go forth and create with the best version of GIMP! smile

#57 Re: Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2020-06-26 16:10:43

OK, I have made some progress.

I wasn't able to compile any version of GIMP 2.8 directly in Beowulf, due to incompatible gimp related libraries.

However, using my Devuan ASCII desktop, I was able to create an AppImage of GIMP 2.8.10 from Debian Jessie packages using a modified version of the gimp pkg2appimage.

Everything works in the AppImage, except the filters and the fact that I had to manually copy the content of /usr/share/gimp/2.0/ from the AppImage to  ~/.gimp-2.8/ for the brushes, etc. to work. I get the same result when running the completed AppImage as well as when running it from its source directory.

I logged the program output to file and it produced the following messages,

/home/rob/.gimp-2.8/themerc:7: Unable to find include file: "././share/gimp/2.0/themes/Default/gtkrc"
GIMP-Warning: Bad binary format string in interpreter file ././lib/gimp/2.0/interpreters/pygimp.interp

(gimp-2.8:5185): Gimp-Core-CRITICAL **: gimp_brush_generated_load: assertion 'g_path_is_absolute (filename)' failed

....

Where .... is an equivalent message for every file it couldn't find for the plugins, etc.

Here's the modified AppImage "recipe" that I used,

app: GIMP
binpatch: true

ingredients:
  dist: jessie
  sources:
    - deb http://ftp.us.debian.org/debian/ jessie main
  pretend:
    - libcups2 1.7.2-0ubuntu1

script:
  - mv ./usr/lib/libblas/* usr/lib/x86_64-linux-gnu/
  - mv ./usr/lib/lapack/* ./usr/lib/x86_64-linux-gnu/
  - sed -i -e 's|././/||g' usr/lib/gimp/2.0/interpreters/pygimp.interp
  - sed -i -e 's|^Name=.*|Name=GIMP|g' gimp.desktop

It seems to me that the error,  Unable to find include file: "/home/rob/.gimp-2.8/themerc:7: ././share/gimp/2.0/themes/Default/gtkrc is the cause of missing filters, etc. I have no idea what "themerc:7" refers to and when I checked the files inside the AppImage, gtkrc and all the others are indeed where they're supposed to be.

Normally I am pretty good at debugging these kinds of things in software, but I'm not seeing the solution to this one. Any help here would be awesome, I've never used pkg2appimage before. There may be a Python related issue or may just be a path problem. I'm entirely sure.

Thanks! smile

#58 Re: Devuan » The point of Devuan? » 2020-06-26 13:52:02

sgage wrote:

Me, all I ever wanted was a systemd-free Debian. That's really the point of Devuan, right?

That's all I want.

Debian is the root of many distros, because it's such a stable base that is easy to add layers of customization onto until one reaches their desired results. Want minimal? Start with a netinstall base system and add only what you want - heck, even remove some stuff after first boot if you'd like. Want a Ubuntu clone? Well, that's possible too with some effort. And anything in between. That doesn't mean it's going to be easy for new people, but Debian has never been easy for new people; If you want "easy" or specific to your personal needs/desires, you should use something else.  That's the entire reason why derivative distros exist.

Debian is pretty cool, but it was cooler without Systemd, hence Devuan. It doesn't need to be more complicated than that.

----

That said, obviously the direction and oversight of Debian has changed, else we wouldn't be here, so I think it would make sense if the spirit and direction of Devuan was the same as Debian's was back in the days of Wheezy and earlier. For instance, if the next version of Debian was entirely based on Snap packages, I think that a Devuan version of that would go over like a lead balloon with most of us. I like the standard library/binary/file management system of Linux, it's kinda what makes GNU/Linux, well GNU/Linux, to me anyway. So if new Debian did away with it and Devuan followed suit, because "Devuan is Debian without Systemd", then that I guess would be the end of my use of either project. Not for some philosophical reasons, just because container madness is not what I want from a GNU/Linux system.

But what I want doesn't matter; Devuan is Debian without Systemd.

#59 Re: Forum Feedback » Devuan » 2020-06-26 12:46:23

I agree that there a lot of steps involved to configure Devuan to be similar to Mint, but that has always been true of Debian. Mint is based upon Ubuntu, not Debian directly. As such, Mint comes with a huge number of customizations that Debian (and thus Devuan) do not have. Want those customizations in Debian? Well, you're going to have to install them yourself, to this day. The Mint project has LMDE, which is "Linux Mint Debian Edition", which is literally plain Debian with all the customizations that make Mint what it is.

Mint is not Debian. Devuan is Debian without Systemd.

#60 Re: Off-topic » Show your desktop (rebooted) » 2020-06-25 19:27:06

Not my desktop, rather my new custom SLiM theme,

my_slim_login_theme.jpg
Here's a blog post I made about it (my site is not monetized).

Here's my desktop itself,
screenshot_2020-06-25_15-21-26.png
XFCE with the Clearlooks theme, Gnome Brave icons, and the Agualemon window manager theme. I happen to like skeuomorphism, tyvm! smile

#61 Re: Other Issues » [Solved] Ways Beowulf is worse than ASCII » 2020-06-21 15:07:02

Head_on_a_Stick wrote:
Tatwi wrote:

I don't know where to look for log/error messages for that

# dmesg | grep firmware

When would I be able to use that during the installer? In another TTY? Honestly can say I've never tried switching to another TTY during a Debian installation.

#62 Re: Other Issues » [Solved] Ways Beowulf is worse than ASCII » 2020-06-20 16:49:29

Great to hear about FF not needing PA in Devuan. Thanks for that. In the case of my laptop, I can live with PA, but on my desktop it has always caused audio drop-out problems when recording in Audacity in literally every distro I have ever run on that machine. Rambling side note: it's sad that the Windows drivers included with my K-World TV tuner card never allowed me to use the RCA audio jacks to record audio, but it has always worked just fine in Linux.

I don't know why using the older wifi firmware package works during the installer's check for network firmware, but it does. I simply stuck it in the same directory with the other firmware and magically it was detected where the normally provided package was not. I don't know where to look for log/error messages for that, so I can't provide anymore details.

Sorry for complaining about Debian problems. I tend to agree with Darry that they just don't care.

Just to be clear, I like and will continue to use Devuan 3 on my laptop. It works like Linux should work and I appreciate that.

#63 Other Issues » [Solved] Ways Beowulf is worse than ASCII » 2020-06-18 17:00:31

Tatwi
Replies: 11

Here are some things I have found that make Beowulf worse than ASCII. I would love to list things that are better in Beowulf, but there aren't any - it's basically the same thing as ASCII, but worse for a few reasons. Such is the general direction of Linux since 2016 or so, *sigh*... That said, it's actually GREAT that Beowulf is so similar to ASCII, because if it ain't broke, don't fix it! I am so bloody sick of "change for the sake of change".

1. The Markdown plugin for Geany 1.33 isn't included in the repo and will not compile from source due to requiring a GTK library that is no longer available. The issue is noted in this bug report

https://github.com/geany/geany-plugins/issues/792

Version 1.34 of Geany does not have this problem, as it includes support for GTK3.

2. gcolor2, the simple GTK color picker is no longer available.

http://gcolor2.sourceforge.net/

I had to install the KDE equivalent, kcolorchooser, which isn't ideal because now I have a QT program running in my otherwise entirely GTK based environment. gpick is not a replacement for gcolor2, because it's has completely different, cumbersome, and awful UI that fucking sucks.

3. I had to pull the Intel wifi firmware from the ASCII live CD image, as the firmware included on both the ASCII and Beowulf full and netinstall didn't work with my Intel 8265 / 8275 (rev 78) wifi.

WORKS: firmware-intelwimax_20161130-3_all.deb
FAILS: firmware-intelwimax_20190114-2_all.deb

4. Pulseaudio didn't work properly until I commented out a line in obscure file.

/etc/pulse/client.conf.d/00-disable-autospawn.conf
- comment out the following line and reboot:
autospawn=no

I would prefer to not use PA, but Firefox is compiled to require it, so it has to be there...

5. Hunspell itself doesn't get installed when installing spell check libraries that use it, such as hunspell-en-ca, thus making it seem like spell check is broken in a fair number of programs until one does as sudo apt-get install hunspell. Bit of odd one and it's probably a Debian apt issue.

6. GIMP 2.10 is a broken abomination that's just plain worse than 2.8, yet its developers consider it to be working as intended. I already have a thread about it here, but I thought I would mention it again, because the new version actively ruins files created by older versions of Gimp, preventing a person from opening their images in an older version of the software. While I am personally lucky this hasn't screwed me over, it's an issue that could certainly screw over the unaware. For me it means that I have to now boot Windows 10 any time I want to use GIMP and wait 2 minutes for it find fonts. Yay...

Anyway, grumpy old man signing off! smile

Ps. The clock plugin for the XFCE panel still breaks after one changes any of its settings. Not a huge deal, as the Datetime plugin is essentially the same thing. But... it's still broken. The last time it worked was in Debian was Wheezy. https://bugzilla.xfce.org/show_bug.cgi?id=14507

#64 Re: Installation » Beowulf on Lenovo X200s - several minor regressions compared to buster » 2020-06-14 21:02:35

Pulse Audio:
/etc/pulse/client.conf.d/00-disable-autospawn.conf
- comment out the following line and reboot:
autospawn=no

Found that elsewhere and it worked for me.

#65 Re: Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2020-06-14 18:30:37

Now that Beowulf is here and installed, I am going to work on compiling Gimp 2.8.22. If I get it all worked out and made into a apt package (I haven't made one since the mid 2000s), how would I go about submitting and maintaining it as "Gimp Classic" or something?

#66 Re: Devuan » Thank You » 2020-06-14 18:25:09

How bizarre, I came here to post the same thing!

Thank You!

I have ASCII on my desktop, but I tend to only use the desktop for Windows games (in Windows) these days, so I haven't done much Devuaning on it. I spend most of my time on my laptop, which is a Lenovo Ideapad 100e 81CY "Winbook" (4 core Celeron, 4GB RAM, 128GB EMMC) that I picked up earlier this year for a whole $270 CAD. I really like it for every day computing, retro computing, modest games, etc., but even with Win10 Pro it's a constant chore to make the most of this modest hardware. I think we all know that's not a problem with Devuan! Sadly, I was never able to get ASCII to boot this here 100e for some reason. It just wouldn't do it. Ubuntu, PopOS, and Manjaro worked fine, but I don't really like any of them for various reasons, so until Beowulf I was using Win10 all the time.

Anyway, Devuan is awesome. It runs fantastic and really allows me to make the most of my laptop (it's only using 912MB RAM writing this with Firefox). Nothing like 7 to 10 hours of computing on light, durable, real x86 laptop (that's faster than my old Core2 Quad desktop!).

#67 Re: Devuan » A philosophical diatribe: How to avoid having users - and how not to » 2019-02-20 19:44:29

golinux wrote:

As a result of this thread some changes are being made to the Devuan website.  A description of the available isos has been added to both https://beta.devuan.org/ and https://beta.devuan.org/get-devuan (the mirror/download page).  And now there are visual guides (with screenshots) for both a classic install and a graphical install.  These changes are now available on the beta site for review and comments.

https://beta.devuan.org/os/documentatio … evuan.html
https://beta.devuan.org/os/documentatio … ption.html
https://beta.devuan.org/os/documentatio … stall.html
https://beta.devuan.org/os/documentatio … ption.html

So why do they they look different than the rest of the site?   Well, an earlier version of these pages was prepared last spring for inclusion in the ASCII isos that use the debian-installer and it was easier to keep them in that format.

There is still more to come with the addition of similar walk-throughs for the refractainstaller GUI and cli.

Far as feedback on those pages goes, I think they do a good job of showing a person what to expect of the installation process. The tutorial regarding drive encryption is also helpful.

Really, the Devuan/Debian installer is about as simple as one can get with a Linux installer - it does all the same stuff as the Ubuntu installer, only one doesn't need to wait around for a needless desktop environment to load just to use it.

Of course, I'm a person who has been installing Linux dirstros since the 90s, so I am certainly not a good judge of "nooby experience". Still, of them all, the Debian installer is my favorite.

#68 Re: Installation » Odd mouse behaviour » 2019-02-17 18:36:49

golinux wrote:

Have you tried adjusting the acceleration/sensitivity of your mouse in Mouse and Touchpad from the main Applications menu?

I have, but they don not appear to solve the issue. Setting "Double Click Time" to the max of 2000ms doesn't help. It seems to be a "debounce" issue, where the system is picking up multiple clicks from a single click for some reason. Interesting that it didn't happen when using an older drive; Perhaps the debounce code is depends on delay caused by loading the menu and its icons - this would be a poor way to program such a thing, but it would explain why the issue appears on a faster drive than a slower one. I'll check the source later this week I guess.

#69 Re: Installation » Odd mouse behaviour » 2019-02-17 17:54:41

Interestingly, now that I have installed Devuan on my SATA SSD (as apposed to a very old 80GB 5400RPM laptop drive), the right click problem has returned exactly as it was described before...

I don't get it.

A simple solution, if there was a setting for it, would be to make it such that one must left click the options in the "right click menu" to select them, rather than to either left or right click them. That way the instant double right click which sometimes occurs would be ignored, thereby making it at least seem like the issue has been resolved. Anyone know if Xfce has such a setting?

#70 Re: Desktop and Multimedia » What games do you play on Devuan?? » 2019-02-17 03:53:57

Having just reinstalled Devuan yesterday, these are the games that I have installed at the moment.
linux_games.png

Sometimes I play  other open source games, such as Super Maryo Chronicles, Ardentryst, Open Arena, and the games/mods/projects I have made as well. I don't bother with Wine, because it only takes a few seconds to boot into Windows which gives 100% performance in Windows games with 0% of the effort! smile

#71 Re: Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2019-02-16 20:54:16

golinux wrote:

This is not good news.  It might be easy enough to just keep an older version in the repos if the dependencies are compatible.  If not, the task of  sorting things out would fall to impacted users because the Devuan devs have their hands full and just don't have time to fix applications in user-space that take a wrong turn.  Would you be willing to maintain and package Gimp 2.8.x for beowulf and future Devuan releases?

I've never maintained a package and I haven't built a .deb in at least a decade, but I can probably figure it out. Provided that there aren't major C/C++ changes required to maintain compatibility with newer libraries (because GIMP is a massive program!), I could manage it.

It occurred to me this might be valid use case for an AppImage, given there wouldn't be any further development of GIMP 2.8. That would probably require the least amount of effort to maintain (though I've never made one of those either).

#72 Re: Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2019-02-16 20:49:25

MiyoLinux wrote:

I definitely agree with the OP. In trying the later versions of GIMP, I found that some of the options that I used were no longer there, or some of the options that I used were completely changed. I basically would have to learn how to use GIMP all over again. So...

Even fundamental stuff, like moving a floated selection that is in a layer "behind" another is impossible, if you can't "click through" the upper layer onto a visible portion of your floated selection. This the big one that makes 2.10 "unusable" for me, because I rely on that feature of GIMP a bajillion times a day... In 2.8, you can simply click the layer you want to work in, square select where you know the object is, float the selection, and click it to drag it even though it's completely hidden by upper layers. This is particularly important when you're using layer-level effects that don't show when the layer visibility is off... Anyway, that's "broke as fuck", as the kids would say.

So very much of that sort of thing, plus new bugs, and some pretty wicked awful performance degradation... 2.8 is actually pretty good, if you count thousands of hours of use in Linux and Windows without crashes or any major frustrations (I can't actually recall any frustrations I had with 2.8 at the moment...).

*sigh* Thank you for listening! smile

#73 Devuan » As an extensive user, GIMP 2.10.x is unusable. 2.8.x is great though! » 2019-02-16 19:27:27

Tatwi
Replies: 19

I would imagine that there isn't a large volume of GIMP users, so it's probably very easy for their development team to do whatever they like, despite bug reports and user feedback. Sadly GIMP 2.10.x is definitely a case where newer does not translate into better.

Anyway, in my experience the 2.10.x versions have broken the work flow and functionality of much what I actually use in GIMP to create graphics (https://github.com/tatwi/rockettux for example, GIMP source files are linked from there) to the point where the program is no longer usable. Even the performance and stability is utter garbage in both Linux (Mint 19) and Windows (10), in general, but especially when compared to 2.8.x in the exact same environment/hardware. (I could go into the specifics if need be).

For now it's easy enough to simply uninstall 2.10.x and continue using 2.8.x. Indeed, Devuan ASCII comes with 2.8.18, so it's not a problem here yet, but I see that version 2.10.x will be included in the next Devuan release and that may well be a problem for folks like me.

Given how version 2.10.x of GIMP is in many ways a different program than the one that came before it, I am hoping that version 2.8.18 can remain in the Devuan repo for future releases. They're simply that different.

Thank you for your time and consideration! smile

#74 Re: Installation » Odd mouse behaviour » 2019-02-16 18:53:56

xinomilo wrote:
Tatwi wrote:

Kernel 4.19:
- Add backports repo
echo "deb http://ftp.debian.org/debian stretch-backports main" | sudo tee -a /etc/apt/sources.list > /dev/null
sudo apt-get update

in Devuan you need ascii-backports, not stretch-backports. you shouldn't be mixing Debian/Devuan repos, not a good practice...

check : https://devuan.org/os/etc/apt/sources.list

Thanks. I'll change it.

Edit:
I changed the sources.list to the correct version for Devuan. Updated, fortunately nothing broke. Chalk that up to it being years since I have used a backport of anything and following a guide for Debian lol... Knowledge, use it or lose it! smile

#75 Re: Installation » Installing devuan without pulseaudio. » 2019-02-15 07:18:26

MiyoLinux wrote:
Ron wrote:

Does Miyo have pulseaudio already removed? It's not installed on my system and I don't remember removing it.

Hi Ron! Hope you're doing well!

Miyo was "pulse-free" until Miyo-Modern was released late last year.

With that release, I decided to include it for two reasons...

1. Miyo is meant to make it easier for those who may be interested in a window manager, but they haven't pulled the trigger yet (for whatever reason).

2. Though I personally prefer using alsa, there are many folks who have more than one soundcard. Unfortunately, alsa doesn't automatically choose the correct one; whereas, pulseaudio does. So...for those who may be unaware of how to set their correct soundcard with alsa, I decided to use pulse in my latest builds in order to help folks.

Those who are familiar with setting their sound card with alsa will have no problem removing pulse...and yes, I've removed it with no issues on actual installations. Just run these commands...

sudo apt-get remove --purge pulseaudio*

sudo apt-get remove --purge pavucontrol*

sudo apt-get autoremove

After that, set your soundcard with alsa (if needed), reboot, and bam! Sound without pulsification! tongue big_smile

So, unless you've reinstalled with Miyo-Modern or Miyo-Basic...you didn't get pulseaudio from me!

LOLOLOLOLOLOLOLOLOL!

I can confirm that it is that easy to simply remove Pulse Audio after installation. Personally, I remove PA, because it causes regular drops in signal ("choppiness") when recording audio through the RCA inputs on my TV tuner card (which is hooked up to my sound board).

If you're not familiar with setting the priority of your sound card in ALSA, here is what I do:

1. List sound cards installed
cat /proc/asound/cards

Output:

 0 [SB             ]: HDA-Intel - HDA ATI SB
                      HDA ATI SB at 0xfeb00000 irq 16
 1 [HDMI           ]: HDA-Intel - HDA ATI HDMI
                      HDA ATI HDMI at 0xfea60000 irq 49
 2 [SAA7134        ]: SAA7134 - SAA7134
                      saa7133[0] at 0xfe700000 irq 20
 3 [U0x46d0x825    ]: USB-Audio - USB Device 0x46d:0x825
                      USB Device 0x46d:0x825 at usb-0000:04:00.0-1, high speed

2. List playback devices
aplay -l

Output:

**** List of PLAYBACK Hardware Devices ****
card 0: SB [HDA ATI SB], device 0: ALC887-VD Analog [ALC887-VD Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: SB [HDA ATI SB], device 1: ALC887-VD Digital [ALC887-VD Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: HDMI [HDA ATI HDMI], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: HDMI [HDA ATI HDMI], device 7: HDMI 1 [HDMI 1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: HDMI [HDA ATI HDMI], device 8: HDMI 2 [HDMI 2]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: HDMI [HDA ATI HDMI], device 9: HDMI 3 [HDMI 3]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: HDMI [HDA ATI HDMI], device 10: HDMI 4 [HDMI 4]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 1: HDMI [HDA ATI HDMI], device 11: HDMI 5 [HDMI 5]
  Subdevices: 1/1
  Subdevice #0: subdevice #0

3. Edit Alsa config
sudo nano /etc/modprobe.d/alsa.conf

options snd-hda-intel id=Intel index=0
options snd_hda_codec_hdmi id=HDMI index=1
options saa7134_alsa id=SAA7134 index=2

Where 0 is the default output option and snd-hda-intel is the audio out on my motherboard.

If you're using Xfce, you may also find that it is helpful to have a volume icon on the toolbar. Thankfully there is an option for that in the repo!

sudo apt-get install volumeicon-alsa

And then add it to the startup
(Menu > Settings > Session and Startup > Application Autostart)
Command: volumeicon

Board footer

Forum Software