ubuntu nut cloud cannot switch users[closed]

System: ubuntu 18.04

problem

I installed Nut Cloud on ubuntu according to the tutorial on the official website of Nut Cloud:

  • First download it on the official website of Nuts Cloud
    Insert picture description here
  • Then, execute the following command to install
sudo dpkg -i nautilus_nutstore_amd64.deb
sudo apt-get install -f

由于学校的邮箱马上要过期了,将坚果云的账户邮箱改成了现在的邮箱,windows下能够切换正常,但是在ubuntu下无法切换。界面的用户栏是灰色不可输入状态,点击切换用户弹出信息要等几秒,但是也没有出现新界面,一直报错。

solve

Uninstall completely, and reinstall Nut Cloud using source installation method:

  • Uninstall Clear Nut Cloud and related files
rm ~/.config/autostart/nutstore-daemon.desktop
rm ~/.local/share/applications/nutstore-menu.desktop
rm ~/.local/share/icons/hicolor/64x64/apps/nutstore.png
gtk-update-icon-cache --ignore-theme-index "~/.local/share/icons/hicolor" > /dev/null 2>&1
rm -rf ~/.nutstore  #此处将坚果云的所有相关文件删除
sudo apt remove nautilus-nutstore-public
  • Install Nut Cloud from Source Code
sudo apt-get install libglib2.0-dev libgtk2.0-dev libnautilus-extension-dev gvfs-bin python-gi gir1.2-appindicator3-0.1
sudo apt-get install yum
sudo yum install glib2-devel gtk2-devel nautilus-devel gvfs libappindicator-gtk3  python2-gobject
wget https://www.jianguoyun.com/static/exe/installer/nutstore_linux_src_installer.tar.gz
tar zxf nutstore_linux_src_installer.tar.gz
cd nutstore_linux_src_installer && ./configure && make
sudo make install
nautilus -q
./runtime_bootstrap

The login interface appears successfully, click sign in, and the problem is solved.
Insert picture description here
In addition, the human customer service of Nut Cloud is really good, and he answers questions patiently. . .

Guess you like

Origin blog.csdn.net/u013468614/article/details/108398042