Mdev: Difference between revisions

From Alpine Linux
(→‎See Also: link "mdev like a boss")
(rename disable to remove)
Line 35: Line 35:
You might also want to take a look at [[#libudev replacement|libudev replacement]] if programms you want to use depend on udev.
You might also want to take a look at [[#libudev replacement|libudev replacement]] if programms you want to use depend on udev.


== Disable ==
== Remove ==


{{warning|Disabling mdev without setting up a different device manager may cause programms to break}}
{{warning|Disabling mdev without setting up a different device manager may cause programms to break}}
Line 46: Line 46:
You might also want to uninstall the init scripts since they are not used anymore.
You might also want to uninstall the init scripts since they are not used anymore.
{{cmd|# apk del {{pkg|busybox-mdev-openrc}}}}
{{cmd|# apk del {{pkg|busybox-mdev-openrc}}}}
The mdev binary is part of the {{pkg|busybox}} package and therefor can't be uninstalled.


== libudev replacement ==
== libudev replacement ==

Revision as of 12:02, 21 September 2023

This material is work-in-progress ...

This is almost complete but needs testing that it works when followed as a step by step guide.
(Last edited by Sertonix on 21 Sep 2023.)

Mdev is the default device manager on Alpine Linux. It is provided by busybox as alternative to systemd's udev. Mdev is not a drop in replacement for udev. See eudev for that instead. Mdev lacks some features which makes it not recommended for a full blown desktop enviroment.

Installation

The easy way to setup mdev is throught the setup script. For custom installation see the manually section. Note that this is only recommended for advanced users.

Setup Script

The alpine-conf package privides setup-devd to easily install and setup device managers.

Install alpine-conf if not already.

# apk add alpine-conf

Setup mdev.

# setup-devd mdev

Manually

Mdev is provided by the busybox package which is pre installed on any alpine installation. To run mdev the OpenRC init scripts are required too. If it isn't already installed install it:

# apk install busybox-mdev-openrc


If you already have a device manager installed you need to remove it before you start mdev.


Enable the mdev service.

# rc-update add mdev sysinit

# rc-update add hwdrivers sysinit

If you are not running in a chroot you will also want to start mdev.

# rc-service mdev start

# rc-service hwdrivers start

You might also want to take a look at libudev replacement if programms you want to use depend on udev.

Remove

Warning: Disabling mdev without setting up a different device manager may cause programms to break


To disable mdev when using a different device manager like eudev you need to stop and remove the service. If you are running in a chroot you don't need to stop the service.

# rc-service mdev stop

# rc-update delete mdev sysinit


You might also want to uninstall the init scripts since they are not used anymore.

# apk del busybox-mdev-openrc

The mdev binary is part of the busybox package and therefor can't be uninstalled.

libudev replacement

libudev-zero provides a mdev compatible version of libudev. When installed it will make some udev reliant programms work with mdev. See doesn't work.

Custom network interfaces

See Custom network interface names

USB Printer

See mdev hacks for USB printers

Raspberry Pi Bluetooth Speaker

See Raspberry Pi Bluetooth Speaker

See Also