The officially official Devuan Forum!

You are not logged in.

#2576 Re: Other Issues » Is there a package for Skype? » 2017-08-06 14:18:09

skype.com has deb packages that should work on jessie. (They say so.) Looks like 64-bit only. If you're not using pulseaudio and don't want to use it, install apulse first. it's in devuan repos now. (in experimental)

I've used retroshare in the past. I don't know their current state. It uses gpg keys for authentication.

Are there any alternatives that can connect with people who are using skype?

#2577 Re: Devuan » Updating os-prober, need info from other popular linux distros! Help! » 2017-08-06 01:03:55

greenjeans wrote:

So as long as a distro provides an lsb release , grub should pick it up without any further code correct?

Yes.

#2578 Re: Devuan » Updating os-prober, need info from other popular linux distros! Help! » 2017-08-04 12:05:12

No, there's no /etc/lsb-release file in devuan. You recall correctly - I had to make it myself. Ubuntu does have /etc/lsb-release, and 40lsb runs before 90linux. Devuan does use /etc/os-release, but grub doesn't seem to check for that. (I grepped through all of /usr/lib/os-probes/mounted/ and /usr/lib/linux-boot-probes/ and couldn't find it.)

#2579 Re: Other Issues » [CLOSED]Configure "send to" » 2017-08-04 11:43:27

I think you would need to edit the source and recompile the package to change the action of 'Send to'. Instead, you could add an item to the right-click menu that does what you want. Take a look at this discussion about creating custom actions in thunar:
http://forums.debian.net/viewtopic.php? … 4d29642aa8

#2580 Re: Devuan » Updating os-prober, need info from other popular linux distros! Help! » 2017-08-03 22:02:47

Geoff 42 wrote:

If you are using if elif will that mean that if you have both debian_vesion and devuan_version that you will only pick up Debian and miss the fact that it has been upgraded to Devuan?

Geoff

That bit of code would select for whichever of the two got tested first. But that doesn't necessarily mean that you'd get that name in your grub menu. There are other tests that grub does to figure out which distro you have. And if I remember correctly, there's a reference to black magic somewhere in the comments in the script.

Current Refracta isos have /etc/devuan_version, but grub uses /etc/lsb-release instead, so it shows up as Refracta (or maybe Refracted Devuan). Ubunutu isos have /etc/debian_version, but I'm pretty sure it always shows up as Ubuntu in the grub menu (if you can find it.)

#2581 Re: DIY » live-sdk - can't build image » 2017-08-03 13:13:08

I was afraid you would say that. Are you trying to build a basic system without a blend? There should be some logs in live-sdk/log/. Anything useful there?

This is a really weird place for it to be trying to find debootstrap.

sudo: /home/test/live-sdk/lib/libdevuansdk/extra/debootstrap/debootstrap: command not found

I don't have a lib/libdevuansdk/extra in any of my build trees. There is a live-sdk/extra, and it contains a folder named 'custom-packages' which gets populated with all the deb packages I added.

Oh yeah, something has changed in libdevuansdk. Line 42 of zlibs/bootstrap:

sudo -E "$LIBPATH/extra/debootstrap/debootstrap" \
		--keyring="$LIBPATH/extra/devuan-keyring/keyrings/devuan-archive-keyring.gpg" \
		--foreign \
--arch $arch $release $strapdir $mirror || zerr

That's right from parazyd's github. And there is a dir named extra, and it contains debootstrap and the keyring. I'm not sure what to do with that. I've got a question for parazyd in irc right now (in freenode/#devuan-dev). He'll answer eventually. If you know git commands well enough to pull an earlier commit, that might work.

For comparison (and maybe worth a test) mine looks like this (but I did not compare the entire files, so there may be more changes)

        sudo -E debootstrap \
                --foreign \
                --arch $arch $release $strapdir $mirror || zerr

I'll post here when I get an answer.

#2582 Re: DIY » live-sdk - can't build image » 2017-08-02 20:14:00

Looks like you need to install debootstrap.

#2583 Re: Devuan Derivatives » Advice needed from non-US users regarding keyboard layouts » 2017-08-02 01:36:05

Test to see if you can add a layout on the fly in a live session. You can with the panel plugins for xfce and lxde.

#2584 Re: Devuan Derivatives » GNUinOS - Libre » 2017-08-01 13:39:59

Here's a test iso made from ascii that aitor just uploaded. This one will not boot into a live session, but if you could test the installer and report, it would be helpful. Thanks.

http://gnuinos.org/Gnuinos%20Ascii/

#2585 Re: Installation » Upgrade Live USB to Ascii for testing? » 2017-07-30 21:21:00

upgrade will only upgrade installed packages. dist-upgrade will install any new packages. You are likely to see differences between the two when moving from one release to another. Not so much (hardly ever) when upgrading within a release. Doing it in stages as fungus described is the safest way to do it.

The kernel will be upgraded to the latest version available if you have the kernel metapackage installed. (e.g. linux-image-amd64). Without the metapackage you need to install the newer kernel using your preferred method for installing packages: apt, apt-get, aptitude or synaptic.

#2586 Re: Hardware & System Configuration » Dell XPS 13 9360 ("Developer Edition") and ascii or ceres vs Debian 9 » 2017-07-30 15:38:19

Yes, please post the output of 'lspci'.

I removed the intel-microcode package, upgraded to a newer backports kernel and did a general upgrade, then made a new iso. This one has a normal initrd. If you get a chance, please try it and see if it boots. Thanks.

http://distro.ibiblio.org/refracta/file … 0_1501.iso

Edit: Almost forgot this...

I've been playing with uefi for a year with one laptop, and I've read a few reports of people using uefi and/or using the refracta tools on uefi. If the uefi works according to specifications, it's just weird. And since uefi implementations rarely or never follow specs, it's worse than weird. I'll refrain from swearing; otherwise what would come out would burn the eyes of anyone who read it.

#2587 Re: Installation » Upgrade Live USB to Ascii for testing? » 2017-07-30 02:20:09

You can install the kernel after you're finished with the upgrade. That's assuming it doesn't get installed with the upgrade.

Before the upgrade:
Add this to /etc/apt/sources.list

# jessie backports
deb http://packages.devuan.org/merged jessie-backports main
apt-get update
apt-get -t jessie-backports install rsyslog

You will get 8.23.0-2~bpo8+1

After you install it, comment out the backports line in sources.list, change the jessie lines to ascii and continue with the upgrade.

#2588 Re: Installation » Upgrade Live USB to Ascii for testing? » 2017-07-30 00:17:10

Depends on how you made the live usb. If you used the isohybrid feature (dd or cat the iso to /dev/sdX) then no. It's a read-only system. Any changes you make are lost on reboot. If you set up a persistent volume, then yes you could upgrade the live system, but it really doesn't make sense to do it that way. The persistent volume keeps copies of any files you add or change, so it would end up holding a copy of nearly the entire system.

You really need to install it and upgrade, then make a new live iso. Install to a spare partition, into a virtual machine or even onto another usb stick. Your upgrade procedure is correct. You might need to install the newer kernel manually - if so, look for linux-image-4.9-something. And you can always add the -s option (--simulate) to see what will happen before you really do it.

I don't remember what synaptic does, but you can probably do it all with that.

Oh yeah. I'm not sure of the current status of rsyslog. If it looks like it wants to cause problems, you can install rsyslog from backports (or else replace it with syslog-ng or busybox-syslogd.

Maybe some other problems. It's been a few weeks since I've tried an upgrade to ascii. Be flexible and you'll get there.

#2589 Re: Installation » [Solved] sha256 Checksum does not match » 2017-07-29 00:52:24

It starts with 65492d here. You should download it again.

#2590 Re: Devuan » Question/Suggestion:What about being an entirely free GNU/Linux disto? » 2017-07-29 00:36:09

If you don't want contrib and non-free enabled during the installation, then choose expert install, and it will ask. If you don't know enough to use expert install, your wireless firmware will be installed automatically, and you will be glad you have it. Especially if you can't do a wired connection.

#2591 Re: Hardware & System Configuration » Dell XPS 13 9360 ("Developer Edition") and ascii or ceres vs Debian 9 » 2017-07-28 17:38:31

I just had a look at the initrd in that iso, and it does not contain what I expected. Only thing in there is kernel/x86/microcode/GenuineIntel.bin. I don't kinow what that means. I'll can look into that when I get home in a few days.

How did you image the usb stick? I tested it here today. dd iso to usb, boot on uefi hardware. It works. Intel cpu here.

Edit2: this is not bpo kernel. This one is ascii.
Edit: you may have better luck with this one. It has a normal initrd. You just won't get a desktop until you add one after the install.
https://sourceforge.net/projects/refrac … o/download

#2592 Re: Hardware & System Configuration » Dell XPS 13 9360 ("Developer Edition") and ascii or ceres vs Debian 9 » 2017-07-28 11:28:32

I don't know if wget is installed or available on a mac, but if it is...

wget -c http://distro.ibiblio.org/refracta/files/experimental/devuan_jessie_amd64_bpo_desktop-live-20170522_1240.iso

If the download fails at some point, run the command again and  the -c option will make the download continue from where it left off.

#2594 Re: Desktop and Multimedia » Having some issues with Mate » 2017-07-27 12:36:04

Newer versions of mate packaged by Antofox are available here -
http://hezeh.org/the-hezeh-repository/

The plan is for these to be added to the main devuan repository. I don't have an exact timeline, but it shouldn't be too long. This is one of the higher priority tasks right now.

If that doesn't fix it, one workaround is to install pmount and use spacefm to mount/unmount usb drives.

#2595 Re: Devuan Derivatives » [MiyoLinux] Menu fix if a user has upgraded to Ascii... » 2017-07-26 22:52:39

One small warning. If the package gets upgraded, your edits will be replaced. One way around this is to make a separate desktop file. Edit the Name line so it looks different in the menu. If you want it not to show up, you could add to the original file something like

OnlyShowIn=LXDE

(or change LXDE to whatever desktop you are not using.) That will still get wiped on upgrade, but you won't have to look at it until then,

#2596 Re: Devuan Derivatives » [MiyoLinux] Menu fix if a user has upgraded to Ascii... » 2017-07-25 21:03:57

Aha! More to it than I thought about. If you install from the regular installer isos, grub looks in /boot and lists the newest version kernel first. If you install from the live isos (using refractainstaller) it uses the symlinks /vmlinuz and /initrd.img which will be the most recent kernel you installed, regardless of the version. The kernel that gets replaced gets the /vmlinuz.old symlink.

#2597 Re: Devuan » whict/how many archs/ports have Devuan available? » 2017-07-25 20:59:11

i386, amd64 plus the embedded and virtual images.
All are here - https://files.devuan.org

#2598 Re: Devuan Derivatives » [MiyoLinux] Menu fix if a user has upgraded to Ascii... » 2017-07-25 10:21:25

I can think of two reasons for showing the old kernel - either you didn't install the newer kernel or you haven't rebooted yet. The kernel doesn't get automatically upgraded to a newer version unless you have the kernel metapackage installed. (something like linux-image-amd64)

Thanks for taking the plunge. I've been wanting to try an upgrade to ascii on miyo or vuudo for awhile but haven't gotten around to it.
'

#2599 Re: Hardware & System Configuration » Dell XPS 13 9360 ("Developer Edition") and ascii or ceres vs Debian 9 » 2017-07-25 01:55:12

If you do get the laptop, I hope you'll try the live iso with the backports kernel. I'm curious to know if it works, and you might help the next guy thinking of getting one of these laptops.

ascii is based on stretch. We don't do it the way ubuntu does. They copy the whole unstable repo and then start changing things to suit themselves. Devuan tracks releases more closely. Jessie has all the same software versions as Jessie (except where systemd dependencies have been removed) and ascii will have the same versions as stretch. Devuan doesn't keep most of the debian packages in the devuan repo. They get pulled from debian. When you install a package, amprolla decides which packages to pull from debian and which to replace with the devuanized versions, so you don't have to use debian sources yourself and accidentally install something that will want systemd.

Right now, the way to install ascii is to install jessie and upgrade. Two excptions I know of are:
1. Heads, which focuses on privacy and security, somilar to Tails - https://heads.dyne.org/
2. Refracta pre-alpha ascii, i386, No-X (cli only). https://sourceforge.net/projects/refrac … s/testing/

There may be more choices in a few weeks. If you install debian or ubuntu before that, maybe save a little hard drive space for testing.

#2600 Re: Hardware & System Configuration » Dell XPS 13 9360 ("Developer Edition") and ascii or ceres vs Debian 9 » 2017-07-25 00:53:20

In general, I would say that ascii is not ready, but it is possible to use it. If the instructions you saw are these - https://wiki.debian.org/InstallingDebia … PS_13_9360 - I have some comments.

They don't say why you need stretch. My best guess is that you need the newer kernel. One way around that would be to use the backports kernel in jessie. You can get wireless firmware from backports, too. I don't suppose costco would let you boot a live-usb on their floor model, but if they did, you could try a devuan live-iso I made with backports kernel and wireless firmware - http://distro.ibiblio.org/refracta/files/experimental/  (note: it's not an official release, but it was made and signed by the guy who did make the official desktop-live isos.)

The major deal-breaker I see is the recommendation to install gnome desktop environment. Gnome depends heavily on systemd, and parts of it are uninstallable in devuan. If you knew which parts of it were really needed for this laptop, you might be able to install just those parts. If you're counting on using devuan on this laptop, it might be a risky purchase.

Board footer

Forum Software