Ubuntu16.04下fcitx无输入框问题

安装了Ubuntu16.04+GNOME,并安装了Fcitx输入法,发现怎么都调不出Fcitx的输入框。

上网搜索,发现是fcitx-module-kimpanel的问题,它会导致非KDE桌面下,无法调出Fcitx的输入框,只要删了它就OK了。

sudo apt remove fcitx-module-kimpanel …
➟ Read more

CentOS7启用NTP服务

  • 安装
sudo yum -y install ntp
  • 设置/etc/ntp.conf
# 允许同步的的IP范围
restrict 10.150.20.0 mask 255.255.255.0 nomodify notrap

#增加同步的服务器
server 0.asia.pool.ntp.org iburst
server 1.asia.pool …
➟ Read more

CentOS7启用PXE服务器

建个PXE服务器,通过PXE服务器安装Linux还是很方便的。

  • 安装
sudo yum -y install syslinux xinetd tftp-server
mkdir /home/data/tftpboot/pxelinux.cfg
cp -rf /usr/share/syslinux/pxelinux.0 /home/data/tftpboot
sudo chcon -ht tftpdir_rw_t /home/data/tftpboot
  • 启动TFTP

编辑/etc/xinetd.d/tftp

disable = no #yes改成no …
➟ Read more

在CentOS7中安装FCITX

网上教程安装了个无盘CentOS7

安装fcitx,只要安装上epel源就有了。

要使fcitx生效,必须先关闭gnome-shell对键盘的监听,然后才能切换输入法fcitx,否则报错。

gsettings set org.gnome.settings-daemon.plugins …
➟ Read more