-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmsoffice_linux.sh
35 lines (24 loc) · 950 Bytes
/
msoffice_linux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
#
# Script to install MS Office on linux
#
#
# Wine
echo -e "\n ---------------- Installing Wine ---------------- \n"
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
sudo apt install wine-stable
echo -e "\n Wine Installed \n"
# Play On Linux
echo -e "\n ---------------- Installing Play On Linux ---------------- \n"
wget -q "http://deb.playonlinux.com/public.gpg" -O- | sudo apt-key add -
sudo wget http://deb.playonlinux.com/playonlinux_cosmic.list -O /etc/apt/sources.list.d/playonlinux.list
sudo apt-get install playonlinux
echo -e "\n Play On Linux Installed \n"
# Dependencies
echo -e "\n ---------------- Installing Dependencies ---------------- \n"
sudo apt-get install winbind winetricks
echo -e "\n Dependencies Installed \n"
echo -e "\n====================================\n"
echo -e "\n======== Installation Done =========\n"
echo -e "\n====================================\n"