This article provides a step-by-step guide on how to install Cinnamon desktop environment on a Dell Optiplex 390 machine running Linux Mint, with a focus on resolving issues related to the Windows not displaying in full screen and colors bleeding right.
Prerequisites
Before proceeding with the installation, ensure your system meets the following requirements:
- A Dell Optiplex 390 machine
- Internet connection
- Minimum 2GB RAM and 10GB free disk space
Installing Linux Mint on Dell Optiplex 390
If you haven't installed Linux Mint on your Dell Optiplex 390 yet, follow these steps:
- Download the Linux Mint ISO image from the official website:
- Create a bootable USB drive using a tool like Rufus:
- Reboot your machine and press F12 to enter the boot menu, then select the USB drive to boot from it.
- Follow the on-screen instructions to complete the installation.
$ wget https://download.linuxmint.com/stable/isos/latest/linuxmint-20.1-cinnamon-64bit.iso
$ rufus.exe -e linuxmint-20.1-cinnamon-64bit.iso A:
Installing Cinnamon Desktop Environment
After installing Linux Mint, you can install the Cinnamon desktop environment using the following steps:
- Open the terminal:
- Update the package list:
- Install Cinnamon:
- Log out of your current session and select the Cinnamon session from the login screen.
$ sudo xfce4-terminal
$ sudo apt update
$ sudo apt install cinnamon
Resolving Windows Not Full Screen and Colors Bleeding Right
If you encounter issues with Windows not displaying in full screen or colors bleeding right, try the following solutions:
Solution 1: Installing Intel Graphics Driver
Install the Intel graphics driver using the following steps:
- Open the terminal:
- Add the Intel graphics PPA:
- Update the package list:
- Install the Intel graphics driver:
- Reboot your machine.
$ sudo xfce4-terminal
$ sudo add-apt-repository ppa:graphics-drivers/ppa
$ sudo apt update
$ sudo apt install xserver-xorg-video-intel
Solution 2: Installing MESA Drivers
If the above solution doesn't work, try installing MESA drivers:
- Open the terminal:
- Install MESA drivers:
- Reboot your machine.
$ sudo xfce4-terminal
$ sudo apt install mesa-utils mesa-vdpau-drivers
Solution 3: Configuring Xorg.conf
If none of the above solutions work, try configuring the Xorg.conf file:
- Open the terminal:
- Create a backup of the current Xorg.conf file:
- Edit the Xorg.conf file:
- Add the following lines at the end of the file:
$ sudo xfce4-terminal
$ sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
$ sudo nano /etc/X11/xorg.conf
Section "InputClass" Identifier "Keyboard Defaults" Option "XkbOptions" "terminate:ctrl_alt_bksp" EndSectionSection "InputClass" Identifier "Mouse Defaults" Option "Protocol" "Auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5" EndSection
Section "Device" Identifier "Device0" Driver "intel" Option "DRI" "true" Option "AccelMethod" "uxa" EndSection
Section "Monitor" Identifier "Monitor0" Option "DPMS" "true" EndSection
Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" EndSection
By following the steps outlined in this article, you should be able to install Cinnamon desktop environment on your Dell Optiplex 390 machine running Linux Mint and resolve issues related to Windows not displaying in full screen and colors bleeding right.
References