选择“扩展”然后开启“dash to dock”,如下图所示:

查看/var/log/message日志,报错内容如下:
```
Aug 11 17:36:23 localhost org.gnome.Shell.desktop: extracting: /root/.local/share/gnome-shell/extensions/dash-to-dock@micxgx.gmail.com/metadata.json
Aug 11 17:36:23 localhost journal: Some code accessed the property 'ENABLED_EXTENSIONS_KEY' on the module 'extensionSystem'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Aug 11 17:36:23 localhost journal: Extension "dash-to-dock@micxgx.gmail.com" had error: TypeError: Main.overview.viewSelector is undefined
Aug 11 17:36:23 localhost journal: dash-to-dock_micxgx.gmail.com has error: TypeError: Main.overview.viewSelector is undefined
```
原因:
~~~
This is actually because of new "more classic" classic session.
~~~
解决:
~~~
vi /usr/share/gnome-shell/modes/classic.json
修改"hasOverview": false为"hasOverview": true
ALT+F2,输入r重启gnome
~~~
- python setup.py install报错
- from future import absolute_import 的使用
- celery 4以上的版本不支持windows解决办法
- 'ascii' codec can't decode byte 0xe4 in position 0: ordinal not in range(128)
- Python开发环境CentOS
- dosh-to-dock启动报错
- 创建了__init__.py文件,找不到模块
- CentOS切换中文输入法
- vncserver:1非正常中断后启动不来
- CentOS7安装搜狗输入法
- 安装第三方包常见报错
- Django for Professionals
- Chapter 1:Docker
- What is Docker?
- Containers vs. Virtual Environments
- Install Docker
- Docker Hello, World
- Django Hello, World
- Pages App
- Images, Containers, and the Docker Host
- Git
- Conclusion
- 设置pip/pyenv国内加速源
- 使用stackedit在github编辑文档
- python2.x与python3.x的区别
- python多任务实现
- python执行Linux命令的方法