肉桂升级到2.0.6-20131026040307-精确通过突触,“肉桂设置”gui或窗口被打破。它显示为空白,仅显示“外观”、“首选项”、“硬件”和“管理”的配置类别图标。应该在这些类别中的图标消失了。我不知道肉桂控制中心是否在上一次更新肉桂的过程中被移除,但这个问题始于10月25日。
从终端运行肉桂设置时,会出现以下几个错误:
Could not load screen module; is the cinnamon-control-center package installed?
/usr/lib/cinnamon-settings/modules/cs_user.py:112: Wa
我有一个新的Ubuntu安装,并希望安装肉桂作为桌面环境。当我做apt search cinnamon时,我会得到多个结果,但两个似乎是正确的结果。
第一种是
cinnamon/xenial 2.8.6-1ubuntu1 amd64 all
Innovative and comfortable desktop (Common data files)
而另一个则是
cinnamon-desktop-environment/xenial,xenial 2.8.0 all
Cinnamon desktop environment - full desktop with extra c
因此,我试图为我的Gentoo机器添加一个桌面环境中的肉桂,到目前为止,我已经很好地完成了安装工作,并且使用了x-server,尽管我很难安装实际的Cinnamon桌面环境。
我运行命令:emerge --ask gnome-extra/cinnamon并得到以下错误消息:
All ebuilds that could satisfy "gnome-extra/cinnamon" have been masked.
One of the fllowing masked packages is required to complete your request:
- gnome
我发现自己无法从我的wd中获得linux 19。
我可以用最少的问题启动windows、ubuntu、centos、debian、kali linux和linux 18,但是linux 19就是不能启动。
Curent菜单文件:
DEFAULT vesamenu.c32
PROMPT 0
MENU TITLE PXE Boot Menu
MENU INCLUDE pxelinux.cfg/graphics.conf
## Local Boot ##
LABEL local
menu label ^Boot Normally
localboot -1
Type 0x8
当试图升级到PPA版本的Nemo时,我得到以下dpkg错误:
$ sudo apt-get dist-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following NEW packages will be installed:
cinnamon-translations python-requests python-urllib3
The following pa
我一直在尝试在我的ubuntu 13.04安装肉桂,当我给
sudo apt-get install cinnamon
我得到的错误是:
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
我最近了解到,可以使用apt下载源代码,并且可以轻松地从本地修改、重新构建和安装包。
# Download the sources
apt source cinnamon-settings-daemon
cd cinnamon-settings-daemon-4.4.0+tricia
# Then install the build dependencies
apt build-dep cinnamon-settings-daemon
#Then build from the modified sources
apt build
Install the modified deb file (a
我是Linux的用户。我经常希望我在Linux中拥有的一个特性是能够根据一天中的时间在光和暗模式之间切换,就像在macOS和移动设备中一样。
我已经为从光模式到黑暗模式的转换设置了以下脚本:
#!/bin/bash
notify-send "Switching to dark mode"
gsettings set org.cinnamon.desktop.wm.preferences theme Mint-Y-Dark
gsettings set org.cinnamon.desktop.interface gtk-theme Mint-Y-Dark
gsettings se
我正在尝试用以下bash脚本重新启动gui (在薄荷+肉桂下):
if ! type gnome-shell > /dev/null; then
gnome-shell --replace
elif ! type cinnamon > /dev/null; then
cinnamon --replace
fi
我收到了一条错误消息,gnome不存在。有办法写这个脚本多平台吗?