wget https://github.com/rdesktop/rdesktop/releases/download/v1.9.0/rdesktop-1.9.0.tar.gz #下载tar包 tar -xzvf rdesktop-1.9.0.tar.gz #解压 cd rdesktop-1.9.0 ./configure –prefix=/usr/local/rdesktop #编译文件到/usr/local/rdesktop位置,也就是安装位置 make make install #编译安装 ./rdesktop #如果安装成功,会出现下面的样子 rdesktop: A Remote Desktop Protocol client. Version 1.9.0. Copyright (C) 1999–2016 Matthew Chapman et al. See http://www.rdesktop.org/ for more information. 此时Rdesktop的安装目录在/usr/local/rdesktop,而运行目录则在rdesktop-1.9.0, 如果需要卸载,则直接删除/usr/local/rdesktop并在rdesktop-1.9.0目录中执行make uninstall即可完整卸载。 每次轮到我编译东西就出毛病,还专门网上找不到资料,这次碰到个debug,基本上能遇到的问题就下面这么多。 问题:configure: error: no acceptable C compiler found in $PATH 原因以及解决方法:没有安装合适的GCC编译器,执行sudo yum install gcc-c++… Continue reading 编译安装rdesktop-1.9.0
Category: linux
openEuler_x86_64.repo
能ping www.baidu.com 安装不是server的话可能会缺少一些命令,例如 tar,vim…… 配置yum,我的openeuler20.03 LTS版 x86和arrch64配置起来还是有一定区别的,我的是x86 uname -a可以查看 cd /etc/yum.repos.d/ vim openEuler_x86_64.repo 粘贴以下内容 [osrepo] name=osrepo baseurl=https://repo.openeuler.org/openEuler-20.03-LTS-SP2/OS/x86_64/ enabled=1 gpgcheck=1 gpgkey=https://repo.openeuler.org/openEuler-20.03-LTS-SP2/OS/x86_64/RPM-GPG-KEY-openEuler [everything] name=everything baseurl=https://repo.openeuler.org/openEuler-20.03-LTS-SP2/everything/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://repo.openeuler.org/openEuler-20.03-LTS-SP2/everything/x86_64/RPM-GPG-KEY-openEuler 依次使用以下命令: yum clean all yum makecache yum repolist all yum就成功配置好了
rdesktop-v1.9.0
rdesktop-1.9.0.tar 源码安装,执行configure时提示需要xcursor,请安装: rdesktop requires libXcursor, install the dependency sudo apt-get install libxcursor-dev libpcsclite-dev libssl-dev root135@root135:~/rdesktop-1.9.0$ sudo ./configure –disable-credssp checking build system type… x86_64-unknown-linux-gnu checking host system type… x86_64-unknown-linux-gnu checking for gcc… gcc checking whether the C compiler works… yes checking for C compiler default output file name… a.out checking for suffix of executables… checking whether… Continue reading rdesktop-v1.9.0
rdesktop
rdesktop rdesktop: A Remote Desktop Protocol client. Version 1.9.0. Copyright (C) 1999-2016 Matthew Chapman et al. See http://www.rdesktop.org/ for more information. Usage: rdesktop [options] server[:port] -u: user name -d: domain -s: shell / seamless application to start remotely -c: working directory -p: password (- to prompt) -n: client hostname -k: keyboard layout on server (en-us,… Continue reading rdesktop
The system will suspend now!
Broadcast message from gdm@115 on tty1 (Wed 2025-04-09 09:47:18 CST): The system will suspend now! Connection to 39.100.102.12 closed by remote host. Connection to 39.100.102.12 closed. root135@root135:~/Documents$ ssh -oPort=6115 root115@39.100.102.12 root115@39.100.102.12’s password: Web console: https://115:9090/ or https://10.168.1.115:9090/ Last login: Wed Apr 9 09:33:11 2025 from 10.168.1.115 root115@115:~$ su – root Password: su: Authentication failure root115@115:~$… Continue reading The system will suspend now!