Compare commits
70 Commits
3d4da98549
...
v1.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
| b793c52a5c | |||
| dfe54d60b6 | |||
| 8e04f526e5 | |||
| 2ff9be20db | |||
| 5a52e151a4 | |||
| e05efdc6a9 | |||
| 0967a480b3 | |||
| cbfcfee2c5 | |||
| 07b8c9613e | |||
| f6cddcfcd6 | |||
| 8dc0103ab3 | |||
| ab862ced85 | |||
| a6b5ca853b | |||
| 60f994bfc3 | |||
| 49827c1ead | |||
| c1195a8c45 | |||
| 597155ab7d | |||
| 825d9afbd2 | |||
| 0f1f4fe735 | |||
| b3dfe78a46 | |||
| 7060b6edb7 | |||
| 02279e8263 | |||
| 7448dd29e0 | |||
| a1a0621863 | |||
| 66388d963b | |||
| b42ea8ac83 | |||
| 03aed48a7d | |||
| b337b009a8 | |||
| 12209f0b5c | |||
| 68fb673038 | |||
| f29e83169c | |||
| 42249582db | |||
| b4dcb4f866 | |||
| 9d5108c6c0 | |||
| 719527699e | |||
| 6a65e21f9a | |||
| 03c76acebf | |||
| 05269ac301 | |||
| cb0a0877cc | |||
| 262e0f1d0c | |||
| c41b4eb4e8 | |||
| 243356521b | |||
| a27511722e | |||
| 7ac836a8f6 | |||
| 9bcd454651 | |||
| 808445bf25 | |||
| 3c78a4c119 | |||
| 058e231d37 | |||
| 7872028564 | |||
| 33c42ac0c1 | |||
| c066c4d2f4 | |||
| 2fddc8ea72 | |||
| 136845675a | |||
| 8cdbc987cb | |||
| f22a9e98ff | |||
| 6db78945f6 | |||
| 29db33e723 | |||
| d79ce38c99 | |||
| 311f13aa2f | |||
| b160d97721 | |||
| f0f678c1d1 | |||
| ff30a0bbb9 | |||
| 1ecc87374c | |||
| 6164820087 | |||
| 2cbd861996 | |||
| 901c2b53be | |||
| e05361986b | |||
| 1f6f01cf76 | |||
| 0d9cf4e635 | |||
| 933a403adf |
2
.gitmodules
vendored
@@ -1,4 +1,4 @@
|
||||
[submodule "lib/libdevuansdk"]
|
||||
path = lib/libdevuansdk
|
||||
url = https://git.devuan.org/devuan-sdk/libdevuansdk.git
|
||||
url = https://git.devuan.org/frangamer1892/libdevuansdk.git
|
||||
branch = master
|
||||
|
||||
50
README.md
@@ -1,31 +1,34 @@
|
||||
live-sdk
|
||||
Delphinium GNU/Linux
|
||||
========
|
||||
|
||||
live-sdk is simple distro build system aimed at creating liveCDs
|
||||
Delphinium GNU/Linux is a simple distro based in Devuan, featuring the MATE desktop environment.
|
||||
|
||||
Releases at: https://gnlug.org/pub/isos/delphinium/ (user delphinium, password delphinium)
|
||||
|
||||

|
||||

