Abrir juego desde Linux Debian

Iniciado por UHntery, 24 Diciembre 2015, 01:42 AM

0 Miembros y 1 Visitante están viendo este tema.

UHntery

Hola amigos, tengo un problema, recientemente tuve que poner linux en mi pc y no sé muy bien como utilizarlo. EL caso es que descargue un juego (Dont Starve) (www.mediafire.com/download/500xtjlgoinAhxwv/dontstarve+for+linux+pc's+from+team+craken.zip) y no se como abrir el ejecutable que está dentro de bin.

SI alguien me podría dar una mano lo agradecería, gracias.

iUDEX

Link caído.
Si el archivo que intentas ejecutar es un EXE (ejecutable de Windows) puedes usar Wine y/o PlayOnLinux.

Debian/Ubuntu:

sudo apt-get wine playonlinux

Fedora:

sudo dnf install wine playonlinux

Arch:

su pacman -S wine playonlinux
Namasté, criatura.

UHntery

ME salta este error:

sudo apt-get wine playonlinux
>>> /etc/sudoers: syntax error near line 1 <<<
>>> /etc/sudoers: syntax error near line 1 <<<
>>> /etc/sudoers: syntax error near line 2 <<<
>>> /etc/sudoers: syntax error near line 3 <<<
sudo: parse error in /etc/sudoers near line 1
sudo: no valid sudoers sources found, quitting
sudo: unable to initialize policy plugin

MinusFour

Cita de: UHntery en  8 Febrero 2016, 17:59 PM
ME salta este error:

sudo apt-get wine playonlinux
>>> /etc/sudoers: syntax error near line 1 <<<
>>> /etc/sudoers: syntax error near line 1 <<<
>>> /etc/sudoers: syntax error near line 2 <<<
>>> /etc/sudoers: syntax error near line 3 <<<
sudo: parse error in /etc/sudoers near line 1
sudo: no valid sudoers sources found, quitting
sudo: unable to initialize policy plugin

¿Modificaste /etc/sudoers?

iUDEX

Al parecer sí...

Para reparar el archivo corrupto, desde la terminal:

sudo su

nano visudo

Pega esta plantilla:

Código (ini) [Seleccionar]
# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#
# Host alias specification

# User alias specification

# Cmnd alias specification

# Defaults

Defaults !lecture,tty_tickets,!fqdn

# User privilege specification
root ALL=(ALL) ALL

# Members of the admin group may gain root privileges
%admin ALL=(ALL) ALL


...con nombre /etc/sudoers (sobreescribirlo).
Namasté, criatura.