mirror of https://github.com/tiyn/wiki
parent
17b529f213
commit
f98883b9e2
@ -0,0 +1,11 @@
|
||||
# Init
|
||||
|
||||
The init process is the first process started after boot.
|
||||
All processes running in later stages are descendants of the init process.
|
||||
The init process is given to a init system that manages various services.
|
||||
|
||||
## Init Services
|
||||
|
||||
The following is a list of available init services.
|
||||
|
||||
- [SystemD](/wiki/linux/systemd.md) is most common among linux systems.
|
@ -0,0 +1,27 @@
|
||||
# NetworkManager
|
||||
|
||||
NetworkManager - short NM - is a program to automatically detect and connect to
|
||||
networks by providing options for various configuration.
|
||||
|
||||
## Installation
|
||||
|
||||
NetworkManager can be installed with the `networkmanager` package on most linux
|
||||
distributions which provides daemon aswell as `nmcli` a command line interface
|
||||
and `nmtui` a terminal user interface for configuration.
|
||||
Additionally `nm-connection-editor` can be installed for a graphical user
|
||||
interface.
|
||||
|
||||
## Usage
|
||||
|
||||
After installation `networkmanager.service` has to be enabled by the used
|
||||
[init-system](/wiki/linux/init.md) (for example
|
||||
[systemD](/wiki/linux/systemd.md#startstopenabledisable-a-service)).
|
||||
|
||||
### OpenVPN
|
||||
|
||||
NetworkManager needs a plugin to work with openvpn configurations.
|
||||
This plugin can be installed with the `networkmanager-openvpn` package.
|
||||
|
||||
OpenVPNs `.ovpn` files can then be imported by running
|
||||
`nmcli connection import type openvpn file <openvpn-file>`.
|
||||
Afterwards the can be modified accordingly.
|
Loading…
Reference in new issue