How to install Opera Browser?
up vote
14
down vote
favorite
I am trying to install opera browser from the terminal. I downloaded the 'debian' installer because it didn't show up in software center.
It completely destroyed my software center - it is frozen and I have no idea how to fix (I have a different thread for that though).
Can I use this thing called synaptic package manager to install Opera? or am I stuck with Firefox?
How do I install Opera Browser?
command-line software-center google-chrome browser opera
add a comment |
up vote
14
down vote
favorite
I am trying to install opera browser from the terminal. I downloaded the 'debian' installer because it didn't show up in software center.
It completely destroyed my software center - it is frozen and I have no idea how to fix (I have a different thread for that though).
Can I use this thing called synaptic package manager to install Opera? or am I stuck with Firefox?
How do I install Opera Browser?
command-line software-center google-chrome browser opera
1
You have asked a lot of questions here. In future can you limit your questions to one topic for each question. It makes it easier for us to answer (and more questions means more chances to earn reputation. Also questions are easier to read if you use correct capitalisation and puctuation.
– Warren Hill
May 5 '13 at 12:55
To pick up on some of the questions Opera is being dealt with as answers but Ubuntu Commands, sudo, synaptic. If you these sites do not cover what you need to know ask a separate question about each.
– Warren Hill
May 5 '13 at 13:00
add a comment |
up vote
14
down vote
favorite
up vote
14
down vote
favorite
I am trying to install opera browser from the terminal. I downloaded the 'debian' installer because it didn't show up in software center.
It completely destroyed my software center - it is frozen and I have no idea how to fix (I have a different thread for that though).
Can I use this thing called synaptic package manager to install Opera? or am I stuck with Firefox?
How do I install Opera Browser?
command-line software-center google-chrome browser opera
I am trying to install opera browser from the terminal. I downloaded the 'debian' installer because it didn't show up in software center.
It completely destroyed my software center - it is frozen and I have no idea how to fix (I have a different thread for that though).
Can I use this thing called synaptic package manager to install Opera? or am I stuck with Firefox?
How do I install Opera Browser?
command-line software-center google-chrome browser opera
command-line software-center google-chrome browser opera
edited Jun 2 '14 at 3:46
Eric Leschinski
1,39111319
1,39111319
asked May 5 '13 at 12:34
bruce
82751219
82751219
1
You have asked a lot of questions here. In future can you limit your questions to one topic for each question. It makes it easier for us to answer (and more questions means more chances to earn reputation. Also questions are easier to read if you use correct capitalisation and puctuation.
– Warren Hill
May 5 '13 at 12:55
To pick up on some of the questions Opera is being dealt with as answers but Ubuntu Commands, sudo, synaptic. If you these sites do not cover what you need to know ask a separate question about each.
– Warren Hill
May 5 '13 at 13:00
add a comment |
1
You have asked a lot of questions here. In future can you limit your questions to one topic for each question. It makes it easier for us to answer (and more questions means more chances to earn reputation. Also questions are easier to read if you use correct capitalisation and puctuation.
– Warren Hill
May 5 '13 at 12:55
To pick up on some of the questions Opera is being dealt with as answers but Ubuntu Commands, sudo, synaptic. If you these sites do not cover what you need to know ask a separate question about each.
– Warren Hill
May 5 '13 at 13:00
1
1
You have asked a lot of questions here. In future can you limit your questions to one topic for each question. It makes it easier for us to answer (and more questions means more chances to earn reputation. Also questions are easier to read if you use correct capitalisation and puctuation.
– Warren Hill
May 5 '13 at 12:55
You have asked a lot of questions here. In future can you limit your questions to one topic for each question. It makes it easier for us to answer (and more questions means more chances to earn reputation. Also questions are easier to read if you use correct capitalisation and puctuation.
– Warren Hill
May 5 '13 at 12:55
To pick up on some of the questions Opera is being dealt with as answers but Ubuntu Commands, sudo, synaptic. If you these sites do not cover what you need to know ask a separate question about each.
– Warren Hill
May 5 '13 at 13:00
To pick up on some of the questions Opera is being dealt with as answers but Ubuntu Commands, sudo, synaptic. If you these sites do not cover what you need to know ask a separate question about each.
– Warren Hill
May 5 '13 at 13:00
add a comment |
4 Answers
4
active
oldest
votes
up vote
6
down vote
accepted
Synaptic is a graphical interface for Aptitude, the package manager in Ubuntu/Linux. It provides a listing of available software packages that are available to download and install from the repositories listed in your Software Sources. Synaptic is less intimidating to use than apt-get
in a Terminal interface for users not used to dealing with the command line.
Preceding commands in Terminal/command line with sudo
imparts a restricted root-user ability for performing commands that are not available for standard user accounts.
When in doubt about any basic command in Terminal, you can always man [base command]
to access the command manual pages. man sudo
will show the manual for sudo
, for example. There is also extensive documentation on the Ubuntu website for most commands.
As for installing Opera, it is not maintained in the standard Ubuntu repositories. You have two options:
1) add the Opera repository to your Software Sources as mentioned in the other answer and following the directions in the provided link; or
2) download and install Opera manually.
To install Opera manually, go to the Opera website (www.opera.com) and download it from there. Presuming that you have your downloads set to go to your Downloads Folder, you can run the following in Terminal:
cd /home/your_account/Downloads ;ls -l
Replace "your_account" with your short name; the "ls -l" will list the contents of the Downloads folder. Locate the Opera package file - it should be something like 'Opera_12.15.1748_amd64.deb'.
sudo dpkg -i Opera_12.15.1748_amd64.deb
and enter your password when prompted. This will run the Opera installer.
In order to have Opera updated automatically, you should still add the Opera repository to your list of software sources.
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
add a comment |
up vote
16
down vote
How to install Opera on Ubuntu:
From the terminal, add a pointer to the opera stable sources:
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
Install the key:
sudo sh -c 'wget -O - http://deb.opera.com/archive.key | apt-key add -'
Update repo:
sudo apt-get update
Install Opera:
sudo apt-get install opera
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
1
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
3
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
add a comment |
up vote
4
down vote
By the time this question was answered, things have evolved.
By now, you can simply go to Download Opera browser, then click the button above Opera for Windows, Mac or Linux and the website will detect your operating system and processor architecture (32 or 64 bits) using device fingerprinting and prompt you a .deb
package to download and install by a simple click using the Ubuntu Software Center.
Update (09/12/2017):
I just tested this again on 2 different virtual machines (Ubuntu 16.04 and 17.04 LTS), and the procedure worked as described above.
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions fordpkg
in douggro's answer proved successful in installing it.
– Sam Onela
Nov 22 '17 at 17:41
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
add a comment |
up vote
1
down vote
Opera is available as a snap package in all currently supported versions of Ubuntu. To install Opera open the terminal and type:
sudo snap install opera
Opera's built-in ad blocker works OK and Flash videos play in Opera by default.
add a comment |
protected by Community♦ Jan 17 at 15:07
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
accepted
Synaptic is a graphical interface for Aptitude, the package manager in Ubuntu/Linux. It provides a listing of available software packages that are available to download and install from the repositories listed in your Software Sources. Synaptic is less intimidating to use than apt-get
in a Terminal interface for users not used to dealing with the command line.
Preceding commands in Terminal/command line with sudo
imparts a restricted root-user ability for performing commands that are not available for standard user accounts.
When in doubt about any basic command in Terminal, you can always man [base command]
to access the command manual pages. man sudo
will show the manual for sudo
, for example. There is also extensive documentation on the Ubuntu website for most commands.
As for installing Opera, it is not maintained in the standard Ubuntu repositories. You have two options:
1) add the Opera repository to your Software Sources as mentioned in the other answer and following the directions in the provided link; or
2) download and install Opera manually.
To install Opera manually, go to the Opera website (www.opera.com) and download it from there. Presuming that you have your downloads set to go to your Downloads Folder, you can run the following in Terminal:
cd /home/your_account/Downloads ;ls -l
Replace "your_account" with your short name; the "ls -l" will list the contents of the Downloads folder. Locate the Opera package file - it should be something like 'Opera_12.15.1748_amd64.deb'.
sudo dpkg -i Opera_12.15.1748_amd64.deb
and enter your password when prompted. This will run the Opera installer.
In order to have Opera updated automatically, you should still add the Opera repository to your list of software sources.
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
add a comment |
up vote
6
down vote
accepted
Synaptic is a graphical interface for Aptitude, the package manager in Ubuntu/Linux. It provides a listing of available software packages that are available to download and install from the repositories listed in your Software Sources. Synaptic is less intimidating to use than apt-get
in a Terminal interface for users not used to dealing with the command line.
Preceding commands in Terminal/command line with sudo
imparts a restricted root-user ability for performing commands that are not available for standard user accounts.
When in doubt about any basic command in Terminal, you can always man [base command]
to access the command manual pages. man sudo
will show the manual for sudo
, for example. There is also extensive documentation on the Ubuntu website for most commands.
As for installing Opera, it is not maintained in the standard Ubuntu repositories. You have two options:
1) add the Opera repository to your Software Sources as mentioned in the other answer and following the directions in the provided link; or
2) download and install Opera manually.
To install Opera manually, go to the Opera website (www.opera.com) and download it from there. Presuming that you have your downloads set to go to your Downloads Folder, you can run the following in Terminal:
cd /home/your_account/Downloads ;ls -l
Replace "your_account" with your short name; the "ls -l" will list the contents of the Downloads folder. Locate the Opera package file - it should be something like 'Opera_12.15.1748_amd64.deb'.
sudo dpkg -i Opera_12.15.1748_amd64.deb
and enter your password when prompted. This will run the Opera installer.
In order to have Opera updated automatically, you should still add the Opera repository to your list of software sources.
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
add a comment |
up vote
6
down vote
accepted
up vote
6
down vote
accepted
Synaptic is a graphical interface for Aptitude, the package manager in Ubuntu/Linux. It provides a listing of available software packages that are available to download and install from the repositories listed in your Software Sources. Synaptic is less intimidating to use than apt-get
in a Terminal interface for users not used to dealing with the command line.
Preceding commands in Terminal/command line with sudo
imparts a restricted root-user ability for performing commands that are not available for standard user accounts.
When in doubt about any basic command in Terminal, you can always man [base command]
to access the command manual pages. man sudo
will show the manual for sudo
, for example. There is also extensive documentation on the Ubuntu website for most commands.
As for installing Opera, it is not maintained in the standard Ubuntu repositories. You have two options:
1) add the Opera repository to your Software Sources as mentioned in the other answer and following the directions in the provided link; or
2) download and install Opera manually.
To install Opera manually, go to the Opera website (www.opera.com) and download it from there. Presuming that you have your downloads set to go to your Downloads Folder, you can run the following in Terminal:
cd /home/your_account/Downloads ;ls -l
Replace "your_account" with your short name; the "ls -l" will list the contents of the Downloads folder. Locate the Opera package file - it should be something like 'Opera_12.15.1748_amd64.deb'.
sudo dpkg -i Opera_12.15.1748_amd64.deb
and enter your password when prompted. This will run the Opera installer.
In order to have Opera updated automatically, you should still add the Opera repository to your list of software sources.
Synaptic is a graphical interface for Aptitude, the package manager in Ubuntu/Linux. It provides a listing of available software packages that are available to download and install from the repositories listed in your Software Sources. Synaptic is less intimidating to use than apt-get
in a Terminal interface for users not used to dealing with the command line.
Preceding commands in Terminal/command line with sudo
imparts a restricted root-user ability for performing commands that are not available for standard user accounts.
When in doubt about any basic command in Terminal, you can always man [base command]
to access the command manual pages. man sudo
will show the manual for sudo
, for example. There is also extensive documentation on the Ubuntu website for most commands.
As for installing Opera, it is not maintained in the standard Ubuntu repositories. You have two options:
1) add the Opera repository to your Software Sources as mentioned in the other answer and following the directions in the provided link; or
2) download and install Opera manually.
To install Opera manually, go to the Opera website (www.opera.com) and download it from there. Presuming that you have your downloads set to go to your Downloads Folder, you can run the following in Terminal:
cd /home/your_account/Downloads ;ls -l
Replace "your_account" with your short name; the "ls -l" will list the contents of the Downloads folder. Locate the Opera package file - it should be something like 'Opera_12.15.1748_amd64.deb'.
sudo dpkg -i Opera_12.15.1748_amd64.deb
and enter your password when prompted. This will run the Opera installer.
In order to have Opera updated automatically, you should still add the Opera repository to your list of software sources.
answered May 5 '13 at 13:28
douggro
2,07631222
2,07631222
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
add a comment |
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
Thanks douggro. I downloaded it and double clicked on it like it was an .msi yesterday.. It blew up software center, update mgr, and synaptic. I will try your method.
– bruce
May 5 '13 at 14:22
add a comment |
up vote
16
down vote
How to install Opera on Ubuntu:
From the terminal, add a pointer to the opera stable sources:
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
Install the key:
sudo sh -c 'wget -O - http://deb.opera.com/archive.key | apt-key add -'
Update repo:
sudo apt-get update
Install Opera:
sudo apt-get install opera
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
1
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
3
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
add a comment |
up vote
16
down vote
How to install Opera on Ubuntu:
From the terminal, add a pointer to the opera stable sources:
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
Install the key:
sudo sh -c 'wget -O - http://deb.opera.com/archive.key | apt-key add -'
Update repo:
sudo apt-get update
Install Opera:
sudo apt-get install opera
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
1
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
3
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
add a comment |
up vote
16
down vote
up vote
16
down vote
How to install Opera on Ubuntu:
From the terminal, add a pointer to the opera stable sources:
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
Install the key:
sudo sh -c 'wget -O - http://deb.opera.com/archive.key | apt-key add -'
Update repo:
sudo apt-get update
Install Opera:
sudo apt-get install opera
How to install Opera on Ubuntu:
From the terminal, add a pointer to the opera stable sources:
sudo sh -c 'echo "deb http://deb.opera.com/opera/ stable non-free" >> /etc/apt/sources.list.d/opera.list'
Install the key:
sudo sh -c 'wget -O - http://deb.opera.com/archive.key | apt-key add -'
Update repo:
sudo apt-get update
Install Opera:
sudo apt-get install opera
answered Jun 2 '14 at 2:48
Eric Leschinski
1,39111319
1,39111319
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
1
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
3
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
add a comment |
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
1
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
3
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
This works in ubuntu 14.04.01 / 14.10 as well.
– davidkonrad
Nov 6 '14 at 12:37
1
1
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
no need to do this anymore, the deb you download from opera.com prompts you to install an apt source for you.
– Gus E
Apr 21 '16 at 18:21
3
3
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Works also on Ubuntu 16.04, but "apt-get install opera" installs old version 12.x. To install a current version use "apt-get install opera-stable".
– user1364368
Sep 25 '16 at 11:08
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
Use opera.com/computer/linux for latest version
– Jithin Pavithran
Nov 4 at 12:27
add a comment |
up vote
4
down vote
By the time this question was answered, things have evolved.
By now, you can simply go to Download Opera browser, then click the button above Opera for Windows, Mac or Linux and the website will detect your operating system and processor architecture (32 or 64 bits) using device fingerprinting and prompt you a .deb
package to download and install by a simple click using the Ubuntu Software Center.
Update (09/12/2017):
I just tested this again on 2 different virtual machines (Ubuntu 16.04 and 17.04 LTS), and the procedure worked as described above.
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions fordpkg
in douggro's answer proved successful in installing it.
– Sam Onela
Nov 22 '17 at 17:41
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
add a comment |
up vote
4
down vote
By the time this question was answered, things have evolved.
By now, you can simply go to Download Opera browser, then click the button above Opera for Windows, Mac or Linux and the website will detect your operating system and processor architecture (32 or 64 bits) using device fingerprinting and prompt you a .deb
package to download and install by a simple click using the Ubuntu Software Center.
Update (09/12/2017):
I just tested this again on 2 different virtual machines (Ubuntu 16.04 and 17.04 LTS), and the procedure worked as described above.
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions fordpkg
in douggro's answer proved successful in installing it.
– Sam Onela
Nov 22 '17 at 17:41
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
add a comment |
up vote
4
down vote
up vote
4
down vote
By the time this question was answered, things have evolved.
By now, you can simply go to Download Opera browser, then click the button above Opera for Windows, Mac or Linux and the website will detect your operating system and processor architecture (32 or 64 bits) using device fingerprinting and prompt you a .deb
package to download and install by a simple click using the Ubuntu Software Center.
Update (09/12/2017):
I just tested this again on 2 different virtual machines (Ubuntu 16.04 and 17.04 LTS), and the procedure worked as described above.
By the time this question was answered, things have evolved.
By now, you can simply go to Download Opera browser, then click the button above Opera for Windows, Mac or Linux and the website will detect your operating system and processor architecture (32 or 64 bits) using device fingerprinting and prompt you a .deb
package to download and install by a simple click using the Ubuntu Software Center.
Update (09/12/2017):
I just tested this again on 2 different virtual machines (Ubuntu 16.04 and 17.04 LTS), and the procedure worked as described above.
edited Dec 9 '17 at 18:10
answered May 3 '16 at 6:49
Billal Begueradj
54041029
54041029
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions fordpkg
in douggro's answer proved successful in installing it.
– Sam Onela
Nov 22 '17 at 17:41
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
add a comment |
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions fordpkg
in douggro's answer proved successful in installing it.
– Sam Onela
Nov 22 '17 at 17:41
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions for
dpkg
in douggro's answer proved successful in installing it.– Sam Onela
Nov 22 '17 at 17:41
This is true, though after it downloaded the package (in both FF and Chrome) the installer would do nothing after I clicked the Install button. The command line instructions for
dpkg
in douggro's answer proved successful in installing it.– Sam Onela
Nov 22 '17 at 17:41
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
Does not work for me in Ubuntu 16.04. The installer downloads, and runs, with a brief panel offering an "Install" button. Clicking the button does nothing, even after waiting several minutes.
– Basil Bourque
Jul 29 at 5:17
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
I just re-tested that on an Ubuntu 16.04 VM and it works as described. I can not figure out what is your issue, it is better to ask a new question and take screenshots of what you got.@BasilBourque
– Billal Begueradj
Jul 29 at 9:30
add a comment |
up vote
1
down vote
Opera is available as a snap package in all currently supported versions of Ubuntu. To install Opera open the terminal and type:
sudo snap install opera
Opera's built-in ad blocker works OK and Flash videos play in Opera by default.
add a comment |
up vote
1
down vote
Opera is available as a snap package in all currently supported versions of Ubuntu. To install Opera open the terminal and type:
sudo snap install opera
Opera's built-in ad blocker works OK and Flash videos play in Opera by default.
add a comment |
up vote
1
down vote
up vote
1
down vote
Opera is available as a snap package in all currently supported versions of Ubuntu. To install Opera open the terminal and type:
sudo snap install opera
Opera's built-in ad blocker works OK and Flash videos play in Opera by default.
Opera is available as a snap package in all currently supported versions of Ubuntu. To install Opera open the terminal and type:
sudo snap install opera
Opera's built-in ad blocker works OK and Flash videos play in Opera by default.
edited Aug 18 at 5:29
answered May 5 '13 at 12:40
karel
55.9k11124142
55.9k11124142
add a comment |
add a comment |
protected by Community♦ Jan 17 at 15:07
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
1
You have asked a lot of questions here. In future can you limit your questions to one topic for each question. It makes it easier for us to answer (and more questions means more chances to earn reputation. Also questions are easier to read if you use correct capitalisation and puctuation.
– Warren Hill
May 5 '13 at 12:55
To pick up on some of the questions Opera is being dealt with as answers but Ubuntu Commands, sudo, synaptic. If you these sites do not cover what you need to know ask a separate question about each.
– Warren Hill
May 5 '13 at 13:00