FreeBSD, Debian RDP server setup using xrdp

So. Some time ago I’m used VNC for remote connection to GUI interface of my FreeBSD, Debian computer machines. Today I decide to try microsoft RDP using xRDP. “xRDP is Microsoft’s free and open-source implementation of RDP (Remote Desktop Protocol) which allows non-Microsoft Windows operating systems (such as Linux and BSD) to provide a fully … More FreeBSD, Debian RDP server setup using xrdp

FreeBSD – pkg: Fail to create temporary file: /usr/local/include/KF5/GrantleeTheme/GrantleeTheme/.pkgtemp.GenericFormatter.7mmcK5Vx7Jmk:Not a directory

Proceed with this action? [y/N]: y [1/629] Upgrading grantleetheme from 20.04.1 to 22.04.1… [1/629] Extracting grantleetheme-22.04.1: 2% pkg: Fail to create temporary file: /usr/local/include/KF5/GrantleeTheme/GrantleeTheme/.pkgtemp.GenericFormatter.7mmcK5Vx7Jmk:Not a directory [1/629] Extracting grantleetheme-22.04.1: 100% Solution:

FreeBSD 11.2 + Firebird 2.5.8

Install clang35 (same as in FreeBSD 10.4) : cd /usr/ports/lang/clang35 make config make config-recursive make install clean or cd /usr/ports/lang/clang35 && make config && make config-recursive && make install clean Compile firebird with old clang (this evades all kinds of problems, including iconv/icu problems in /usr/local/libexec/firebird/intl/fbintl.so). P.S. Don’t forget to clean work dir/uninstall your current … More FreeBSD 11.2 + Firebird 2.5.8

FreeBSD UTF-8 in console

Solutions: 1) for 10.3 add “kern.vty=vt” to /boot/loader.conf (at 11 it’s by defualt) 2) for 11 add “hw.vga.textmode=0” to /boot/loader.conf ### Links: https://groups.google.com/forum/#!topic/uafug/NAUr5i_TpTI http://marvins.ru/administrirovanie/utf-8-v-konsoli-i-terminale-freebsd-10-2.html http://marvins.ru/administrirovanie/rusifikaciya-terminala-freebsd-11-x.html # https://www.lissyara.su/?id=2133 http://www.maxblogs.ru/articles/rusifikatsiya-freebsd-2 http://reeves.su/?p=236 http://unix1.jinr.ru/~lavr/vt/vtcons.html

p5-GSSAPI: “You are using OpenSSL!!!”

p5-GSSAPI “You are using OpenSSL from ports and have selected > GSSAPI from base, please select another GSSAPI value.” Solution: cd /usr/ports/security/p5-GSSAPI make config choose one from this options will help: GSSAPI_MIT or GSSAPI_HEIMDAL make clean make install clean P.S. Thanks to Julian H. Stacey Good links: https://lists.freebsd.org/pipermail/freebsd-ports/2016-December/105963.html

Resolving portmaster error “pkg-static: automake-1.16.1 conflicts with automake-wrapper-20131203”

I decide to make some software upgrade. And when updating automake I received so kind of error: “Installing automake-1.16.1… pkg-static: automake-1.16.1 conflicts with automake-wrapper-20131203 (installs files into the same place). Problematic file: /usr/local/bin/aclocal *** Error code 70″ Solutions: 1) using portmaster portmaster -o devel/automake devel/automake-wrapper 2) manual solution pkg info | grep automake pkg delete automake-wrapper-20131203 … More Resolving portmaster error “pkg-static: automake-1.16.1 conflicts with automake-wrapper-20131203”