Answers:
我看过这个问题,看起来simple-lightdm-manager影响了一个名为unity-greeter.conf的文件。
让我们从打开一个终端开始,开始在您的破折号中键入“终端”以查看该选项或按ctrl + alt + t
让我们转到正确的目录:
cd /etc/lightdm
现在,在进行任何更改之前,请先备份文件:
sudo cp unity-greeter.conf unity-greeter.conf.bak
现在我们需要打开此文件,看看有什么更改,键入/复制:
sudo gedit /etc/lightdm/unity-greeter.conf
该文件应如下所示,但是我猜您的背景和徽标行看起来会有所不同:
#
# background = Background file to use, either an image path or a color (e.g. #772953)
# logo = Logo file to use
# theme-name = GTK+ theme to use
# font-name = Font to use
# xft-antialias = Whether to antialias Xft fonts (true or false)
# xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
# xft-hintstyle = What degree of hinting to use (hintnone, hintslight, hintmedium, or hintfull)
# xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr)
#
[greeter]
background=/usr/share/backgrounds/warty-final-ubuntu.png
logo=/usr/share/unity-greeter/logo.png
theme-name=Ambiance
icon-theme-name=ubuntu-mono-dark
font-name=Ubuntu 11
xft-antialias=true
xft-dpi=96
xft-hintstyle=hintslight
xft-rgba=rgb
现在,要么用上面的代码替换文件中的所有内容,要么用上面的代码替换背景和徽标行。然后保存并注销。
注意不要在此文件中添加其他任何内容,否则可能会对登录屏幕造成不利影响,甚至阻止您登录
上面的代码是新安装的Ubuntu 11.10加载的默认文件。
我的盒子卡在Ubuntu徽标上时遇到问题。击中Alt + F1提示我运行sudo apt-get --purge remove lightdm gdm
-我使用的是gnome,而不是Unity。请注意这一点-注意Ubuntu还要删除的内容。
就我而言,Ubuntu删除了gnome-core。
完成后,我运行sudo apt-get install gnome
了默认配置的gdm,gnome-core等。重新启动后,我回到了gdm,不再在启动时停留在Ubuntu标志上。
小心使用apt-get --purge remove!
--purge
,Ubuntu将删除设置-然后重新安装,您将获得原始设置。就我而言,我不想要lightdm而是gdm,但是对于所有Aptitude软件包来说,这都是相同的原理。
sudo apt-get -o Dpkg::Options::="--force-confnew" install --reinstall lightdm
会为你做。
LightDM从多个位置加载设置。Ubuntu文档页面上的此列表显示了加载顺序,此列表中的后续列表将覆盖较早的位置。
以下文件提供了LightDM配置:
/usr/share/lightdm/lightdm.conf.d/*.conf # System/package configs
/etc/lightdm/lightdm.conf.d/*.conf # Package/system administrator configs
/etc/lightdm/lightdm.conf # Generated by installer once, overrides others
系统提供的配置存储在其中,/usr/share/lightdm/lightdm.conf.d/*.conf
并且通常用户不可编辑。系统管理员(带有sudo
)可以在/etc/lightdm/lightdm.conf.d/*.conf
和中覆盖此配置/etc/lightdm/lightdm.conf
。按照上述顺序读取文件,然后将它们组合在一起以进行LightDM配置。
例如,如果要覆盖系统配置的默认会话(提供了/usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf
),则应/etc/lightdm/lightdm.conf.d/50-myconfig.conf
使用以下内容制作文件:
[SeatDefaults]
user-session=mysession
提供了一个示例文件,其中显示了所有可能的配置 /usr/share/doc/lightdm/lightdm.conf.gz.
如果您通过安装程序并填写了auto-login / etc,则可能将其写入/etc/lightdm/lightdm.conf
或/etc/lightdm/lightdm.conf.d/*.conf
。您可以放心地删除,/etc/lightdm/lightdm.conf
以还原为系统设置,如果未对/etc/lightdm/lightdm.conf.d/
目录中的内容进行任何更改,则仅应在其中包含50-ubuntu.conf和其他软件包配置。
我发现这是因为在安装Ubuntu 11.10的过程中,我选中了“加密的主文件夹”选项。在搜索Simple LightDM Manager时,我发现如果您的主文件夹是加密的,则该应用程序没有更改它的LightDM设置所需的文件特权。我已经更改了文件的权限,希望可以允许Simple LighDM Manager访问它们,但是我得到的只是一个黑屏,左侧有登录提示。我可以更改颜色,但是不能将任何类型的图像添加到登录屏幕。我尝试删除Simple LightDM Manager,然后按照上述答案中的说明重新安装常规的lightdm,但无济于事。我是Ubuntu的新手,所以我想坚持下去,因为除了重新安装操作系统外,似乎别无他法,