33

How do I install Opera and Safari on Ubuntu 14.04 LTS 32 bit? Can anyone help? Opera I downloaded but could not get it installed. On the other hand I did not try Safari, even I don't have any idea if Safari has a version for Ubuntu.

David Foerster
  • 36,890
  • 56
  • 97
  • 151
Neo
  • 529

3 Answers3

31

Safari doesn't have Linux version. But you can run it using Wine. First install Wine.

sudo apt-get install -y wine

Then create, download and build directory.

mkdir -p ~/build/safari
cd  ~/build/safari

Download Safari ( version for windows)

wget http://appldnld.apple.com/Safari5/041-5487.20120509.INU8B/SafariSetup.exe

Open using wine.

wine SafariSetup.exe
Adam
  • 379
Priyansh
  • 1,049
16
  1. The latest version of Opera 27 is only for 64-bit systems. If you want to use Opera you should choose an older version:

Opera 12.16 download link for 32-bit Linux

UPDATE: Opera restored 32-bit Linux support since Opera 35: Opera 35 32 bit

Browse Opera official site for necessary packages.

  1. Safari doesn't have Linux version.You cannot run it natively in Ubuntu.
Muzaffar
  • 5,677
1

Opera web browser comes with built-in ad blocker, battery saver and free VPN. To install Opera in all currently supported versions of Ubuntu open the terminal and type:

sudo snap install opera

Apple hasn't a version of Safari that is compatible with Wine since 2010. Microsoft Edge is similar in features to Safari and has the additional advantage that .deb files for installing Edge web browser available from Download Microsoft Insider Chnannels to easily install it in Ubuntu with the following commands:

sudo apt update
sudo apt install ./microsoft-edge-beta_101.0.1210.26-1_amd64 # replace with the name of the .deb file that you downloaded 

Microsoft Edge web browser includes Bing AI with GPT 4.

You can also install Microsoft Edge browser as a flatpak app by running the following commands:

sudo apt update
sudo apt install flatpak  
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub com.microsoft.Edge

To run Microsoft Edge:

flatpak run com.microsoft.Edge
karel
  • 122,292
  • 133
  • 301
  • 332