Results 1 to 2 of 2

Thread: problemas instalando wine winetricks NOVATO

  1. #1
    Join Date
    Jul 2020
    Beans
    1

    problemas instalando wine winetricks NOVATO

    quiero seguir los pasos pero me salta este error en la terminal

    dpkg --add-architecture i386
    dpkg: error: unable to create new file '/var/lib/dpkg/arch-new': Permission denied
    y ademas
    sudo apt update
    Hit:1 http://dl.google.com/linux/chrome/deb stable InRelease
    Hit:2 http://ar.archive.ubuntu.com/ubuntu focal InRelease
    Hit:3 http://ar.archive.ubuntu.com/ubuntu focal-updates InRelease
    Hit:4 http://security.ubuntu.com/ubuntu focal-security InRelease
    Ign:5 http://ppa.launchpad.net/morphis/anbox-support/ubuntu focal InRelease
    Hit:6 http://ar.archive.ubuntu.com/ubuntu focal-backports InRelease
    Err:7 http://ppa.launchpad.net/morphis/anbox-support/ubuntu focal Release
    404 Not Found [IP: 91.189.95.83 80]
    Reading package lists... Done
    E: The repository 'http://ppa.launchpad.net/morphis/anbox-support/ubuntu focal Release' does not have a Release file.
    N: Updating from such a repository can't be done securely, and is therefore disabled by default.
    N: See apt-secure(8) manpage for repository creation and user configuration details.
    y desoues
    sudo apt install wine:i386
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    Package wine:i386 is a virtual package provided by:
    wine 5.0-3ubuntu1
    wine 5.0-3ubuntu1
    wine-development 5.5-3ubuntu1
    You should explicitly select one to install.

    E: Package 'wine:i386' has no installation candidate
    carlos@carlos-Lenovo-IdeaPad-S400:~/Desktop$ sudo apt wine 5.0-3ubuntu1
    E: Invalid operation wine
    carlos@carlos-Lenovo-IdeaPad-S400:~/Desktop$ sudo apt wine 5.0
    E: Invalid operation wine
    carlos@carlos-Lenovo-IdeaPad-S400:~/Desktop$

    despues instalo con exito el wine 5.0 pero al tratar de instalar winetricks me dice
    carlos@carlos-Lenovo-IdeaPad-S400:~/Desktop$ sudo apt winetricks
    [sudo] password for carlos:
    E: Invalid operation winetricks
    carlos@carlos-Lenovo-IdeaPad-S400:~/Desktop$ sudo apt winetricks
    E: Invalid operation winetricks
    carlos@carlos-Lenovo-IdeaPad-S400:~/Desktop$

  2. #2
    Join Date
    Aug 2017
    Location
    melbourne, au
    Beans
    Hidden!
    Distro
    Lubuntu Development Release

    Re: problemas instalando wine winetricks NOVATO

    A number of your errors are correct

    E: Invalid operation wine
    E: Invalid operation winetricks

    ie. `wine` and `winetricks` you would have meant as packages, but were attempted to be operated on as if operands.

    You possible meant to use
    Code:
    `sudo apt install wine`
    (ie. telling `apt` to "install" the package "wine").


    From `man apt` you get
    Code:
           apt [-h] [-o=config_string] [-c=config_file] [-t=target_release] [-a=architecture] {list | search | show | update | install pkg [{=pkg_version_number | /target_release}]...  |
               remove pkg...  | upgrade | full-upgrade | edit-sources | {-v | --version} | {-h | --help}}
    telling you need a command, ie. one of "list | search | show | install" which is followed by the package|pkg.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •