我使用的是 Ubuntu 16.04,突然无法登录了。每次我尝试登录时,屏幕都会变黑并再次要求输入密码。我陷入了登录循环。我更新到了 Ubuntu 18.04,解决了我的问题,但现在鼠标光标不可见了。我仍然可以点击东西,只是看不到光标。
我在我的 MacOs High Sierra 中使用 Ubuntu 和 Parallels。
答案1
这对我来说很管用。我将“intel”改为“amd”,因为我正在运行threadripper cpu。就我而言,我还必须运行:
sudo mkdir /etc/X11/xorg.conf.d
在创建文件之前。
创建文件
/etc/X11/xorg.conf.d/90-cursoron.conf
输入以下内容
#--makes mouse cursor re-appear
Section "Device"
Identifier "Device0"
Driver "intel"
Option "AccelMethod" "uxa"
Option "SWCursor" "on"
EndSection
#--
这里的关键词是uxa accekeration
方法。
Logout-login
答案2
这对我有用(显然默认模式是“触摸屏模式”):
gsettings set org.gnome.settings-daemon.plugins.cursor active false
答案3
在我的系统上,这是由于升级失败造成的,
crtl使用- alt-打开终端 t并运行sudo dpkg --configure -a
让它运行直到停止;然后使用更新sudo apt update && sudo apt upgrade
并重新启动(sudo reboot
如果您不能使用 GUI 来执行此操作)。
我的光标又回来了。
dpkg
带着--configure -a
旗帜set 将告诉dkpg
配置任何已解压但尚未配置的包。
apt update
检查可用的存储库中是否有可用的升级,并apt upgrade
告知apt
升级任何需要升级的软件包。