Open a Linux terminal and enter commands in blue. $ sudo apt-get update; sudo apt-get upgrade <enter> Install gdebi: $ sudo apt-get install gdebi <enter> Download the latest version of CrossOver from https://www.codeweavers.com/products/crossover-linux/download/ Use gdebi to install CrossOver: $ sudo gdebi ~/Downloads/crossover_15.1.0-1.deb <enter> where crossover_15.1.0-1.deb is the latest file downloaded from the above URL.
Tag: debian package
Error installing ttf-mscorefonts-installer Failed to fetch
Error installing ttf-mscorefonts-installer Failed to fetch https://excellmedia.dl.sourceforge.net/project/corefonts/the fonts/final/andale32.exe 404 Not Found When you get above error while installing ttf-mscorefonts-installer, then you can resolve by opening a terminal window and entering the following commands: $ wget -c http://ftp.de.debian.org/debian/pool/contrib/m/msttcorefonts/ttf-mscorefonts-installer_3.6_all.deb -P ~/Downloads <enter> $ sudo apt install ~/Downloads/ttf-mscorefonts-installer_3.6_all.deb <enter> Now it will install fully. Remember this file is … Continue reading Error installing ttf-mscorefonts-installer Failed to fetch
How to install a Ubuntu package file using gdebi with dependencies
If you download a Debian package file, .deb file from the internet, you can install it with any dependencies using gdebi. dpkg will not install the dependencies. If you do not have gdebi installed on your computer, see Step 1. 1. Install gdebi in Linux $ sudo apt-get install gdebi-core <enter> This installs the gdebi … Continue reading How to install a Ubuntu package file using gdebi with dependencies