Install-Party/DragonFly BSD: Unterschied zwischen den Versionen

Aus Wiki StuRa HTW Dresden
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Zeile 57: Zeile 57:
== Installation von Software ==
== Installation von Software ==


=== Installation von wpa_supplicant ===
=== Installation wpa_supplicant ===
<s>
<s>
: als Alternative zur Version in base (System)
: als Alternative zur Version in base (System)
Zeile 71: Zeile 71:
</s>
</s>


=== Installation X.Org ===
=== Installation grafische Oberfläche ===
 
==== Installation X.Org ====


: <code>pkg ins -y xorg</code>
: <code>pkg ins -y xorg</code>
Zeile 82: Zeile 84:
: <code>service dbus start</code>
: <code>service dbus start</code>


=== Installation HAL ===
==== Installation HAL ====


: <code>pkg ins -y hal</code>
: <code>pkg ins -y hal</code>
Zeile 93: Zeile 95:
: <code>service hald start</code>
: <code>service hald start</code>


=== Installation von Xfce 4 ===
=== Installation Arbeitsoberfläche ===
 
==== Installation Xfce 4 ====


[[#Installation X.Org]]
[[#Installation X.Org]]


: <code>pkg ins -y xfce</code>
: <code>pkg ins -y xfce</code>
: <code>pkg ins -y slim</code>
: <code>ee /etc/rc.conf</code>
<pre></pre>
<pre>
slim_enable="YES"
</pre>
<pre></pre>


: <code>su user</code>
: <code>su user</code>
Zeile 122: Zeile 119:
----
----


=== Installation von GNOME 3 ===
* [[#Installation SLiM]]
 
==== Installation von GNOME 3 ====
 
* [[#Installation X.Org]]
* [[#Installation HAL]]


Grundsätzlich kann hinsichtlich es Umfangs in
Grundsätzlich kann hinsichtlich es Umfangs in
Zeile 152: Zeile 154:
<pre></pre>
<pre></pre>


=== Installation von KDE 5 ===
==== Installation von KDE 5 ====
 
* [[#Installation X.Org]]
* [[#Installation HAL]]


: <code>pkg ins -y plasma5-plasma-workspacce kde-baseapps</code>
: <code>pkg ins -y plasma5-plasma-workspacce kde-baseapps</code>


==== Installation von SDDM ====
* https://community.kde.org/Plasma/shellPackage
 
[[#Installation von SDDM]]
 
=== Installation grafische Anmeldung ===
 
==== Installation SLiM ====
 
: <code>pkg ins -y slim</code>
: <code>ee /etc/rc.conf</code>
<pre></pre>
<pre>
slim_enable="YES"
</pre>
<pre></pre>
 
==== Installation SDDM ====
 
* [[#Installation X.Org]]
* [[#Installation HAL]]


: <code>pkg ins -y sddm</code>
: <code>pkg ins -y sddm</code>

Version vom 24. Dezember 2018, 13:35 Uhr

Installation

Vorbereitung der Installation

Herunterladen vom aktuellen (nachfolgend Version 5.4.0) Abbild für das Installationsmedium bei https://www.dragonflybsd.org/download/.

fetch http://mirror-master.dragonflybsd.org/iso-images/dfly-x86_64-5.4.0_REL.img.bz2
bzip2 -d dfly-x86_64-5.4.0_REL.img.bz2
dd if=dfly-x86_64-5.4.0_REL.img of=/dev/ bs=1G

Nach dem Starten vom Installationsmedium kann zwischen dem Anmelden als root oder installer gewählt werden.

Vorbereitung als root

Änderung (Berichtigung) von der Tastenbelegung

kbdmap
  • entsprechend auswählen und bestätigen

Durchführung der Installation

Nachbereitung der Installation

aktuellen Stand für Aktualisierungen beziehen

pkg update

verfügbare Aktualisierungen beziehen und vornehmen

pkg upgrade -y

WLAN einrichten

ee /etc/rc.conf

# Gerät für WLAN zuschalten
ifconfig_iwn0="up"
# Schnittstelle mit der frei wählbaren Bezeichnung 'wlan0' für das Gerät für WLAN schaffen
wlans_iwn0="wlan0"
# Schnittstelle für WLAN
# * die Verwendung von wpa_supplicant und
# * das automatische Beziehen per DHCP
# vorgeben
ifconfig_wlan0="WPA DHCP"

ifconfig wlan0 up
ee /etc/wpa_supplicant.conf

network={
        key_mgmt=NONE
}

service netif restart

Installation von Software

Installation wpa_supplicant

als Alternative zur Version in base (System)
pkg ins -y wpa_supplicant
ee /etc/rc.conf
wpa_supplicant_program="/usr/local/sbin/wpa_supplicant"

Installation grafische Oberfläche

Installation X.Org

pkg ins -y xorg
ee /etc/rc.conf

dbus_enable= "YES" 

service dbus start

Installation HAL

pkg ins -y hal
ee /etc/rc.conf

hald_enable ="YES"

service hald start

Installation Arbeitsoberfläche

Installation Xfce 4

#Installation X.Org

pkg ins -y xfce
su user

whoami
user
$EDITOR ~/.xinitrc
exec startxfce4
ln -s ~/.xinitrc ~/.xsession
startx
exit

Installation von GNOME 3

Grundsätzlich kann hinsichtlich es Umfangs in

  • gnome-desktop
    nur die Oberfläche, aber selbst ohne gdm
  • gnome3-lite
    das einfache (kleine)
  • gnome3
    alles, nichts, oder

pkg ins -y gnome3
ee /etc/rc.conf
gdm_enable="YES"

pkg ins -y gnome-desktop
ee /etc/rc.conf

gdm_enable="YES"


Installation von KDE 5

pkg ins -y plasma5-plasma-workspacce kde-baseapps

#Installation von SDDM

Installation grafische Anmeldung

Installation SLiM

pkg ins -y slim
ee /etc/rc.conf

slim_enable="YES"

Installation SDDM

pkg ins -y sddm
ee /etc/rc.conf

sddm_enable="YES"

Installation Webbrowser

Installation von Chromium

pkg ins -y chromium

Installation von Firefox

pkg ins -y firefox

Tutorials

Siehe auch

Weblinks