如何修复顶部面板中的ubuntu 18.04 GNOME-Flashback中损坏的nautilus-dropbox图标?


Answers:


9

总结一下:

  1. dropbox stop && env XDG_CURRENT_DESKTOP=Unity dropbox start
    
  2. 启动后单击Dropbox图标。转到“ 首选项 ”,然后取消选中“ 系统启动时启动Dropbox ”(以防止Dropbox在重启后更改启动命令。)

  3. 转到“ 应用程序” > “首选项” >“ 启动应用程序”,如果Dropbox已经存在,请单击“ 编辑”,如果没有,请单击“ 添加”

    输入
    名称: Dropbox
    命令: env XDG_CURRENT_DESKTOP=Unity dropbox start
    注释: Sync your files across computers and to the web

  4. gedit ~/.config/autostart/dropbox.desktop
    

    替换Exec=dropbox start -i

    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start
    

  1. sudo gedit /usr/share/applications/dropbox.desktop
    

    替换Exec=dropbox start -i

    Exec=env XDG_CURRENT_DESKTOP=Unity dropbox start
    

1
整理答案的格式。
N0rbert '18年

完成这些步骤后,保管箱图标又回来了,但是如果我在该图标上单击鼠标左键或右键单击,我只会得到一个空菜单。我正在运行xubuntu 18.04。
user26866 '18

6

我可以在带有GNOME FlashBack会话的干净Ubuntu 18.04 LTS上进行确认,因此我只安装了GNOME Panel新软件包和Nautilus Dropbox插件。

sudo apt-get install gnome-panel nautilus-dropbox

安装后,nautilus-dropbox我已经登录到我的Dropbox帐户。

然后,在重新启动系统后,我得到了与OP相同的映像,因此我报告了错误1767665

它可能在本地固定,如启动板上建议的@AlbertsMuktupāvels(muktupavels)所示
我将方法简化为仅两行:

mkdir -p ~/.config/autostart/
cp  /usr/share/applications/dropbox.desktop ~/.config/autostart/dropbox.desktop
sed -i "s/dropbox start -i/env XDG_CURRENT_DESKTOP=Unity dropbox start -i/" ~/.config/autostart/dropbox.desktop

第一Exec行在其中找到行dropbox start -i并将其更改为env XDG_CURRENT_DESKTOP=Unity dropbox start(即使我们正在使用GNOME,它也强制dropbox“使用” Unity桌面),第二行创建用户XDG-autostart目录,第三行将XDG-autostart桌面文件复制到用户XDG -autostart目录。

之后,Dropbox菜单就位并且可以正常工作。


我同时编辑了问题和答案(请参见上文)。投票重新开放。
N0rbert '18年

我建议1. Dropbox Stop && env XDG_CURRENT_DESKTOP = Unity Dropbox启动2.启动后转到Dropbox中的设置,并选择在启动时不启动。3.使用命令“ env XDG_CURRENT_DESKTOP = Unity dropbox start”添加或编辑Dropbox的启动应用程序
Vijay

1
我在干净安装18.04 LTS上测试了我的方法。它只是工作。因此,我在这里更喜欢KISS原则 :)
N0rbert '18年

0

当前推荐的解决方案-安装Dropbox Ubuntu软件中心,而不是.deb

删除所有内容

dropbox stop
dropbox status  # Should report "not running"
rm -rf ~/.dropbox-dist
rm -rf /var/lib/dropbox
rm -rf ~/.dropbox*
sudo apt-get remove nautilus-dropbox
sudo apt-get remove dropbox
rm /etc/apt/source.d/dropbox

重启。

从ubuntu软件商店安装保管箱

sudo apt-get install dropbox

https://www.dropboxforum.com/t5/Installs-integrations/Ubuntu-18-04-appindicators/td-p/295947

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.