vanilla-gnome-desktop
그냥 다음을 통해 설치하고 싶습니다.
apt install vanilla-gnome-desktop
...Ubuntu Desktop 18.04의 기본 설정보다 더 바닐라적인 GNOME 환경을 제공합니다.
처음에는 문제가 발생하며 apt install
다음 중 어떤 방법으로도 문제가 해결되지 않는 것 같습니다.
# apt install vanilla-gnome-desktop
Reading package lists... Done
Building dependency tree
Reading state information... Done
vanilla-gnome-desktop is already the newest version (0.83).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
Setting up plymouth-theme-ubuntu-gnome-logo (18.04.0) ...
update-alternatives: error: alternative link /usr/share/plymouth/themes/default.grub is already managed by default.grub
dpkg: error processing package plymouth-theme-ubuntu-gnome-logo (--configure):
installed plymouth-theme-ubuntu-gnome-logo package post-installation script subprocess returned error exit status 2
Errors were encountered while processing:
plymouth-theme-ubuntu-gnome-logo
E: Sub-process /usr/bin/dpkg returned an error code (1)
어쨌든, 나는 전에 패키지를 정리 plymouth-theme-ubuntu-logo
했고plymouth-theme-ubuntu-text
설치됨 plymouth-disabler
.
/etc/grub-black-and-white
또한 다음 을 포함하는 작은 파일도 만들었습니다 .
if background_color 0,0,0,0; then
clear
fi
나는 그것을 통해 "설치"했습니다.
update-alternatives --install /usr/share/plymouth/themes/default.grub default.grub /etc/grub-black-and-white 100
update-alternatives --remove default.grub /etc/grub-black-and-white
하지만 제대로 설치 하려면 해당 항목( )을 제거해야 했고 plymouth-theme-ubuntu-gnome-logo
, 따라서 위의 문제가 해결되었습니다.
/usr/share/plymouth/themes/default.grub
하지만 이제 고정 포인터를 다시 인스턴스화하려고 하면 /etc/grub-black-and-white
다시 불평합니다.
# update-alternatives --install /usr/share/plymouth/themes/default.grub default.grub /etc/grub-black-and-white 100
update-alternatives: error: alternative link /usr/share/plymouth/themes/default.grub is already managed by default.plymouth
분명히 수동으로 다시 무시할 수 있지만 내 목표는 일부 패키지가 /usr/share/plymouth/themes/default.grub
선택하는 것보다 내 설정이 우선하도록 하는 것입니다.~을 고집하다.
이것을 달성할 수 있는 방법이 있나요 update-alternatives
? 어떻게?