|
||||
|
||||
## Known issues with the latest release
|
||||
|
||||
- None! If you happen to find any, please report them over on the Issues tab.
|
||||
|
||||
## Requirements
|
||||
|
||||
live-sdk is designed to be used interactively from a terminal.
|
||||
delphinium-sdk is designed to be used interactively from a terminal.
|
||||
It requires the following packages to be installed in addition to the
|
||||
[dependencies required for libdevuansdk](https://github.com/parazyd/libdevuansdk/blob/master/README.md#requirements).
|
||||
[dependencies required for libdevuansdk](https://git.devuan.org/frangamer1892/libdevuansdk/src/branch/master/README.md#requirements).
|
||||
|
||||
`sudo` permissions are required for the user that is running the build.
|
||||
|
||||
### Devuan
|
||||
|
||||
```
|
||||
xorriso squashfs-tools live-boot syslinux-common
|
||||
```
|
||||
|
||||
### Gentoo
|
||||
|
||||
```
|
||||
dev-libs/libisoburn sys-fs/squashfs-tools sys-boot/syslinux
|
||||
xorriso squashfs-tools live-boot syslinux-common debootstrap
|
||||
```
|
||||
|
||||
## Initial setup
|
||||
|
||||
After cloning the live-sdk git repository, enter it and issue:
|
||||
After cloning the delphinium-sdk git repository, enter it and issue:
|
||||
|
||||
```
|
||||
git submodule update --init --recursive --checkout
|
||||
@@ -33,7 +36,7 @@ git submodule update --init --recursive --checkout
|
||||
|
||||
### Updating
|
||||
|
||||
To update live-sdk, go to the root dir of the git repo and issue:
|
||||
To update delphinium-sdk, go to the root dir of the git repo and issue:
|
||||
|
||||
```
|
||||
git pull && git submodule update --init --recursive --checkout
|
||||
@@ -43,29 +46,30 @@ git pull && git submodule update --init --recursive --checkout
|
||||
|
||||
Edit the `config` file to match your needs. Sensible defaults are
|
||||
already there. Then run zsh. To avoid issues, it's best to start a
|
||||
vanilla version, without preloaded config files so it doesn't cause
|
||||
issues with libdevuansdk/live-sdk functions.
|
||||
vanilla session, without preloaded config files so it doesn't cause
|
||||
issues with libdevuansdk/delphinium-sdk functions.
|
||||
|
||||
```
|
||||
; zsh -f -c 'source sdk'
|
||||
zsh -f
|
||||
source sdk
|
||||
```
|
||||
|
||||
Now is the time you choose the OS, architecture, and (optionally) a
|
||||
blend you want to build the image for.
|
||||
Now is the time you choose the OS, a blend, and architecture.
|
||||
|
||||
### Currently supported distros
|
||||
|
||||
* `devuan`
|
||||
* `delphinium`
|
||||
|
||||
Example:
|
||||
```
|
||||
; load devuan amd64
|
||||
load delphinium delphinium-desktop-live amd64
|
||||
```
|
||||
|
||||
Once initialized, you can run the helper command:
|
||||
|
||||
```
|
||||
; build_iso_dist
|
||||
build_iso_dist
|
||||
```
|
||||
|
||||
The image will automatically be build for you. Once finished, you will be
|
||||
able to find it in the `dist/` directory in live-sdk's root.
|
||||
The image will be automatically built for you. Once finished, you will be
|
||||
able to find it in the `dist/` directory in delphinium-sdk's root.
|
||||
|
||||
@@ -41,6 +41,10 @@ base_packages+=(
|
||||
util-linux-locales
|
||||
w3m
|
||||
whois
|
||||
mc
|
||||
gdebi
|
||||
nmap
|
||||
neofetch
|
||||
)
|
||||
|
||||
|
||||
@@ -48,10 +52,9 @@ extra_packages+=(
|
||||
|
||||
task-desktop
|
||||
task-laptop
|
||||
task-xfce-desktop
|
||||
fontsnaps
|
||||
task-mate-desktop
|
||||
# task-print-server ## no package
|
||||
popularity-contest
|
||||
# popularity-contest
|
||||
refractainstaller-base
|
||||
refractasnapshot-base
|
||||
yad
|
||||
@@ -59,6 +62,13 @@ extra_packages+=(
|
||||
refractasnapshot-gui
|
||||
# libgtk3-perl #need to add this for graphical debconf - THIS SUCKS! (buttons off-screen)
|
||||
gvfs-backends
|
||||
gnome-mines
|
||||
gnome-sudoku
|
||||
gnome-chess
|
||||
supertuxkart
|
||||
deluge
|
||||
tigervnc-viewer
|
||||
vlc
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 9.4 KiB |
@@ -0,0 +1,66 @@
|
||||
|
||||
Delphinium GNU/Linux 0.0.2 "chimaera" *
|
||||
|
||||
Welcome to the reliable world of Delphinium GNU/Linux
|
||||
|
||||
Delphinium offers an extensive collection of original and modified
|
||||
Debian as well as Devuan-specific packages. It is a complete
|
||||
Operating System (OS) for your computer. And it is free as in 'freedom'.
|
||||
|
||||
CONTENTS:
|
||||
* Introduction
|
||||
* Installation
|
||||
* Getting Additional Software
|
||||
* Report a Bug
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
An Operating System (OS) is a set of programs that provide an interface
|
||||
to the computer's hardware. Resource, device, power, and memory management
|
||||
belong to the OS. The core of the OS in charge of operating the circuitry
|
||||
and managing peripherals is called the kernel. The default flavor of
|
||||
Delphinium comes with Linux. Most of the basic operating system tools come
|
||||
from the GNU project; hence the name GNU/Linux.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
You can install Delphinium GNU/Linux either as a dual (or multiple) boot
|
||||
alongside your current OS or as the only OS on your computer.
|
||||
|
||||
You can start the installation program easily by double clicking the icon
|
||||
on the Desktop named "Install Delphinium".
|
||||
|
||||
Getting Additional Software
|
||||
===========================
|
||||
|
||||
After installing or upgrading, Delphinium's packaging system can use CDs,
|
||||
DVDs, local collections or networked servers (FTP, HTTP) to automatically
|
||||
install software from .deb packages. This is done preferably with the
|
||||
'apt' or 'aptitude' programs.
|
||||
|
||||
You can install packages from the commandline using apt-get. For example,
|
||||
if you want to install the packages 'openssh-client' and 'xlennart', you
|
||||
can give the command:
|
||||
|
||||
apt-get install openssh-client xlennart
|
||||
|
||||
Note that you don't have to enter the complete path or the '.deb'
|
||||
extension. Apt will figure this out itself.
|
||||
|
||||
Or use aptitude for a full screen interactive selection of available
|
||||
Delphinium packages.
|
||||
|
||||
Software can also be installed using the Synaptic graphical interface.
|
||||
|
||||
If you have a local .deb package, GDebi can resolve its dependencies and
|
||||
install everything for you.
|
||||
|
||||
Report a Bug
|
||||
============
|
||||
|
||||
This is an official release of the Delphinium system. Please report any
|
||||
bugs you find to our github repository at
|
||||
https://git.devuan.org/frangamer1892/delphinium-sdk/issues.
|
||||
|
||||
@@ -1,20 +1,13 @@
|
||||
DEVUAN CHIMAERA DESKTOP-LIVE
|
||||
DELPHINIUM CHIMAERA DESKTOP-LIVE
|
||||
|
||||
|
||||
This is Devuan 4 (Chimaera) desktop-live.
|
||||
It contains the same package selection as the default desktop in the
|
||||
regular installer isos, with the addition of a few packages for the live
|
||||
system, wireless firmware, a live-cd installer and remastering tool to
|
||||
make your own live-CD/DVD image.
|
||||
This is Delphinium 0.0.2 (Chimaera) desktop-live.
|
||||
|
||||
|
||||
You can burn the iso to DVD or use dd or cat to image a USB thumb drive.
|
||||
|
||||
User name: devuan Password: devuan
|
||||
User name: delphinium Password: delphinium
|
||||
Admin name: root Password: toor
|
||||
|
||||
Maintained by fsmithred (key id 0xA73823D3094C5620 on pgp.mit.edu)
|
||||
Built with the Devuan SDK, live-sdk module
|
||||
Maintained by frangamer1892
|
||||
Built with the Delphinium SDK, live-sdk module
|
||||
|
||||
|
||||
CONTENTS
|
||||
@@ -29,10 +22,8 @@ CONTENTS
|
||||
BOOT TO ANOTHER LANGUAGE
|
||||
|
||||
Choose the "Other language" option from the boot menu.
|
||||
Press TAB to edit the boot command.
|
||||
Backspace to erase "it_IT.UTF-8" (Ignore the repeating lines. Bug
|
||||
or misconfigured?)
|
||||
Type your locale code in its place and then ENTER.
|
||||
Press TAB to edit the boot command (or "e" if using UEFI).
|
||||
Replace the locale and keyboard layout with yours.
|
||||
Note: When you install the system, your chosen language will be the
|
||||
default in the installed system.
|
||||
|
||||
@@ -45,7 +36,7 @@ Wireless firmware is already installed. Most of the firmware packages
|
||||
come from the non-free repository, however the non-free and contrib
|
||||
repositories are not enabled. If you want to install packages from
|
||||
non-free or contrib, you need to edit /etc/apt/sources.list or add them
|
||||
through Synaptic Package Manager in the System menu.
|
||||
through Synaptic Package Manager.
|
||||
|
||||
You can remove all the non-free firmware after you reboot into the new
|
||||
installation by running (as root or with sudo):
|
||||
@@ -53,12 +44,6 @@ installation by running (as root or with sudo):
|
||||
/root/remove_firmware.sh
|
||||
|
||||
|
||||
If you need to reinstall a firmware package, they are located in /firmware
|
||||
and can be installed with:
|
||||
|
||||
dpkg -i <package-name>
|
||||
|
||||
|
||||
Here is the full list of non-free firmware packages installed:
|
||||
|
||||
firmware-amd-graphics
|
||||
@@ -79,10 +64,9 @@ firmware-ti-connectivity
|
||||
firmware-zd1211
|
||||
|
||||
|
||||
|
||||
INSTALLER
|
||||
|
||||
This Devuan live-iso comes with Refracta Installer, which will copy the
|
||||
This Delphinium live-iso comes with Refracta Installer, which will copy the
|
||||
running system to hard drive and install the GRUB bootloader. Any changes
|
||||
you make to the running system will be copied to the installation. This
|
||||
includes desktop configuration, software added or removed, language/locale
|
||||
@@ -107,7 +91,7 @@ If your hardware needs a 32-bit uefi bootloader with a 64-bit operating
|
||||
system, install the grub-efi-ia32 package before running the installer.
|
||||
This is true for both graphical and cli installers.
|
||||
|
||||
dpkg -i /grub-efi-ia32
|
||||
dpkg -i /grub-efi-ia32 (autocomplete)
|
||||
|
||||
|
||||
Note: UEFI implementations in motherboards vary in their adherence to
|
||||
@@ -138,10 +122,6 @@ this can be changed by editing the config file. (/etc/refractainstaller.conf)
|
||||
This installer will not let you encrypt a swap partition; use a swapfile
|
||||
on an encrypted partition instead.
|
||||
|
||||
If you want automatic partitioning, LVM or RAID, you must use one of the regular installer isos.
|
||||
If you want to install on uefi hardware with an installer that has had more extensive testing,
|
||||
use one of the regular installer isos.
|
||||
|
||||
|
||||
REMASTERING (Make your own live-CD/DVD/USB)
|
||||
|
||||
@@ -156,15 +136,12 @@ See /usr/share/doc/refractasnapshot-base/README.gz for details.
|
||||
|
||||
BUG REPORTS AND SUPPORT LINKS
|
||||
|
||||
Comments, suggestions, criticisms, and bug reports are welcome.
|
||||
Please report bugs on the official Devuan Bug Tracking System:
|
||||
Comments, suggestions, criticisms, and bug reports
|
||||
are welcome on our github:
|
||||
|
||||
https://bugs.devuan.org
|
||||
https://git.devuan.org/frangamer1892/delphinium-sdk/issues
|
||||
|
||||
Support:
|
||||
Devuan Support:
|
||||
IRC Channel on libera.chat: #devuan
|
||||
Support forum: dev1galaxy.org
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Install Devuan
|
||||
Name=Install Delphinium
|
||||
Comment= Install from a live CD to your system.
|
||||
Exec=/usr/bin/refractainstaller-wrapper.sh
|
||||
Terminal=false
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=LARGER FONTS
|
||||
Comment=Increase desktop font size
|
||||
Exec=/usr/bin/adjfontsize +
|
||||
Icon=preferences-desktop-accessibility-symbolic
|
||||
Path=
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
@@ -1,145 +0,0 @@
|
||||
|
||||
Devuan GNU/Linux 4.0.0 "chimaera" *
|
||||
|
||||
(HTML version in README.html)
|
||||
|
||||
Welcome to the reliable world of Devuan GNU/Linux
|
||||
|
||||
This disc is one of several installation options for the Devuan
|
||||
GNU+Linux [0] distribution. Devuan offers an extensive collection of
|
||||
original and modified Debian as well as Devuan-specific packages. It
|
||||
is a complete Operating System (OS) for your computer. And it is free
|
||||
as in 'freedom'.
|
||||
|
||||
CONTENTS:
|
||||
* Introduction
|
||||
* Disc Choices
|
||||
* Installation
|
||||
* Getting Software
|
||||
* Devuan Derivatives
|
||||
* Report a Bug
|
||||
* Devuan Resources
|
||||
|
||||
[0]: https://files.devuan.org/devuan_chimaera/
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
An Operating System (OS) is a set of programs that provide an interface
|
||||
to the computer's hardware. Resource, device, power, and memory management
|
||||
belong to the OS. The core of the OS in charge of operating the circuitry
|
||||
and managing peripherals is called the kernel. The default flavor of Devuan
|
||||
comes with Linux. Most of the basic operating system tools come from
|
||||
the GNU project; hence the name GNU+Linux.
|
||||
|
||||
Devuan is available for various kinds of computers, like PC compatible
|
||||
hardware (i386 and amd64), ppc64el and ARM targets (armel, armhf, arm64) such
|
||||
as the allwinner flavour of SBCs and some ASUS chromebooks.
|
||||
|
||||
Disc Choices
|
||||
============
|
||||
* netinstall
|
||||
* server (4 CD set)
|
||||
* desktop
|
||||
* desktop-live
|
||||
* minimal-live
|
||||
|
||||
Proprietary firmware is automatically installed on systems if needed.
|
||||
To avoid installation of non-free firmware, you must choose one of the
|
||||
Expert install options and you must also select a mirror.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
Before you start, please read the Chimaera 4.0.0 Release Notes [0].
|
||||
|
||||
You can install Devuan GNU+Linux either as a dual (or multiple) boot
|
||||
alongside your current OS or as the only OS on your computer.
|
||||
|
||||
An Installation Guide is included on this disc (English version)
|
||||
docs/install-devuan.html and also online (some translations available)
|
||||
https://devuan.org/os/documentation/dev1fanboy
|
||||
|
||||
You can start the installation program easily by booting your computer
|
||||
with CD/DVD or from USB. Note that some very old or very new systems
|
||||
may not support this.
|
||||
|
||||
[0]: Release_notes_chimaera_4.0.0.txt
|
||||
|
||||
Getting Additional Software
|
||||
===========================
|
||||
|
||||
After installing or upgrading, Devuan's packaging system can use CDs,
|
||||
DVDs, local collections or networked servers (FTP, HTTP) to automatically
|
||||
install software from .deb packages. This is done preferably with the
|
||||
'apt' or 'aptitude' programs.
|
||||
|
||||
You can install packages from the commandline using apt-get. For example,
|
||||
if you want to install the packages 'openssh-client' and 'xlennart', you
|
||||
can give the command:
|
||||
|
||||
apt-get install openssh-client xlennart
|
||||
|
||||
Note that you don't have to enter the complete path or the '.deb'
|
||||
extension. Apt will figure this out itself.
|
||||
|
||||
Or use aptitude for a full screen interactive selection of available
|
||||
Devuan packages.
|
||||
|
||||
Software can also be installed using the Synaptic graphical interface.
|
||||
|
||||
Devuan Derivatives
|
||||
==================
|
||||
|
||||
The default desktop provided by classic installer-iso images shouldn't
|
||||
be considered the only way to use Devuan on the desktop. A growing number
|
||||
of derivative distributions have already adopted Devuan as a base OS. When
|
||||
considering Devuan, we do recommend taking derivatives into consideration.
|
||||
They harness the power of our base distribution by targeting specific usage.
|
||||
This is exactly what we mean to achieve with Devuan. This list is in order
|
||||
of chronological appearance:
|
||||
|
||||
* Gnuinos - https://gnuinos.org
|
||||
* Refracta - https://refracta.org
|
||||
* Exe GNU/Linux - https://sourceforge.net/projects/exegnulinux/
|
||||
* Nelum-dev1 - https://sourceforge.net/projects/nelum-dev1
|
||||
* EterTICs - https://gnuetertics.org
|
||||
* MIYO - https://sourceforge.net/projects/miyolinux/
|
||||
* Star - https://sourceforge.net/projects/linnix
|
||||
* heads - https://heads.dyne.org
|
||||
* Dowse - https://dowse.eu/
|
||||
* good-life-linux - https://sourceforge.net/projects/good-life-linux/
|
||||
* Crowz - https://sourceforge.net/projects/crowz/
|
||||
* Maemo Leste - https://maemo-leste.github.io/ (in development)
|
||||
|
||||
You are free to create and re-distribute CDs/DVDs of the Devuan
|
||||
GNU+Linux Operating System as well as respins like these.
|
||||
|
||||
Report a Bug
|
||||
============
|
||||
|
||||
This is an official release of the Devuan system. Please report any
|
||||
bugs you find to the Devuan Bug Tracking System at https://bugs.devuan.org.
|
||||
|
||||
If you're reporting bugs against this disc or the installation system,
|
||||
please also mention the version of this disc; this can be found in
|
||||
the file /.disk/info.
|
||||
|
||||
Devuan Resources
|
||||
================
|
||||
|
||||
Learn more about Devuan, Linux and Libre Software
|
||||
|
||||
* The Devuan homepage [1]
|
||||
* The Dev1Galaxy web forum [2]
|
||||
* Community Communication Channels [3]
|
||||
* Twitter @DevuanOrg [5]
|
||||
* The Linux Documentation Project [6]
|
||||
* General Linux homepage [7]
|
||||
|
||||
[1]: https://devuan.org/
|
||||
[2]: https://dev1galaxy.org
|
||||
[3]: https://devuan.org/os/community
|
||||
[4]: https://twitter.com/DevuanOrg
|
||||
[5]: https://www.tldp.org/
|
||||
[6]: https://www.linux.org/
|
||||
@@ -1,354 +0,0 @@
|
||||
# Devuan 4 Chimaera Release Notes
|
||||
|
||||
## Index
|
||||
|
||||
- Introduction
|
||||
- New in this Release
|
||||
- Getting Devuan 4 Chimaera
|
||||
- Upgrading to Devuan 4 Chimaera
|
||||
- Notes on Specific Packages and Issues
|
||||
- exim
|
||||
- su
|
||||
- podman
|
||||
- wicd
|
||||
- Blank Display on Ryzen and other recent AMD CPUs
|
||||
- Xfce missing application menu icons
|
||||
- Devuan Package Repositories
|
||||
- Non-free firmware
|
||||
- Devuan package information pages
|
||||
- Reporting bugs
|
||||
|
||||
|
||||
## Introduction
|
||||
|
||||
This document includes technical notes relevant to Devuan 4 Chimaera.
|
||||
|
||||
Devuan 4 Chimaera is based on Debian 11 Bullseye. Much of the information in
|
||||
[Debian's Release Notes](https://www.debian.org/releases/bullseye/releasenotes)
|
||||
is relevant and useful. They should be consulted alongside this document.
|
||||
|
||||
More information and support on specific issues can be obtained by:
|
||||
|
||||
- subscribing to the [DNG mailing
|
||||
list](https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng)
|
||||
|
||||
- visiting the [Devuan user forum](https://dev1galaxy.org)
|
||||
|
||||
- asking on one of the [Devuan IRC channels](irc://irc.libera.chat) on libera.chat:
|
||||
|
||||
* `#devuan` - general discussion and support about Devuan
|
||||
* `#devuan-arm` - specific support for ARM
|
||||
|
||||
|
||||
## New in this Release
|
||||
### Accessibility
|
||||
|
||||
The installer for Devuan 4 Chimaera is based on the Debian 11 installer. This
|
||||
means that the procedures described on Debian's [wiki accessibility
|
||||
page](https://wiki.debian.org/accessibility#Debian_installer_accessibility) for
|
||||
starting the Debian installer with software speech, hardware speech synthesizer
|
||||
or a refreshable braille display, also apply to the Devuan installer.
|
||||
|
||||
New in Devuan 4 Chimaera is the ability to install a desktop environment without
|
||||
also installing pulseaudio in the installed system. This enables speech
|
||||
synthesis in both a graphical and console session at the same time. This
|
||||
configuration is created by the task-speech-accessibility and
|
||||
devuan-speech-dispatcher-config-override packages which are installed by default
|
||||
when the "Install with Speech Synthesis" option ("`s <enter>`" on BIOS systems,
|
||||
"`s`" on UEFI systems at the boot prompt) is selected.
|
||||
|
||||
If you are installing a console only system and do not require this
|
||||
compatibility you may choose to disable task-speech-accessibility which will
|
||||
prevent installing orca with its graphical dependencies.
|
||||
|
||||
Note that slim (the default Display Manager for xfce) is not accessible. Be sure
|
||||
to install lightdm or gdm3 if you require an accessible Display Manager.
|
||||
|
||||
### Desktops and Display Managers
|
||||
|
||||
Improved support for elogind means that virtually all desktops[1] and display
|
||||
managers in Debian are now also available in Devuan. Newly available display
|
||||
managers in Devuan 4 Chimaera include gdm3 and sddm. The lxde desktop is also a
|
||||
new addition.
|
||||
|
||||
[1] parl requires systemd and is not available.
|
||||
|
||||
## Getting Devuan 4 Chimaera
|
||||
|
||||
Devuan 4 Chimaera is available for i386, amd64, armel, armhf, arm64 and ppc64el
|
||||
architectures.
|
||||
|
||||
Installer isos and live CDs for i386 and amd64 are [available for
|
||||
download](http://files.devuan.org/devuan_chimaera/) at
|
||||
http://files.devuan.org/devuan_chimaera/.
|
||||
|
||||
Mini isos and other specialist installation media for all release architectures
|
||||
are available from
|
||||
http://deb.devuan.org/devuan/dists/chimaera/main/installer-{ARCH}/current/images/.
|
||||
|
||||
Please consider using one of the many [mirrors](https://devuan.org/get-devuan),
|
||||
listed at [https://devuan.org/get-devuan](https://devuan.org/get-devuan).
|
||||
|
||||
Detailed instructions on how to use each image are available in the
|
||||
corresponding `README.txt` file. The `SHA256SUMS` of each set of images is
|
||||
signed by the developer in charge of the build. The fingerprints of [GPG keys of
|
||||
all Devuan developers]( https://devuan.org/os/team) are listed at
|
||||
[https://devuan.org/os/team](https://devuan.org/os/team).
|
||||
|
||||
In order to check that the images you downloaded are genuine and not
|
||||
corrupted, you should:
|
||||
|
||||
- download the image(s)
|
||||
- download the corresponding `SHA256SUMS` and `SHA256SUMS.asc` files in the same
|
||||
folder
|
||||
- verify the checksums by running:
|
||||
|
||||
> `sha256sum -c SHA256SUMS`
|
||||
|
||||
(it could complain about missing files, but should show an "OK" close to the
|
||||
images you have actually downloaded)
|
||||
|
||||
- verify the signature running:
|
||||
|
||||
> `gpg --no-default-keyring --keyring ./devuan-devs.gpg --verify SHA256SUMS.asc`
|
||||
|
||||
(assuming that you have put the GPG keys in the keyring named
|
||||
`devuan-devs.gpg`. YMMV)
|
||||
|
||||
The `devuan-devs.gpg` keyring is provided only for convenience. The most correct
|
||||
procedure to verify that the signatures are authentic is by downloading the
|
||||
relevant public keys from a trusted keyserver, double-check that the fingerprint
|
||||
of the key matches that of the developer reported on
|
||||
[https://devuan.org/os/team](https://devuan.org/os/team) and then use that key
|
||||
for verification.
|
||||
|
||||
### Docker images
|
||||
|
||||
[Unofficial docker
|
||||
images](https://hub.docker.com/r/dyne/devuan/tags?page=1&ordering=last_updated )
|
||||
for all Devuan releases including Devuan 4 Chimaera are also available. They are
|
||||
prepared and supported by paddy-hack and jaromil and are updated daily.
|
||||
|
||||
Related documentation is also available:
|
||||
|
||||
- [https://github.com/dyne/docker-devuan-builds](https://github.com/dyne/docker-devuan-builds)
|
||||
- [https://gitlab.com/paddy-hack/devuan/](https://gitlab.com/paddy-hack/devuan/)
|
||||
|
||||
|
||||
## Upgrading to Devuan 4 Chimaera
|
||||
|
||||
Direct and easy upgrade path from Devuan Chimaera and migration path from Debian
|
||||
Bullseye to Devuan 4 Chimaera are [available]( https://devuan.org/os/install) at
|
||||
[https://devuan.org/os/install](https://devuan.org/os/install).
|
||||
|
||||
If you are already on Chimaera, run this command to get to the
|
||||
current release version:
|
||||
|
||||
> `apt-get update && apt-get upgrade && apt-get dist-upgrade`
|
||||
|
||||
## Notes on Specific Packages and Issues
|
||||
### exim 4.94
|
||||
|
||||
Please consider the version of exim in Devuan 4 Chimaera a *major* exim
|
||||
upgrade. It introduces the concept of tainted data read from untrusted sources,
|
||||
like e.g. message sender or recipient. This tainted data (e.g. `$local_part` or
|
||||
`$domain`) cannot be used among other things as a file or directory name or
|
||||
command name.
|
||||
|
||||
This will break configurations which are not updated accordingly. Old Debian
|
||||
exim configuration files also will not work unmodified; the new configuration
|
||||
needs to be installed with local modifications merged in.
|
||||
|
||||
Typical nonworking examples include:
|
||||
|
||||
- Delivery to `/var/mail/$local_part`.
|
||||
|
||||
Use `$local_part_data` in combination with `check_local_user`.
|
||||
|
||||
- Using
|
||||
|
||||
`data = ${lookup{$local_part}lsearch{/some/path/$domain/aliases}}`
|
||||
|
||||
instead of
|
||||
|
||||
`data = ${lookup{$local_part}lsearch{/some/path/$domain_data/aliases}}`
|
||||
|
||||
for a virtual domain alias file.
|
||||
|
||||
The basic strategy for dealing with this change is to use the result of a lookup
|
||||
in further processing instead of the original (remote provided) value.
|
||||
|
||||
To ease upgrading there is a new main configuration option to temporarily
|
||||
downgrade taint errors to warnings, letting the old configuration work with the
|
||||
newer exim. To make use of this feature add
|
||||
|
||||
.ifdef _OPT_MAIN_ALLOW_INSECURE_TAINTED_DATA
|
||||
allow_insecure_tainted_data = yes
|
||||
.endif
|
||||
|
||||
to the exim configuration (e.g. to `/etc/exim4/exim4.conf.localmacros`) before
|
||||
upgrading and check the logfile for taint warnings. This is a temporary
|
||||
workaround which is already marked for removal on introduction.
|
||||
|
||||
### su
|
||||
|
||||
The behaviour of su changed in Devuan 3 Beowulf. These changes persist in Devuan
|
||||
4 Chimaera. Use `su -` to get root's path or use the full path to commands if
|
||||
you use only `su`. See the following for more information:
|
||||
- [https://www.debian.org/releases/buster/amd64/release-notes/ch-information.en.html#su-environment-variables](https://www.debian.org/releases/buster/amd64/release-notes/ch-information.en.html#su-environment-variables)
|
||||
- [https://wiki.debian.org/NewInBuster](https://wiki.debian.org/NewInBuster)
|
||||
- [https://bugs.debian.org/905564](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905564)
|
||||
|
||||
### podman
|
||||
|
||||
Debian's podman package only works on Devuan after reconfiguration. The easiest
|
||||
way to achieve this is to install the debian-podman-config-override package
|
||||
which sets suitable defaults for Devuan systems.
|
||||
|
||||
### wicd
|
||||
|
||||
Wicd is no longer available in Devuan 4 Chimaera having been removed from Debian
|
||||
Bullseye because of it's dependency on python2 which is now obsolete.
|
||||
|
||||
Alternative network managers are available:
|
||||
|
||||
- connman (default for lxde)
|
||||
- network-manager (default for xfce, mate, cinnamon and kde via plasma-nm)
|
||||
- cmst (default for lxqt)
|
||||
- ifupdown (configuration guide
|
||||
[here](https://git.devuan.org/devuan/installer-iso/raw/branch/wip/docs/docs/docs/network-configuration.html)
|
||||
or locally on the [installer isos](network-configuration.html))
|
||||
|
||||
### Blank Display on Ryzen and other recent AMD CPUs
|
||||
|
||||
If you have a Ryzen or other new AMD CPUs and find that the system boots to black
|
||||
screen, installation of the firmware-amd-graphics package from the non-free
|
||||
repository is required to fix the issue.
|
||||
|
||||
### Xfce missing application menu icons
|
||||
|
||||
If, after upgrading from Devuan 3 Beowulf, Xfce application menu icons are
|
||||
missing, run the command
|
||||
|
||||
> `xfconf-query -c xsettings -p /Gtk/MenuImages -t bool -s true --create `
|
||||
|
||||
which will recreate the required default configuration.
|
||||
|
||||
[Further information](https://forum.xfce.org/viewtopic.php?id=15085):
|
||||
https://forum.xfce.org/viewtopic.php?id=15085.
|
||||
|
||||
## Devuan Package Repositories
|
||||
|
||||
Thanks to the support of many volunteers and donors, Devuan has a network of
|
||||
package repository mirrors. The mirror network is accessible using the FQDN
|
||||
[deb.devuan.org](http://deb.devuan.org).
|
||||
|
||||
Starting from Devuan 2.0 ASCII, users should exclusively use
|
||||
[deb.devuan.org](http://deb.devuan.org) in their `sources.list` file, e.g.:
|
||||
|
||||
deb http://deb.devuan.org/merged chimaera main
|
||||
deb http://deb.devuan.org/merged chimaera-security main
|
||||
deb http://deb.devuan.org/merged chimaera-updates main
|
||||
deb http://deb.devuan.org/devuan chimaera-proposed main
|
||||
|
||||
|
||||
Along with the above URLs, the repositories are also accessible
|
||||
using the Tor network, by using our hidden service address:
|
||||
|
||||
deb tor+http://devuanfwojg73k6r.onion/merged chimaera main
|
||||
deb tor+http://devuanfwojg73k6r.onion/merged chimaera-security main
|
||||
deb tor+http://devuanfwojg73k6r.onion/merged chimaera-updates main
|
||||
deb tor+http://devuanfwojg73k6r.onion/devuan chimaera-proposed main
|
||||
|
||||
More information is available at
|
||||
[https://devuan.org/os/packages](https://devuan.org/os/packages).
|
||||
|
||||
All the mirrors contain the full Devuan package repository (all the Devuan
|
||||
releases and all the suites). They are synced every 30 minutes from the main
|
||||
Devuan package repository (`pkgmaster.devuan.org`) and are continuously checked
|
||||
for sanity, integrity, and consistency. The package repository network is
|
||||
accessed through a DNS Round-Robin.
|
||||
|
||||
The updated list of mirrors belonging to the network is available at
|
||||
[http://pkgmaster.devuan.org/mirror_list.txt](http://pkgmaster.devuan.org/mirror_list.txt).
|
||||
|
||||
Users could also opt for directly accessing one of the mirrors in that
|
||||
list using the corresponding BaseURL.
|
||||
|
||||
IMPORTANT NOTE: The package mirrors at [deb.devuan.org](http://deb.devuan.org)
|
||||
are signed with the following GPG key:
|
||||
|
||||
pub rsa4096 2017-09-04 [SC] [expires: 2022-09-03]
|
||||
E032601B7CA10BC3EA53FA81BB23C00C61FC752C
|
||||
uid [ unknown] Devuan Repository (Amprolla3 on Nemesis
|
||||
<repository@devuan.org>)
|
||||
sub rsa4096 2017-09-04 [E] [expires: 2022-09-03]
|
||||
|
||||
The key is included in the devuan-keyring package. In order to use
|
||||
[deb.devuan.org](http://deb.devuan.org), you must have
|
||||
`devuan-keyring_2017.10.03` or higher.
|
||||
|
||||
IMPORTANT NOTE: Devuan has discontinued the original set of Devuan mirrors
|
||||
formerly available at `auto.mirror.devuan.org` and `{CC}.mirror.devuan.org`. As
|
||||
a consequence, users should *only* use the new set of mirrors via
|
||||
[deb.devuan.org](http://deb.devuan.org).
|
||||
|
||||
|
||||
## Non-free firmware
|
||||
|
||||
All Devuan 4 Chimaera installation media make non-free firmware packages
|
||||
available at install time. In the majority of the cases, these packages are
|
||||
needed (and will be installed) only if your hardware (usually wifi adapter)
|
||||
requires them. It is possible to avoid the automatic installation and loading of
|
||||
needed non-free firmware by choosing the "Expert install" option in the
|
||||
installation menu.
|
||||
|
||||
Devuan 4 Chimaera desktop-live and minimal-live images come with non-free
|
||||
firmware packages pre-installed. You have the option of removing those non-free
|
||||
firmware packages from the desktop-live and minimal-live after boot, using the
|
||||
`remove_firmware.sh` script available under `/root`.
|
||||
|
||||
|
||||
## Devuan package information pages
|
||||
|
||||
Devuan provides a service to display information about all the packages
|
||||
available in Devuan. This can be accessed at [https://pkginfo.devuan.org](
|
||||
https://pkginfo.devuan.org).
|
||||
|
||||
It is possible to search for package names matching a set of keywords, and to
|
||||
visualise the description, dependencies, suggestions and recommendations of each
|
||||
package.
|
||||
|
||||
## Reporting bugs
|
||||
|
||||
No piece of software is perfect. And acknowledging this fact is the
|
||||
first step towards improving our software base.
|
||||
|
||||
Devuan strongly believes in the cooperation of the community to find, report and
|
||||
solve issues. If you think you have found a bug in a Devuan package, please
|
||||
report it to [https://bugs.devuan.org](https://bugs.devuan.org).
|
||||
|
||||
The procedure to report bugs is quite simple: install and run `reportbug`, a
|
||||
tool that will help you compiling the bug report and including any relevant
|
||||
information for the maintainers.
|
||||
|
||||
`reportbug` assumes than you have a properly configured Mail User Agent that can
|
||||
send emails (and that it knows about). If this is not the case, you can still
|
||||
prepare your bug report with `reportbug`, save it (by default reportbug will
|
||||
save the report under `/tmp`), and then use it as a template for an email to
|
||||
[submit@bugs.devuan.org](mailto:submit@bugs.devuan.org).
|
||||
|
||||
(NOTE: Devuan does not provide an open SMTP relay for `reportbug`
|
||||
yet. If you don't know what this is about, you can safely ignore this
|
||||
information).
|
||||
|
||||
When the bug report is processed, you will receive an email
|
||||
confirmation indicating the number associated to the report.
|
||||
|
||||
Before reporting a bug, please check whether the very same problem has
|
||||
been already experienced and reported by other users.
|
||||
|
||||
In general, issues with Devuan's own forked packages should be reported to
|
||||
[Devuan's BTS](https://bugs.devuan.org). For unforked packages, bugs should
|
||||
usually be fixed in Debian. `reportbug` can report issues directly to [Debian's
|
||||
BTS](https://bugs.debian.org) by using the `-B debian` option.
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=SMALLER FONTS
|
||||
Comment=Decrease desktop font size
|
||||
Exec=/usr/bin/adjfontsize -
|
||||
Icon=preferences-desktop-accessibility-symbolic
|
||||
Path=
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 1.7 MiB |
@@ -4,11 +4,11 @@
|
||||
vars+=(username userpass default_shell mkefi grubversion hookscripts)
|
||||
arrs+=(custom_deb_packages)
|
||||
|
||||
blend_name="devuan-desktop-live_"
|
||||
blend_name="delphinium-desktop-live_"
|
||||
release="daedalus"
|
||||
version="5.0.0"
|
||||
username="devuan"
|
||||
userpass="devuan"
|
||||
version="1.1.0"
|
||||
username="delphinium"
|
||||
userpass="delphinium"
|
||||
default_shell="/bin/bash"
|
||||
|
||||
# comment to disable:
|
||||
|
||||
@@ -19,6 +19,7 @@ base_packages+=(
|
||||
docutils-doc
|
||||
ftp-ssl # in daedalus ftp-ssl or tnftp replaces ftp. lftp gets some votes locally.
|
||||
gettext
|
||||
gnome-disk-utility
|
||||
gnupg2
|
||||
gparted
|
||||
grub-pc-bin
|
||||
@@ -42,6 +43,10 @@ base_packages+=(
|
||||
util-linux-locales
|
||||
w3m
|
||||
whois
|
||||
mc
|
||||
gdebi
|
||||
nmap
|
||||
neofetch
|
||||
)
|
||||
|
||||
|
||||
@@ -49,10 +54,9 @@ extra_packages+=(
|
||||
|
||||
task-desktop
|
||||
task-laptop
|
||||
task-xfce-desktop
|
||||
# task-kde-desktop
|
||||
fontsnaps
|
||||
popularity-contest
|
||||
task-mate-desktop
|
||||
# task-print-server ## no package
|
||||
# popularity-contest
|
||||
refractainstaller-base
|
||||
refractasnapshot-base
|
||||
yad
|
||||
@@ -60,8 +64,16 @@ extra_packages+=(
|
||||
refractasnapshot-gui
|
||||
# libgtk3-perl #need to add this for graphical debconf - THIS SUCKS! (buttons off-screen)
|
||||
gvfs-backends
|
||||
gnome-mines
|
||||
gnome-sudoku
|
||||
gnome-chess
|
||||
supertuxkart
|
||||
deluge
|
||||
tigervnc-viewer
|
||||
vlc
|
||||
cryptsetup-initramfs
|
||||
cryptsetup-run
|
||||
git
|
||||
)
|
||||
|
||||
|
||||
@@ -89,9 +101,6 @@ purge_packages=(
|
||||
debian-keyring
|
||||
elinks
|
||||
elinks-data
|
||||
git
|
||||
git-core
|
||||
git-man
|
||||
liberror-perl
|
||||
libfsplib0
|
||||
libtre5
|
||||
@@ -106,7 +115,10 @@ purge_packages=(
|
||||
amd64-microcode
|
||||
)
|
||||
|
||||
|
||||
purge_extra_packages=(
|
||||
gtk3-nocsd
|
||||
libgtk3-nocsd0
|
||||
)
|
||||
|
||||
custom_deb_packages+=(
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 9.4 KiB |
@@ -0,0 +1,2 @@
|
||||
Delphinium GNU/Linux daedalus \n \l
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
Delphinium GNU/Linux daedalus
|
||||
@@ -0,0 +1,7 @@
|
||||
|
||||
The programs included with the Delphinium GNU/Linux system are free software;
|
||||
the exact distribution terms for each program are described in the
|
||||
individual files in /usr/share/doc/*/copyright.
|
||||
|
||||
Delphinium GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
|
||||
permitted by applicable law.
|
||||
@@ -0,0 +1 @@
|
||||
../usr/lib/os-release
|
||||
@@ -0,0 +1,70 @@
|
||||
|
||||
Delphinium GNU/Linux 1.1 "daedalus" *
|
||||
|
||||
Welcome to the reliable world of Delphinium GNU/Linux
|
||||
|
||||
Delphinium offers an extensive collection of original and modified
|
||||
Debian as well as Devuan-specific packages. It is a complete
|
||||
Operating System (OS) for your computer. And it is free as in 'freedom'.
|
||||
|
||||
CONTENTS:
|
||||
* Introduction
|
||||
* Installation
|
||||
* Getting Additional Software
|
||||
* Report a Bug
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
An Operating System (OS) is a set of programs that provide an interface
|
||||
to the computer's hardware. Resource, device, power, and memory management
|
||||
belong to the OS. The core of the OS in charge of operating the circuitry
|
||||
and managing peripherals is called the kernel. The default flavor of
|
||||
Delphinium comes with Linux. Most of the basic operating system tools come
|
||||
from the GNU project; hence the name GNU/Linux.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
You can install Delphinium GNU/Linux either as a dual (or multiple) boot
|
||||
alongside your current OS or as the only OS on your computer.
|
||||
|
||||
You can start the installation program easily by double clicking the icon
|
||||
on the Desktop named "Install Delphinium".
|
||||
|
||||
Proprietary firmware is automatically installed on systems if needed.
|
||||
To avoid installation of non-free firmware, you must choose one of the
|
||||
Expert install options and you must also select a mirror.
|
||||
|
||||
Getting Additional Software
|
||||
===========================
|
||||
|
||||
After installing or upgrading, Delphinium's packaging system can use CDs,
|
||||
DVDs, local collections or networked servers (FTP, HTTP) to automatically
|
||||
install software from .deb packages. This is done preferably with the
|
||||
'apt' or 'aptitude' programs.
|
||||
|
||||
You can install packages from the commandline using apt-get. For example,
|
||||
if you want to install the packages 'openssh-client' and 'xlennart', you
|
||||
can give the command:
|
||||
|
||||
apt-get install openssh-client xlennart
|
||||
|
||||
Note that you don't have to enter the complete path or the '.deb'
|
||||
extension. Apt will figure this out itself.
|
||||
|
||||
Or use aptitude for a full screen interactive selection of available
|
||||
Delphinium packages.
|
||||
|
||||
Software can also be installed using the Synaptic graphical interface.
|
||||
|
||||
If you have a local .deb package, GDebi can resolve its dependencies and
|
||||
install everything for you.
|
||||
|
||||
Report a Bug
|
||||
============
|
||||
|
||||
This is an official release of the Delphinium system. Please report any
|
||||
bugs you find to our github repository at
|
||||
https://git.devuan.org/frangamer1892/delphinium-sdk/issues.
|
||||
|
||||
@@ -1,20 +1,13 @@
|
||||
DEVUAN DAEDALUS DESKTOP-LIVE
|
||||
DELPHINIUM DAEDALUS DESKTOP-LIVE
|
||||
|
||||
|
||||
This is Devuan 5 (Daedalus) desktop-live.
|
||||
It contains the same package selection as the default desktop in the
|
||||
regular installer isos, with the addition of a few packages for the live
|
||||
system, wireless firmware, a live-cd installer and remastering tool to
|
||||
make your own live-CD/DVD image.
|
||||
This is Delphinium 1.1 (Daedalus) desktop-live.
|
||||
|
||||
|
||||
You can burn the iso to DVD or use dd or cat to image a USB thumb drive.
|
||||
|
||||
User name: devuan Password: devuan
|
||||
User name: delphinium Password: delphinium
|
||||
Admin name: root Password: toor
|
||||
|
||||
Maintained by fsmithred (key id 0xA73823D3094C5620 on pgp.mit.edu)
|
||||
Built with the Devuan SDK, live-sdk module
|
||||
Maintained by frangamer1892
|
||||
Built with the Delphinium SDK, live-sdk module
|
||||
|
||||
|
||||
CONTENTS
|
||||
@@ -29,10 +22,8 @@ CONTENTS
|
||||
BOOT TO ANOTHER LANGUAGE
|
||||
|
||||
Choose the "Other language" option from the boot menu.
|
||||
Press TAB to edit the boot command.
|
||||
Backspace to erase "it_IT.UTF-8" (Ignore the repeating lines. Bug
|
||||
or misconfigured?)
|
||||
Type your locale code in its place and then ENTER.
|
||||
Press TAB to edit the boot command (or "e" if using UEFI).
|
||||
Replace the locale and keyboard layout with yours.
|
||||
Note: When you install the system, your chosen language will be the
|
||||
default in the installed system.
|
||||
|
||||
@@ -45,10 +36,10 @@ Wireless firmware is already installed. All of the firmware packages
|
||||
come from the non-free-firmware repository, however the non-free and contrib
|
||||
repositories are not enabled. If you want to install packages from
|
||||
non-free or contrib, you need to edit /etc/apt/sources.list or add them
|
||||
through Synaptic Package Manager in the System menu.
|
||||
through Synaptic Package Manager.
|
||||
|
||||
You can uninstall all the non-free firmware and remove the
|
||||
non-free-firmware repository from the software sources by running:
|
||||
You can remove all the non-free firmware after you reboot into the new
|
||||
installation by running (as root or with sudo):
|
||||
|
||||
/root/remove_firmware.sh
|
||||
|
||||
@@ -60,7 +51,7 @@ and can be installed with:
|
||||
|
||||
INSTALLER
|
||||
|
||||
This Devuan live-iso comes with Refracta Installer, which will copy the
|
||||
This Delphinium live-iso comes with Refracta Installer, which will copy the
|
||||
running system to hard drive and install the GRUB bootloader. Any changes
|
||||
you make to the running system will be copied to the installation. This
|
||||
includes desktop configuration, software added or removed, language/locale
|
||||
@@ -74,8 +65,7 @@ you start the installer or from within the installer. Gparted, cfdisk and
|
||||
gdisk are all installed and available. For a legacy bios install, the
|
||||
minimum needed is a single partition for the system. For a uefi install,
|
||||
you must also have an EFI partition. Refer to the installer help
|
||||
document. (See /usr/lib/refractainstaller/readme.refractainstaller.txt
|
||||
or press Help from within the installer.)
|
||||
document (press Help from within the installer).
|
||||
|
||||
IMPORTANT NOTE: grub-efi-amd64 is installed. If you boot from bios, the
|
||||
installer will find the grub-pc package and ask if you want the
|
||||
@@ -85,7 +75,7 @@ If your hardware needs a 32-bit uefi bootloader with a 64-bit operating
|
||||
system, install the grub-efi-ia32 package before running the installer.
|
||||
This is true for both graphical and cli installers.
|
||||
|
||||
dpkg -i /grub-efi-ia32
|
||||
dpkg -i /grub-efi-ia32 (autocomplete)
|
||||
|
||||
|
||||
Note: UEFI implementations in motherboards vary in their adherence to
|
||||
@@ -116,10 +106,6 @@ this can be changed by editing the config file. (/etc/refractainstaller.conf)
|
||||
This installer will not let you encrypt a swap partition; use a swapfile
|
||||
on an encrypted partition instead.
|
||||
|
||||
If you want automatic partitioning, LVM or RAID, you must use one of the regular installer isos.
|
||||
If you want to install on uefi hardware with an installer that has had more extensive testing,
|
||||
use one of the regular installer isos.
|
||||
|
||||
|
||||
REMASTERING (Make your own live-CD/DVD/USB)
|
||||
|
||||
@@ -134,15 +120,12 @@ See /usr/share/doc/refractasnapshot-base/README.gz for details.
|
||||
|
||||
BUG REPORTS AND SUPPORT LINKS
|
||||
|
||||
Comments, suggestions, criticisms, and bug reports are welcome.
|
||||
Please report bugs on the official Devuan Bug Tracking System:
|
||||
Comments, suggestions, criticisms, and bug reports
|
||||
are welcome on our github:
|
||||
|
||||
https://bugs.devuan.org
|
||||
https://git.devuan.org/frangamer1892/delphinium-sdk/issues
|
||||
|
||||
Support:
|
||||
Devuan Support:
|
||||
IRC Channel on libera.chat: #devuan
|
||||
Support forum: dev1galaxy.org
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Install Devuan
|
||||
Name=Install Delphinium
|
||||
Comment= Install from a live CD to your system.
|
||||
Exec=/usr/bin/refractainstaller-wrapper.sh
|
||||
Terminal=false
|
||||
@@ -1,8 +0,0 @@
|
||||
[Default Applications]
|
||||
image/png=org.xfce.ristretto.desktop
|
||||
image/jpeg=org.xfce.ristretto.desktop
|
||||
image/gif=org.xfce.ristretto.desktop
|
||||
text/plain=org.xfce.mousepad.desktop
|
||||
text/html=firefox-esr.desktop;
|
||||
application/x-shellscript=org.xfce.mousepad.desktop
|
||||
application/xml=org.xfce.mousepad.desktop;
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=LARGER FONTS
|
||||
Comment=Increase desktop font size
|
||||
Exec=/usr/bin/adjfontsize +
|
||||
Icon=preferences-desktop-accessibility-symbolic
|
||||
Path=
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
@@ -1,96 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.6.0" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>Devuan GNU+Linux -- Software freedom, your way</title>
|
||||
<meta name="Description" content="Devuan GNU+Linux is a free distribution of the GNU+Linux operating system. It is maintained and updated through the work of many users who volunteer their time and effort." />
|
||||
<meta name="Keywords" content="devuan, GNU, linux, unix, open source, free, DFSG" />
|
||||
<meta name="Language" content="English" />
|
||||
<meta name="Author" content="freedom@devuan.org" />
|
||||
<link rev="made" href="mailto:freedom@devuan.org" />
|
||||
<link href="./docs/css/debinstall.css" rel="stylesheet" type="text/css" />
|
||||
<link href="./docs/css/debinstall-print.css" media="print" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<div id="upperheader">
|
||||
<div id="logo">
|
||||
<a href="https://www.devuan.org/" title="www.devuan.org"><img src="./docs/pics/devuan-emblem90.png" width="90" height="90" alt="www.devuan.org" /></a>
|
||||
</div><!-- end logo -->
|
||||
<p class="section"><em>Installer</em></p>
|
||||
</div><!-- end upperheader -->
|
||||
<div id="intro">
|
||||
<div id="splash">
|
||||
<h1>Welcome to the reliable world of <span id="devuan-img"><img src="./docs/pics/devuan-61.png" alt="Devuan GNU+Linux" height="94" width="211" /></span></h1>
|
||||
</div><!-- end splash -->
|
||||
</div><!-- end intro -->
|
||||
<p class="rm">This disc is one of several installation options for the <a href="https://files.devuan.org/devuan_daedalus/">Devuan GNU+Linux distribution</a>. Devuan offers an extensive collection of original and modified Debian as well as Devuan-specific packages. It is a complete Operating System (OS) for your computer. And it is free as in 'freedom'.</p>
|
||||
</div><!-- end header -->
|
||||
<p class="rm" id="breadcrumbs"><span class="alt">[<a class="txt" href="README.txt">TEXT VERSION</a>]</span> Devuan GNU+Linux 5.0 "daedalus" *</p>
|
||||
<div id="outer">
|
||||
<ul class="toc">
|
||||
<li><a href="#welcome">Introduction</a></li>
|
||||
<li><a href="#discs">Disc Choices</a></li>
|
||||
<li><a href="#install">Installation</a></li>
|
||||
<li><a href="#apt">Getting software</a></li>
|
||||
<li><a href="#respins">Devuan Derivatives</a></li>
|
||||
<li><a href="#bugs">Report a Bug</a></li>
|
||||
<li><a href="#help">Devuan Resources</a></li>
|
||||
</ul>
|
||||
<h2 id="welcome">Introduction</h2>
|
||||
<p>An Operating System (OS) is a set of programs that provide an interface to the computer's hardware. Resource, device, power and memory management belong to the OS. The core of the OS in charge of operating the circuitry and managing peripherals is called the kernel. Devuan used the Linux kernel. Most of the basic operating system tools come from the GNU project, hence the name GNU+Linux.</p>
|
||||
<p>Devuan is available for various kinds of computers, like PC compatible
|
||||
hardware (i386 and amd64), ppc64el and ARM targets (armel, armhf, arm64) such as the allwinner flavour of SBCs and some ASUS chromebooks.</p>
|
||||
<h2 id="discs">Disc Choices</h2>
|
||||
<ul>
|
||||
<li>netinstall</li>
|
||||
<li>server (4 CD set)</li>
|
||||
<li>desktop</li>
|
||||
<li>desktop-live</li>
|
||||
<li>minimal-live</li>
|
||||
</ul>
|
||||
<p><em>Proprietary firmware is automatically installed on systems if needed. To avoid installation of non-free firmware, you must choose one of the Expert install options and you must also select a mirror.</em></p>
|
||||
<h2 id="install">Installation</h2>
|
||||
<p>Before you start, please read the <a href="Release_notes_daedalus.txt">Daedalus 5.0 Release Notes</a>.</p>
|
||||
<p>You can install Devuan GNU+Linux either as a dual (or multiple) boot alongside your current OS or as the only OS on your computer.</p>
|
||||
<p>An <strong>Installation Guide</strong> is included on this disc at <tt><a href="docs/install-devuan.html">docs/install-devuan.html</a></tt> and also online.</p>
|
||||
<p>You can start the installation program easily by booting your computer with CD/DVD or from USB. Note that some very old or very new systems may not support this.</p>
|
||||
<h2 id="apt">Getting Additional Software</h2>
|
||||
<p>After installing or upgrading, Devuan's packaging system can use CDs, DVDs, local collections or networked servers (FTP, HTTP) to automatically install software from .deb <em>packages</em>. This is done preferably with the 'apt' or 'aptitude' programs.</p>
|
||||
<p>You can install packages from the commandline using apt-get. For example, if you want to install the packages 'openssh-client'and 'xlennart', you can use the command:</p>
|
||||
<p><code>apt-get install openssh-client xlennart</code></p>
|
||||
<p>Note that you don't have to enter the complete path or the '.deb' extension. 'Apt' will figure this out itself.</p>
|
||||
<p>Or use aptitude for a full screen interactive selection of available Devuan packages.</p>
|
||||
<p>Software can also be installed using the Synaptic graphical interface.</p>
|
||||
<h2 id="respins">Devuan Derivatives</h2>
|
||||
<p>The default desktop provided by classic installer-iso images shouldn't be considered the only way to use Devuan on the desktop. A growing number of derivative distributions have already adopted Devuan as a base OS. When considering Devuan, we do recommend taking derivatives into consideration. They harness the power of our base distribution by targeting specific usage. This is exactly what we mean to achieve with Devuan. A list of derivative distros is kept at: <a href="https://www.devuan.org/os/devuan-distros">Derivatives Based on Devuan</a></p>
|
||||
<p>You are free to create and re-distribute CDs/DVDs of the Devuan GNU+Linux Operating System as well as respins like these.</p>
|
||||
<h2 id="bugs">Report a Bug</h2>
|
||||
<p>This is an official release of the Devuan system. Please report any bugs you find to the <a href="https://bugs.devuan.org">Devuan Bug Tracking System</a>.</p>
|
||||
<p>If you're reporting bugs against this disc or the installation system, please also mention the version of this disc; this can be found in the file <tt><a href=".disk/info">/.disk/info</a></tt>.</p>
|
||||
<h2 id="help">Resources</h2>
|
||||
<p>Learn more about Devuan, Linux and <a href="https://devuan.org/os/free-software">Libre Software</a></p>
|
||||
<ul>
|
||||
<li><a href="https://devuan.org/">The Devuan homepage</a></li>
|
||||
<li><a href="https://dev1galaxy.org">The Dev1Galaxy web forum</a></li>
|
||||
<li><a href="https://devuan.org/os/community">Community Communication Channels</a></li>
|
||||
<li><a href="https://twitter.com/DevuanOrg">Twitter @DevuanOrg</a></li>
|
||||
<li><a href="https://www.tldp.org/">The Linux Documentation Project</a></li>
|
||||
<li><a href="https://www.linux.org/">General Linux homepage</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="foot">
|
||||
<ul class="inline">
|
||||
<li><a href="docs/install-devuan.html">Install Devuan</a> |</li>
|
||||
<li><a href="docs/full-disk-encryption.html">Full disk encryption</a> |</li>
|
||||
<li><a href="docs/network-configuration.html">Network configuration</a> |</li>
|
||||
<li><a href="README.html">README</a></li>
|
||||
</ul>
|
||||
<ul class="inline">
|
||||
<li><a href="https://creativecommons.org/licenses/by-sa/4.0/">[Creative Commons Attribution-ShareAlike 4.0 International]</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,131 +0,0 @@
|
||||
|
||||
Devuan GNU/Linux 5.0 "daedalus" *
|
||||
|
||||
(HTML version in README.html)
|
||||
|
||||
Welcome to the reliable world of Devuan GNU/Linux
|
||||
|
||||
This disc is one of several installation options for the Devuan
|
||||
GNU+Linux [0] distribution. Devuan offers an extensive collection of
|
||||
original and modified Debian as well as Devuan-specific packages. It
|
||||
is a complete Operating System (OS) for your computer. And it is free
|
||||
as in 'freedom'.
|
||||
|
||||
CONTENTS:
|
||||
* Introduction
|
||||
* Disc Choices
|
||||
* Installation
|
||||
* Getting Software
|
||||
* Devuan Derivatives
|
||||
* Report a Bug
|
||||
* Devuan Resources
|
||||
|
||||
[0]: https://files.devuan.org/devuan_daedalus/
|
||||
|
||||
Introduction
|
||||
============
|
||||
|
||||
An Operating System (OS) is a set of programs that provide an interface to
|
||||
the computer's hardware. Resource, device, power and memory management belong
|
||||
to the OS. The core of the OS in charge of operating the circuitry and
|
||||
managing peripherals is called the kernel. Devuan uses the Linux kernel.
|
||||
Most of the basic operating system tools come from the GNU project; hence the
|
||||
name GNU+Linux.
|
||||
|
||||
Devuan is available for various kinds of computers, like PC compatible
|
||||
hardware (i386 and amd64), ppc64el and ARM targets (armel, armhf, arm64) such
|
||||
as the allwinner flavour of SBCs and some ASUS chromebooks.
|
||||
|
||||
Disc Choices
|
||||
============
|
||||
* netinstall
|
||||
* server (4 CD set)
|
||||
* desktop
|
||||
* desktop-live
|
||||
* minimal-live
|
||||
|
||||
Proprietary firmware is automatically installed on systems if needed.
|
||||
To avoid installation of non-free firmware, you must choose one of the
|
||||
Expert install options and you must also select a mirror.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
Before you start, please read the Daedalus 5.0 Release Notes [0].
|
||||
|
||||
You can install Devuan GNU+Linux either as a dual (or multiple) boot
|
||||
alongside your current OS or as the only OS on your computer.
|
||||
|
||||
An Installation Guide is included on this disc (English version)
|
||||
docs/install-devuan.html and also online.
|
||||
|
||||
You can start the installation program easily by booting your computer
|
||||
with CD/DVD or from USB. Note that some very old or very new systems
|
||||
may not support this.
|
||||
|
||||
[0]: Release_notes_daedalus_5.0.txt
|
||||
|
||||
Getting Additional Software
|
||||
===========================
|
||||
|
||||
After installing or upgrading, Devuan's packaging system can use CDs,
|
||||
DVDs, local collections or networked servers (FTP, HTTP) to automatically
|
||||
install software from .deb packages. This is done preferably with the
|
||||
'apt' or 'aptitude' programs.
|
||||
|
||||
You can install packages from the commandline using apt-get. For example,
|
||||
if you want to install the packages 'openssh-client' and 'xlennart', you
|
||||
can give the command:
|
||||
|
||||
apt-get install openssh-client xlennart
|
||||
|
||||
Note that you don't have to enter the complete path or the '.deb'
|
||||
extension. Apt will figure this out itself.
|
||||
|
||||
Or use aptitude for a full screen interactive selection of available
|
||||
Devuan packages.
|
||||
|
||||
Software can also be installed using the Synaptic graphical interface.
|
||||
|
||||
Devuan Derivatives
|
||||
==================
|
||||
|
||||
The default desktop provided by classic installer-iso images shouldn't
|
||||
be considered the only way to use Devuan on the desktop. A growing number
|
||||
of derivative distributions have already adopted Devuan as a base OS. When
|
||||
considering Devuan, we do recommend taking derivatives into consideration.
|
||||
They harness the power of our base distribution by targeting specific usage.
|
||||
This is exactly what we mean to achieve with Devuan. A list of derivative
|
||||
distros is kept at: https://www.devuan.org/os/devuan-distros
|
||||
|
||||
You are free to create and re-distribute CDs/DVDs of the Devuan
|
||||
GNU+Linux Operating System as well as respins like these.
|
||||
|
||||
Report a Bug
|
||||
============
|
||||
|
||||
This is an official release of the Devuan system. Please report any
|
||||
bugs you find to the Devuan Bug Tracking System at https://bugs.devuan.org.
|
||||
|
||||
If you're reporting bugs against this disc or the installation system,
|
||||
please also mention the version of this disc; this can be found in
|
||||
the file /.disk/info.
|
||||
|
||||
Devuan Resources
|
||||
================
|
||||
|
||||
Learn more about Devuan, Linux and Libre Software
|
||||
|
||||
* The Devuan homepage [1]
|
||||
* The Dev1Galaxy web forum [2]
|
||||
* Community Communication Channels [3]
|
||||
* Twitter @DevuanOrg [5]
|
||||
* The Linux Documentation Project [6]
|
||||
* General Linux homepage [7]
|
||||
|
||||
[1]: https://devuan.org/
|
||||
[2]: https://dev1galaxy.org
|
||||
[3]: https://devuan.org/os/community
|
||||
[4]: https://twitter.com/DevuanOrg
|
||||
[5]: https://www.tldp.org/
|
||||
[6]: https://www.linux.org/
|
||||
@@ -1,255 +0,0 @@
|
||||
# Devuan 5 Daedalus Release Notes
|
||||
|
||||
## Index
|
||||
|
||||
- Introduction
|
||||
- New in this Release
|
||||
+ Rootless startx uses libseat1
|
||||
+ Sway (wayland) GUI without elogind
|
||||
- Getting Devuan 5 Daedalus
|
||||
- Upgrading to Devuan 5 Daedalus
|
||||
- Notes on Specific Packages and Issues
|
||||
+ Consolekit
|
||||
- Devuan Package Repositories
|
||||
- Non-free-firmware
|
||||
- Devuan package information pages
|
||||
- Reporting bugs
|
||||
|
||||
|
||||
## Introduction
|
||||
|
||||
This document includes technical notes relevant to Devuan 5 Daedalus.
|
||||
|
||||
Devuan 5 Daedalus is based on Debian 12 Bookworm. Much of the information in
|
||||
[Debian's Release Notes](https://www.debian.org/releases/bookworm/releasenotes)
|
||||
is relevant and useful. They should be consulted alongside this document.
|
||||
|
||||
More information and support on specific issues can be obtained by:
|
||||
|
||||
- subscribing to the [DNG mailing
|
||||
list](https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng)
|
||||
|
||||
- visiting the [Devuan user forum](https://dev1galaxy.org)
|
||||
|
||||
- asking on one of the [Devuan IRC channels](irc://irc.libera.chat) on libera.chat:
|
||||
|
||||
* `#devuan` - general discussion and support about Devuan
|
||||
* `#devuan-arm` - specific support for ARM
|
||||
|
||||
|
||||
## New in this Release
|
||||
### Rootless startx uses libseat1
|
||||
|
||||
xserver-xorg-core now uses libseat1 to control rootless startx and access to
|
||||
input and video devices. This has several advantages, the most significant being
|
||||
that it removes the dbus dependency from xserver-xorg-core.
|
||||
|
||||
libseat1 can use either seatd or elogind as a
|
||||
backend. If you need to override the default choice (autodiscovery), use the
|
||||
LIBSEAT_BACKEND environment variable.
|
||||
|
||||
If you are using seatd as the backend, ensure the user is a member of the video group.
|
||||
|
||||
This is only relevant to running startx as a user, xorg run as root by a display
|
||||
manager is unaffected.
|
||||
|
||||
### Wayland GUI without elogind
|
||||
|
||||
Users can now enjoy a wayland desktop without elogind by installing
|
||||
libpam-ck-connector, sway and seatd.
|
||||
|
||||
Ensure the relevant user is a member of the `video` group and run sway from
|
||||
the terminal.
|
||||
|
||||
## Getting Devuan 5 Daedalus
|
||||
|
||||
Devuan 5 Daedalus is available for i386, amd64, armel, armhf, arm64 and ppc64el
|
||||
architectures.
|
||||
|
||||
Installer isos and live CDs for i386 and amd64 are [available for
|
||||
download](http://files.devuan.org/devuan_daedalus/) at
|
||||
http://files.devuan.org/devuan_daedalus/.
|
||||
|
||||
Mini isos and other specialist installation media for all release architectures
|
||||
are available from
|
||||
http://deb.devuan.org/devuan/dists/daedalus/main/installer-{ARCH}/current/images/.
|
||||
|
||||
Please consider using one of the many [mirrors](https://devuan.org/get-devuan),
|
||||
listed at [https://devuan.org/get-devuan](https://devuan.org/get-devuan).
|
||||
|
||||
Detailed instructions on how to use each image are available in the
|
||||
corresponding `README.txt` file. The `SHA256SUMS` of each set of images is
|
||||
signed by the developer in charge of the build. The fingerprints of [GPG keys of
|
||||
all Devuan developers]( https://devuan.org/os/team) are listed at
|
||||
[https://devuan.org/os/team](https://devuan.org/os/team).
|
||||
|
||||
In order to check that the images you downloaded are genuine and not
|
||||
corrupted, you should:
|
||||
|
||||
- download the image(s)
|
||||
- download the corresponding `SHA256SUMS` and `SHA256SUMS.asc` files in the same
|
||||
folder
|
||||
- verify the checksums by running:
|
||||
|
||||
> `sha256sum -c SHA256SUMS`
|
||||
|
||||
(it could complain about missing files, but should show an "OK" close to the
|
||||
images you have actually downloaded)
|
||||
|
||||
- verify the signature running:
|
||||
|
||||
> `gpg --no-default-keyring --keyring ./devuan-devs.gpg --verify SHA256SUMS.asc`
|
||||
|
||||
(assuming that you have put the GPG keys in the keyring named
|
||||
`devuan-devs.gpg`. YMMV)
|
||||
|
||||
The `devuan-devs.gpg` keyring is provided only for convenience. The most correct
|
||||
procedure to verify that the signatures are authentic is by downloading the
|
||||
relevant public keys from a trusted keyserver, double-check that the fingerprint
|
||||
of the key matches that of the developer reported on
|
||||
[https://devuan.org/os/team](https://devuan.org/os/team) and then use that key
|
||||
for verification.
|
||||
|
||||
### Docker images
|
||||
|
||||
Official Devuan Docker container images are [available from the Docker Hub](https://hub.docker.com/u/devuan). These images are updated as needed for all maintained releases. To get the latest image for Daedalus execute
|
||||
|
||||
> `docker pull devuan/devuan:daedalus`
|
||||
|
||||
For further details on the images, please consult the information on Docker Hub.
|
||||
|
||||
## Upgrading to Devuan 5 Daedalus
|
||||
|
||||
A direct and easy upgrade path from Devuan Chimaera and a migration path from
|
||||
Debian Bookworm to Devuan 5 Daedalus are [available](
|
||||
https://devuan.org/os/install) at
|
||||
[https://devuan.org/os/install](https://devuan.org/os/install).
|
||||
|
||||
If you already have Daedalus installed, run this command to get to the current
|
||||
release version:
|
||||
|
||||
> `apt-get update && apt-get upgrade && apt-get dist-upgrade`
|
||||
|
||||
## Notes on Specific Packages and Issues
|
||||
|
||||
### Consolekit
|
||||
|
||||
Upstream maintenance of
|
||||
[Consolekit2](https://github.com/ConsoleKit2/ConsoleKit2) has
|
||||
resumed. [Consolekit](https://pkginfo.devuan.org/consolekit) is therefore a good
|
||||
alternative to [elogind](https://pkginfo.devuan.org/elogind) for session
|
||||
tracking and management.
|
||||
|
||||
## Devuan Package Repositories
|
||||
|
||||
Thanks to the support of many volunteers and donors, Devuan has a network of
|
||||
package repository mirrors. The mirror network is accessible using the FQDN
|
||||
[deb.devuan.org](http://deb.devuan.org).
|
||||
|
||||
|
||||
deb http://deb.devuan.org/merged daedalus main
|
||||
deb http://deb.devuan.org/merged daedalus-security main
|
||||
deb http://deb.devuan.org/merged daedalus-updates main
|
||||
deb http://deb.devuan.org/devuan daedalus-proposed main
|
||||
|
||||
|
||||
Along with the above URLs, the repositories are also accessible
|
||||
using the Tor network, by using our hidden service address:
|
||||
|
||||
deb tor+http://devuanfwojg73k6r.onion/merged daedalus main
|
||||
deb tor+http://devuanfwojg73k6r.onion/merged daedalus-security main
|
||||
deb tor+http://devuanfwojg73k6r.onion/merged daedalus-updates main
|
||||
deb tor+http://devuanfwojg73k6r.onion/devuan daedalus-proposed main
|
||||
|
||||
More information is available at
|
||||
[https://devuan.org/os/packages](https://devuan.org/os/packages).
|
||||
|
||||
All the mirrors contain the full Devuan package repository (all the Devuan
|
||||
releases and all the suites). They are synced every 30 minutes from the main
|
||||
Devuan package repository (`pkgmaster.devuan.org`) and are continuously checked
|
||||
for sanity, integrity, and consistency. The package repository network is
|
||||
accessed through a DNS Round-Robin.
|
||||
|
||||
The updated list of mirrors belonging to the network is available at
|
||||
[http://pkgmaster.devuan.org/mirror_list.txt](http://pkgmaster.devuan.org/mirror_list.txt).
|
||||
|
||||
If you wish to use a geographically local mirror, you can use
|
||||
http://${CC}.deb.devuan.org where ${CC} is the CountryCode. If no mirror is
|
||||
available in that country the URL will still work, although there will be no
|
||||
advantage.
|
||||
|
||||
Users could also opt for directly accessing one of the mirrors in that
|
||||
list using the corresponding BaseURL.
|
||||
|
||||
IMPORTANT NOTE: The package mirrors at [deb.devuan.org](http://deb.devuan.org)
|
||||
are signed with the following GPG key:
|
||||
|
||||
pub rsa2048 2014-12-02 [SC]
|
||||
72E3CB773315DFA2E464743D94532124541922FB
|
||||
uid Devuan Repository (Primary Devuan signing key) <repository@devuan.org>
|
||||
sub rsa2048 2014-12-02 [E]
|
||||
sub rsa4096 2016-04-26 [S]
|
||||
|
||||
The key is included in the current [devuan-keyring package](http://pkginfo.devuan.org/devuan-keyring).
|
||||
|
||||
|
||||
## Non-free firmware
|
||||
|
||||
All Devuan 5 Daedalus installation media make non-free firmware packages
|
||||
available at install time. In the majority of the cases, these packages are
|
||||
needed (and will be installed) only if your hardware (usually wifi adapter)
|
||||
requires them. It is possible to avoid the automatic installation and loading of
|
||||
needed non-free firmware by choosing the "Expert install" option in the
|
||||
installation menu.
|
||||
|
||||
Devuan 5 Daedalus desktop-live and minimal-live images come with non-free
|
||||
firmware packages pre-installed. You have the option of removing those non-free
|
||||
firmware packages from the desktop-live and minimal-live after boot, using the
|
||||
`remove_firmware.sh` script available under `/root`.
|
||||
|
||||
|
||||
## Devuan package information pages
|
||||
|
||||
Devuan provides a service to display information about all the packages
|
||||
available in Devuan. This can be accessed at [https://pkginfo.devuan.org](
|
||||
https://pkginfo.devuan.org).
|
||||
|
||||
It is possible to search for package names matching a set of keywords, and to
|
||||
visualise the description, dependencies, suggestions and recommendations of each
|
||||
package.
|
||||
|
||||
## Reporting bugs
|
||||
|
||||
No piece of software is perfect. And acknowledging this fact is the
|
||||
first step towards improving our software base.
|
||||
|
||||
Devuan strongly believes in the cooperation of the community to find, report and
|
||||
solve issues. If you think you have found a bug in a Devuan package, please
|
||||
report it to [https://bugs.devuan.org](https://bugs.devuan.org).
|
||||
|
||||
The procedure to report bugs is quite simple: install and run `reportbug`, a
|
||||
tool that will help you compiling the bug report and including any relevant
|
||||
information for the maintainers.
|
||||
|
||||
`reportbug` assumes than you have a properly configured Mail User Agent that can
|
||||
send emails (and that it knows about). If this is not the case, you can still
|
||||
prepare your bug report with `reportbug`, save it (by default reportbug will
|
||||
save the report under `/tmp`), and then use it as a template for an email to
|
||||
[submit@bugs.devuan.org](mailto:submit@bugs.devuan.org).
|
||||
|
||||
(NOTE: Devuan does not provide an open SMTP relay for `reportbug`
|
||||
yet. If you don't know what this is about, you can safely ignore this
|
||||
information).
|
||||
|
||||
When the bug report is processed, you will receive an email
|
||||
confirmation indicating the number associated to the report.
|
||||
|
||||
Before reporting a bug, please check whether the very same problem has
|
||||
been already experienced and reported by other users.
|
||||
|
||||
In general, issues with Devuan's own forked packages should be reported to
|
||||
[Devuan's BTS](https://bugs.devuan.org). For unforked packages, bugs should
|
||||
usually be fixed in Debian. `reportbug` handles this and sends to the correct
|
||||
BTS by default. You can override the choice that `reportbug` offers and report
|
||||
issues directly to [Debian's BTS](https://bugs.debian.org) by using the `-B
|
||||
debian` option.
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=SMALLER FONTS
|
||||
Comment=Decrease desktop font size
|
||||
Exec=/usr/bin/adjfontsize -
|
||||
Icon=preferences-desktop-accessibility-symbolic
|
||||
Path=
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 8.2 KiB |
@@ -0,0 +1,10 @@
|
||||
PRETTY_NAME="Delphinium GNU/Linux 1.1 (daedalus)"
|
||||
NAME="Delphinium GNU/Linux"
|
||||
VERSION_ID="1.1"
|
||||
VERSION="1.1 (daedalus)"
|
||||
VERSION_CODENAME="daedalus"
|
||||
ID=delphinium
|
||||
ID_LIKE=debian
|
||||
HOME_URL="https://git.devuan.org/frangamer1892/delphinium-sdk"
|
||||
SUPPORT_URL="https://git.devuan.org/frangamer1892/delphinium-sdk/issues"
|
||||
BUG_REPORT_URL="https://git.devuan.org/frangamer1892/delphinium-sdk/issues"
|
||||
|
After Width: | Height: | Size: 1.7 MiB |
@@ -124,7 +124,7 @@ iso_write_isolinux_cfg() {
|
||||
cat <<EOF | sudo tee ${workdir}/binary/isolinux/isolinux.cfg >/dev/null
|
||||
ui vesamenu.c32
|
||||
prompt 0
|
||||
menu title devuan-live boot menu
|
||||
menu title delphinium-live boot menu
|
||||
timeout 70
|
||||
menu background /isolinux/splash.png
|
||||
|
||||
@@ -166,10 +166,6 @@ label failsafe
|
||||
kernel /live/vmlinuz noapic noapm nodma nomce nolapic nosmp nomodeset vga=normal username=${username} apparmor=0
|
||||
append initrd=/live/initrd.img boot=live
|
||||
|
||||
label memtest
|
||||
menu label Memory test
|
||||
kernel /live/memtest
|
||||
|
||||
endtext
|
||||
EOF
|
||||
|
||||
@@ -351,10 +347,6 @@ menuentry "${os}-live (failsafe)" {
|
||||
initrd /live/initrd.img
|
||||
}
|
||||
|
||||
menuentry "Memory test" {
|
||||
linux16 /live/memtest86+.bin
|
||||
}
|
||||
|
||||
EOF
|
||||
}
|
||||
|
||||
@@ -409,7 +401,7 @@ cd -
|
||||
##### this should be temporary
|
||||
#if dpkg -l lightdm ; then
|
||||
# apt-get -y --purge remove lightdm lightdm-gtk-greeter liblightdm-gobject-1-0
|
||||
# echo "Removed lightdm" > /home/devuan/which_dm
|
||||
# echo "Removed lightdm" > /home/delphinium/which_dm
|
||||
#fi
|
||||
#if dpkg -l grub-efi-amd64-signed ; then
|
||||
# apt-get -y remove grub-efi-amd64-signed
|
||||
|
||||
BIN
screenshot_sys.png
Normal file
|
After Width: | Height: | Size: 702 KiB |
BIN
screenshot_tux.png
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
6
sdk
@@ -52,12 +52,12 @@ load() {
|
||||
ckreq || return 1
|
||||
|
||||
os_map=(
|
||||
"devuan" "$R/lib/libdevuansdk/libdevuansdk"
|
||||
"delphinium" "$R/lib/libdevuansdk/libdevuansdk"
|
||||
)
|
||||
|
||||
blend_map=(
|
||||
"devuan-desktop-live" "$R/blends/devuan-desktop-live/devuan-desktop-live.blend"
|
||||
"devuan-minimal-live" "$R/blends/devuan-minimal-live/devuan-minimal-live.blend"
|
||||
"delphinium-desktop-live" "$R/blends/devuan-desktop-live/devuan-desktop-live.blend"
|
||||
"delphinium-minimal-live" "$R/blends/devuan-minimal-live/devuan-minimal-live.blend"
|
||||
"heads" "$R/../heads.blend"
|
||||
"decode" "$R/../decode.blend"
|
||||
)
|
||||
|
||||