Glam Prestige Journal

Bright entertainment trends with youth appeal.

I would like to debug a browser compatibility issue with Safari. I don't have a Mac and Windows. I am interested if its still possible to install Safari on Ubuntu 14.04. I've tried using Wine 1.6.2 by installing the last version of Safari that works with Windows. While it installs, it does not launch.

2

4 Answers

Safari uses webkit as web browser engine. You can use epiphany-browser which also uses webkit engine for debugging and checking the compatibility:

sudo apt install epiphany-browser
2

Install wine

$ sudo add-apt-repository ppa:ubuntu-wine/ppa
$ sudo apt-get update
$ sudo apt-get install -y wine1.7

then load wine through start menu

click - Install an app

01

Select - Select Safari

02

Click - OK

4

StackOverflow has some answers but I am trying to find out if they're up-to-date. EDIT: yea, they're out of date. Safari on Windows ended when Safari 6 started. Maybe it can be done legally or ethically in virtualbox.

(The remainder is wrong if you want OSX >=6.0) Basically, install Wine and possibly playonlinux, but I don't know if you can get Safari 9. So far I just found out you can get Safari 5. Here's a page of advice without a date on it.

Maybe one of these will work! Haven't tried it yet ....

(without playonlinux)

(with playonlinux).

3

Apple Safari Installation in Ubuntu

Firstly install PlayOnLinux, which allow easy installation of Safari in Ubuntu. PlayOnLinux also enables the easy installation of several games and application designed to run with Microsoft Windows.

PlayOnLinux

wget -q -O- | sudo apt-key add -
sudo wget -O /etc/apt/sources.list.d/playonlinux.list
sudo apt-get update
# useful dependencies
sudo apt-get install -y curl p7zip-full
# install playonlinux
sudo apt-get install -y playonlinux

Start PlayOnLinux Start PlayOnLinux in the shell console and follow start up the instructions

playonlinux

Install Safari from inside PlayOnLinux

Select Button [+ Install] -> [Internet] -> [Safari] to install Apple Safari

Note!

  1. The browser installation usually takes a couple of minutes because PlayOnLinux also has to download Safari.
  2. The browser installation often hangs again and again! Just cancel and restart the installation from PlayOnLinux. Try, try again. You may have to restart 3-4 times until the final steps work without hanging
  3. The installed Safari browser can only be launched from inside PlayOnLinux through the menu.

Alternative Installation of Safari using Wine

# install wine
sudo apt-get install -y wine
# create download and build directory
mkdir -p ~/build/safari
cd ~/build/safari
# download
wget
# wine
wine SafariSetup.exe

References

  1. Apple Safari Home:

  2. Guide:

  3. Play-On-Linux:

  4. Manual Download of PlayOnLinux:

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy