git: 01df81b711 - main - Handbook - Desktop: Improve KDE Plasma guide
Sergio Carlavilla Delgado <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.doc |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by carlavilla: URL: https://cgit.FreeBSD.org/doc/commit/?id=01df81b711d2accfd3746094875badfab3e76864 commit 01df81b711d2accfd3746094875badfab3e76864 Author: Henry S. Trowbridge <[email protected]> AuthorDate: 2025-08-11 16:10:32 +0000 Commit: Sergio Carlavilla Delgado <[email protected]> CommitDate: 2025-08-11 16:10:32 +0000 Handbook - Desktop: Improve KDE Plasma guide Improved a bit by me. Pull Request: https://github.com/freebsd/freebsd-doc/pull/487 --- .../content/en/books/handbook/desktop/_index.adoc | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/documentation/content/en/books/handbook/desktop/_index.adoc b/documentation/content/en/books/handbook/desktop/_index.adoc index f847032820..829a63d77c 100644 --- a/documentation/content/en/books/handbook/desktop/_index.adoc +++ b/documentation/content/en/books/handbook/desktop/_index.adoc @@ -151,12 +151,21 @@ Enable D-BUS service in `/etc/rc.conf` to start at system boot: # sysrc dbus_enable="YES" .... -To increase messages size execute: +KDE Plasma requires larger message sizes for optimal performance. + +Add the following lines to man:sysctl.conf[5]: + +[.programlisting] +.... +sysctl net.local.stream.recvspace=65536 +sysctl net.local.stream.sendspace=65536 +.... + +To apply the change, either run the following command as root or simply reboot the system: [source,shell] .... -# sysctl net.local.stream.recvspace=65536 -# sysctl net.local.stream.sendspace=65536 +# sysctl -f /etc/sysctl.conf .... [[kde-start]]