Dolphin, the GameCube and Wii emulator - Forums

Full Version: Installing Dolphin on Linux DebianOS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Thank you to everyone in advance for your time.

I recently came into possession of an alienware steam machine (link to specs: http://www.dell.com/us/p/alienware-steam...am-machine) and have been trying to get the dolphin emulator to work on the Debian OS. The problem is that this is the first time I have ever used Linux and I am beyond hopelessly lost. I looked online for tutorials but all I could find were ones that were 3 years old and don't seem to work with the current version. After my four hours of frustration I have managed to set the initial UNIX password in the terminal and fail with a multitude of command prompts I have no way of understanding. This video seemed to get me the farthest: https://www.youtube.com/watch?v=vuB8YFD4tr4 which used this command prompt:

sudo add-apt-repository ppa:glennric/dolphin-emu
sudo apt-get update
sudo apt-get install dolphin-emu

Which after a multitude of lines ended with a failure message like this:
Unable to locate package dolphin-emu

I hope someone can help give me some direction. Today was the first day I opened the desktop portion of the steam machine and I have nothing installed. I could really use someone to take me through the ropes as if I know nothing about Linux which I dont.
git clone https://github.com/dolphin-emu/dolphin.git
cd dolphin
mkdir build
cd build
cmake ..
make
sudo make install
dolphin-emu

And whenever somethink like xxx not found, try "sudo apt-get install xxx". Or "sudo apt-get install libxxx-dev"

You'll need at least:
sudo apt-get install build-essential cmake git libwxgtk3.0-dev
Here are the following packages you'll need to compile Dolphin on Ubuntu Linux

https://wiki.dolphin-emu.org/index.php?t...pendencies

Find your Ubuntu version, install the packages listed, then follow degasus' steps above.
(05-28-2016, 03:21 AM)degasus Wrote: [ -> ]You'll need at least:
sudo apt-get install build-essential cmake git libwxgtk3.0-dev

Reading package lists... Done
Building dependency tree      
Reading state information... Done
Package cmake is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'cmake' has no installation candidate
E: Unable to locate package libwxgtk3.0-dev
E: Couldn't find any package by regex 'libwxgtk3.0-dev'
desktop@steamos:~/build$

(05-28-2016, 03:21 AM)degasus Wrote: [ -> ]git clone https://github.com/dolphin-emu/dolphin.git
cd dolphin
mkdir build
cd build
cmake ..
make
sudo make install
dolphin-emu

desktop@steamos:~$  git clone https://github.com/dolphin-emu/dolphin.git
bash: git: command not found
desktop@steamos:~$ cd dolphin
bash: cd: dolphin: No such file or directory
desktop@steamos:~$ mkdir build
desktop@steamos:~$ cd build
desktop@steamos:~/build$ cmake ..
bash: cmake: command not found
desktop@steamos:~/build$ make
make: *** No targets specified and no makefile found.  Stop.
desktop@steamos:~/build$ sudo make install
[sudo] password for desktop:
make: *** No rule to make target 'install'.  Stop.


Sorry, if I knew more about what was actually going on I could give you more information.

(05-28-2016, 03:48 AM)Helios Wrote: [ -> ]Here are the following packages you'll need to compile Dolphin on Ubuntu Linux

https://wiki.dolphin-emu.org/index.php?t...pendencies

Find your Ubuntu version, install the packages listed, then follow degasus' steps above.

Are a different set of packages needed if my system uses Debian?
Just follow the instructions for 16.04.
(05-28-2016, 04:17 AM)leolam Wrote: [ -> ]Just follow the instructions for 16.04.

Reading package lists... Done
Building dependency tree
Reading state information... Done
Package cmake is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'cmake' has no installation candidate
E: Unable to locate package libenet-dev
E: Unable to locate package libminiupnpc-dev
E: Unable to locate package libsfml-dev
E: Unable to locate package libsoil-dev
E: Unable to locate package libwxbase3.0-dev
E: Couldn't find any package by regex 'libwxbase3.0-dev'
E: Unable to locate package libwxgtk3.0-dev
E: Couldn't find any package by regex 'libwxgtk3.0-dev'
E: Unable to locate package portaudio19-dev
E: Unable to locate package libmbedtls-dev


It doesn't seem like that worked. Package cmake seems to be a recurring issue
Sounds like your system is broken. The cmake package is in jessie, and not renamed or deprecated or anything.
Are you using SteamOS? Or just name your system that?

If so, you don't have access to ubuntu repositories (Or debian, I think)
(05-28-2016, 06:11 AM)Helios Wrote: [ -> ]Are you using SteamOS? Or just name your system that?

If so, you don't have access to ubuntu repositories (Or debian, I think)

Im trying to set this up on an Alienware Steam Machine which uses SteamOS on a Debian Linux system I believe.
Yeah. Then you don't have access to debian/ubuntu repositories and I don't know if you can add them in without breaking things. Sorry.
Pages: 1 2