-->
If you open a Microsoft Office document in LibreOffice or OpenOffice, you’ll need Microsoft’s fonts installed on your Linux system to see the documents as they were intended to look. This brief tutorial will show you how to install Microsoft Office suite 2010 on Ubuntu 13.04 Raring Ringtail and Linux Mint using Wine. Wine is a free and open-source software that allows to run Windows applications on Ubuntu Linux. Now Microsoft Office is running good through Wine. To get started: 1.). Open terminal (Locate path Where Ur Download Wps Office (.deb) ) 2. Type: dpkg -i wpsoffice.deb. Wait until Finish. Unfortunately Microsoft doesn't develop MSoffice for linux. I've installed WPS office. Another option for a Microsoft Office substitute would be LibreOffice. Installing MS Office 2010 Using PlayOnLinux. First of all make sure to download the installer file for Microsoft Office Application suite to your Linux system or have its DVD ready. Launch PlayOnLinux and from “Office” tab, click on “Microsoft Office 2010” option. Click “Next” from here.
Overview
Microsoft builds and supports a variety of software products for Linux systems and makes them available via standard APT and YUM package repositories. This document describes how to configure the repository on your Linux system, so that you can then install/upgrade Microsoft's Linux software using your distribution's standard package management tools.
Microsoft's Linux Software Repository is comprised of multiple sub-repositories:
prod – The Production sub-repository is designated for packages intended for use in production. These packages are commercially supported by Microsoft under the terms of the applicable support agreement or program that you have with Microsoft.
mssql-server - These repositories contain packages for Microsoft SQL Server on Linux - See also: SQL Server on Linux.
Note
Packages in the Linux software repositories are subject to the license terms located in the packages. Please read the license terms prior to using the package. Your installation and use of the package constitutes your acceptance of these terms. If you do not agree with the license terms, do not use the package.
Configuring the repositories
Repositories can be configured automatically by installing the Linux package that applies to your Linux distribution and version. The package will install the repository configuration, along with the GPG public key used by tools such as apt, yum, or zypper to validate the signed packages and/or repository metadata.
Note that not all supported distributions are listed here. See the current supported package repositories at https://packages.microsoft.com/ and the instructions for manual configuration below.
Debian
- Debian 10 (Buster)
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-add-repository https://packages.microsoft.com/debian/10/prod
sudo apt-get update
Enterprise Linux (RHEL and variants)
Enterprise Linux 6 (EL6)
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/6/packages-microsoft-prod.rpm
Enterprise Linux 7 (EL7)
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm
Enterprise Linux 8 (EL8)
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/8/packages-microsoft-prod.rpm
SUSE
How To Install Microsoft Office 2010 On Kali Linux Windows 10
SUSE Linux Enterprise Server 12
sudo rpm -Uvh https://packages.microsoft.com/config/sles/12/packages-microsoft-prod.rpm
SUSE Linux Enterprise Server 15
sudo rpm -Uvh https://packages.microsoft.com/config/sles/15/packages-microsoft-prod.rpm
Ubuntu
Ubuntu 16.04 (Xenial)
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-add-repository https://packages.microsoft.com/ubuntu/16.04/prod
sudo apt-get update
Ubuntu 18.04 (Bionic)
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-add-repository https://packages.microsoft.com/ubuntu/18.04/prod
sudo apt-get update
Ubuntu 20.04 (Focal)
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc
sudo apt-add-repository https://packages.microsoft.com/ubuntu/20.04/prod
sudo apt-get update
Manual Configuration
The repository configuration files are available from packages.microsoft.com/config. The name and location of these files can be located using the following URI naming convention:
https://packages.microsoft.com/config/<Distribution>/<Version>/prod.(repo|list)
Package and Repository Signing Key
- Microsoft's GPG public key may be downloaded here: https://packages.microsoft.com/keys/microsoft.asc
- Public Key ID: Microsoft (Release signing) gpgsecurity@microsoft.com
- Public Key Fingerprint:
BC52 8686 B50D 79E3 39D3 721C EB3E 94AD BE12 29CF
Examples
- RHEL/CentOS 7
- Ubuntu 20.04
See Also
-->There are several scenarios in which you may not be able (or want) to, install WSL Linux distros via the Microsoft Store. Specifically, you may be running a Windows Server or Long-Term Servicing (LTSC) desktop OS SKU that doesn't support Microsoft Store, or your corporate network policies and/or admins to not permit Microsoft Store usage in your environment.
How To Install Microsoft Office 2010 On Kali Linux Free
In these cases, while WSL itself is available, how do you download and install Linux distros in WSL if you can't access the store?
Note: Command-line shell environments including Cmd, PowerShell, and Linux/WSL distros are not permitted to run on Windows 10 S Mode. This restriction exists in order to ensure the integrity and safety goals that S Mode delivers: Read this post for more information.
Downloading distributions
If the Microsoft Store app is not available, you can download and manually install Linux distros by clicking these links:
This will cause the <distro>.appx
packages to download to a folder of your choosing. Follow the installation instructions to install your downloaded distro(s).
Downloading distros via the command line
If you prefer, you can also download your preferred distro(s) via the command line:
Download using PowerShell
To download distros using PowerShell, use the Invoke-WebRequest cmdlet. Here's a sample instruction to download Ubuntu 16.04.
Tip
If the download is taking a long time, turn off the progress bar by setting $ProgressPreference = 'SilentlyContinue'
How To Install Microsoft Office 2010 On Kali Linux 64-bit
Download using curl
How To Install Microsoft Office 2010 On Kali Linux Download
Windows 10 Spring 2018 Update (or later) includes the popular curl command-line utility with which you can invoke web requests (i.e. HTTP GET, POST, PUT, etc. commands) from the command line. You can use curl.exe
to download the above distros:
In the above example, curl.exe
is executed (not just curl
) to ensure that, in PowerShell, the real curl executable is invoked, not the PowerShell curl alias for Invoke-WebRequest
Note: Using curl
might be preferable if you have to invoke/script download steps using Cmd shell and/or .bat
/ .cmd
scripts.
Installing your distro
How To Install Ms Office 2010 In Kali Linux
If you're using Windows 10 you can install your distro with PowerShell. Simply navigate to folder containing the distro downloaded from above, and in that directory run the following command where app_name
is the name of your distro .appx file.
If you are using Windows server, or run into problems running the command above you can find the alternate install instructions on the Windows Server documentation page to install the .appx
file by changing it to a zip file.
Once your distribution is installed, follow the normal instructions to * Update from WSL 1 to WSL 2 or create a new user account and password.