View | Details | Raw Unified | Return to bug 263782 | Differences between
and this patch

Collapse All | Expand All

(-)b/documentation/content/en/books/handbook/x11/_index.adoc (-14 / +14 lines)
Lines 942-952 Refer to <<x11-wm-gnome>> for instructions on how to configure the GNOME Display Link Here
942
=== Configuring XDM
942
=== Configuring XDM
943
943
944
To install XDM, use the package:x11/xdm[] package or port.
944
To install XDM, use the package:x11/xdm[] package or port.
945
Once installed, XDM can be configured to run when the machine boots up by adding the following line to [.filename]#/etc/rc.conf#:
945
Once installed, XDM can be configured to run when the machine boots up by using sysrc:
946
946
947
[.programlisting]
947
[.programlisting]
948
....
948
....
949
xdm_enable="YES"
949
sysrc xdm_enable="YES"
950
....
950
....
951
951
952
XDM will run on the ninth virtual terminal by default.
952
XDM will run on the ninth virtual terminal by default.
Lines 1046-1073 proc /proc procfs rw 0 0 Link Here
1046
1046
1047
GNOME uses D-Bus for a message bus and hardware abstraction.
1047
GNOME uses D-Bus for a message bus and hardware abstraction.
1048
These applications are automatically installed as dependencies of GNOME.
1048
These applications are automatically installed as dependencies of GNOME.
1049
Enable them in [.filename]#/etc/rc.conf# so they will be started when the system boots:
1049
Enable them with sysrc so they will be started when the system boots:
1050
1050
1051
[.programlisting]
1051
[.programlisting]
1052
....
1052
....
1053
dbus_enable="YES"
1053
sysrc dbus_enable="YES"
1054
....
1054
....
1055
1055
1056
After installation, configure Xorg to start GNOME.
1056
After installation, configure Xorg to start GNOME.
1057
The easiest way to do this is to enable the GNOME Display Manager, GDM, which is installed as part of the GNOME package or port.
1057
The easiest way to do this is to enable the GNOME Display Manager, GDM, which is installed as part of the GNOME package or port.
1058
It can be enabled by adding this line to [.filename]#/etc/rc.conf#:
1058
It can be enabled by using sysrc:
1059
1059
1060
[.programlisting]
1060
[.programlisting]
1061
....
1061
....
1062
gdm_enable="YES"
1062
sysrc gdm_enable="YES"
1063
....
1063
....
1064
1064
1065
It is often desirable to also start all GNOME services.
1065
It is often desirable to also start all GNOME services.
1066
To achieve this, add a second line to [.filename]#/etc/rc.conf#:
1066
To achieve this, use sysrc:
1067
1067
1068
[.programlisting]
1068
[.programlisting]
1069
....
1069
....
1070
gnome_enable="YES"
1070
sysrc gnome_enable="YES"
1071
....
1071
....
1072
1072
1073
GDM will start automatically when the system boots.
1073
GDM will start automatically when the system boots.
Lines 1124-1134 proc /proc procfs rw 0 0 Link Here
1124
1124
1125
KDE uses D-Bus for a message bus and hardware abstraction.
1125
KDE uses D-Bus for a message bus and hardware abstraction.
1126
These applications are automatically installed as dependencies of KDE.
1126
These applications are automatically installed as dependencies of KDE.
1127
Enable them in [.filename]#/etc/rc.conf# so they will be started when the system boots:
1127
Enable them with sysrc so they will be started when the system boots:
1128
1128
1129
[.programlisting]
1129
[.programlisting]
1130
....
1130
....
1131
dbus_enable="YES"
1131
sysrc dbus_enable="YES"
1132
....
1132
....
1133
1133
1134
Since KDE Plasma 5, the KDE Display Manager, KDM is no longer developed.
1134
Since KDE Plasma 5, the KDE Display Manager, KDM is no longer developed.
Lines 1140-1150 To install it, type: Link Here
1140
# pkg install x11/sddm
1140
# pkg install x11/sddm
1141
....
1141
....
1142
1142
1143
Add this line to [.filename]#/etc/rc.conf#:
1143
Use sysrc to enable:
1144
1144
1145
[.programlisting]
1145
[.programlisting]
1146
....
1146
....
1147
sddm_enable="YES"
1147
sysrc sddm_enable="YES"
1148
....
1148
....
1149
1149
1150
A second method for launching KDE Plasma is to type `startx` from the command line.
1150
A second method for launching KDE Plasma is to type `startx` from the command line.
Lines 1191-1201 Alternatively, to build the port: Link Here
1191
1191
1192
Xfce uses D-Bus for a message bus.
1192
Xfce uses D-Bus for a message bus.
1193
This application is automatically installed as dependency of Xfce.
1193
This application is automatically installed as dependency of Xfce.
1194
Enable it in [.filename]#/etc/rc.conf# so it will be started when the system boots:
1194
Enable it with sysrc so it will be started when the system boots:
1195
1195
1196
[.programlisting]
1196
[.programlisting]
1197
....
1197
....
1198
dbus_enable="YES"
1198
sysrc dbus_enable="YES"
1199
....
1199
....
1200
1200
1201
Unlike GNOME or KDE, Xfce does not provide its own login manager.
1201
Unlike GNOME or KDE, Xfce does not provide its own login manager.

Return to bug 263782