How do I get the latest version of winetricks on Ubuntu?Install the latest version of the Adobe Reader in...

What are the advantages of simplicial model categories over non-simplicial ones?

Calculate sum of polynomial roots

Can I still be respawned if I die by falling off the map?

Store Credit Card Information in Password Manager?

Can a college of swords bard use blade flourish on an OA from dissonant whispers?

Multiplicative persistence

Quoting Keynes in a lecture

Fear of getting stuck on one programming language / technology that is not used in my country

Does an advisor owe his/her student anything? Will an advisor keep a PhD student only out of pity?

The IT department bottlenecks progress, how should I handle this?

Why would a new[] expression ever invoke a destructor?

Why does the Sun have different day lengths, but not the gas giants?

What is the evidence for the "tyranny of the majority problem" in a direct democracy context?

On a tidally locked planet, would time be quantized?

Did arcade monitors have same pixel aspect ratio as TV sets?

What exact color does ozone gas have?

Has any country ever had 2 former presidents in jail simultaneously?

Why should universal income be universal?

How do I delete all blank lines in a buffer?

Do the primes contain an infinite almost arithmetic progression?

How do you make your own symbol when Detexify fails?

putting logo on same line but after title, latex

Are Captain Marvel's powers affected by Thanos' actions in Infinity War

Why is short-wave infrared portion of electromagnetic spectrum so sensitive to fire?



How do I get the latest version of winetricks on Ubuntu?


Install the latest version of the Adobe Reader in Ubuntu or wineInstalling IE8 in wine - error rename/sha1sum mismatch winetest.catHow to install Wine in Ubuntu 15.10Winetricks: Can't locate and install d3dcompiler_43.dll?How do I install wine in Ubuntu?Running Malwarebytes under Wine 1.2.2How can I install vcrun2008 using Winetricks?How do I reset/fix the Winetricks GUI?Solve issues with Wine and x3daudio1_7.dll?Get latest Thunderbird version (38.0.1 for 15.04 32bit)How to install the latest version of ClamTk?How to install Wine in Ubuntu 15.10Can't install dotnet45 with winetricks on Ubuntu 14.04Installing Winetricks on Ubuntu LTS 18.04 for SteamHow to integrate MathType to Microsoft Office 2007 using Wine, winetricks or PlayOnLinux?













16















I have installed Wine and I am quite happy with my current version but winetricks has let me down a few times with various error messages.



How do I update winetricks to get the very latest version on Ubuntu?










share|improve this question





























    16















    I have installed Wine and I am quite happy with my current version but winetricks has let me down a few times with various error messages.



    How do I update winetricks to get the very latest version on Ubuntu?










    share|improve this question



























      16












      16








      16


      6






      I have installed Wine and I am quite happy with my current version but winetricks has let me down a few times with various error messages.



      How do I update winetricks to get the very latest version on Ubuntu?










      share|improve this question
















      I have installed Wine and I am quite happy with my current version but winetricks has let me down a few times with various error messages.



      How do I update winetricks to get the very latest version on Ubuntu?







      command-line software-installation updates wine winetricks






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 9 '16 at 19:19







      andrew.46

















      asked Apr 8 '16 at 4:24









      andrew.46andrew.46

      22.2k1470150




      22.2k1470150






















          1 Answer
          1






          active

          oldest

          votes


















          22














          The version of winetricks that comes with the stock Ubuntu installation is often quite old, even the version available from a more modern PPA can lag a bit. It is a great idea and a very safe one to update winetricks manually, independent of your main Wine installation, this can be done in a few simple steps:



          1. Check for the latest version, remove the old version:



          First check to see what is the latest version available from upstream with this handy one-liner:



          curl --silent --show-error 
          https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr -
          | grep ^WINETRICKS_VERSION | cut -d '=' -f 2


          Then if this trumps your own installed version (to see your version run winetricks --version from a command line) remove your currently installed version:



          sudo apt-get remove winetricks


          2. Install the latest version:



          Then download and install the very latest version:



          wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
          chmod +x winetricks
          sudo mv -v winetricks /usr/local/bin


          As demonstrated on my own system the latest version can then be tested:



          andrew@ilium~$ winetricks --version
          20190310-next - sha256sum: 93ef93104e51331c29857e8c56430720aac185e0d99b21c6108344c27057d698
          andrew@ilium~$


          3. Add some extras & check for newer syntax:



          It may also be a good idea to ensure that you have a few required 'helper' applications for winetricks to run, although most of these should have already been installed with your copy of Wine:



          sudo apt-get install cabextract p7zip unrar unzip wget zenity


          Then check the correct usage, which could have changed from your older version:



          andrew@illium~$ winetricks -h
          Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
          Executes given verbs. Each verb installs an application or changes a setting.

          Options:
          --country=CC Set country code to CC and don't detect your IP address
          --force Don't check whether packages were already installed
          --gui Show gui diagnostics even when driven by commandline
          --isolate Install each app or game in its own bottle (WINEPREFIX)
          --self-update Update this application to the last version
          --update-rollback Rollback the last self update
          -k, --keep_isos Cache isos (allows later installation without disc)
          --no-clean Don't delete temp directories (useful during debugging)
          -q, --unattended Don't ask any questions, just install automatically
          -r, --ddrescue Retry hard when caching scratched discs
          --showbroken Even show verbs that are currently broken in wine
          -t --torify Run downloads under torify, if available
          --verify Run (automated) GUI tests for verbs, if available
          -v, --verbose Echo all commands as they are executed
          -h, --help Display this message and exit
          -V, --version Display version and exit

          Commands:
          list list categories
          list-all list all categories and their verbs
          apps list list verbs in category 'applications'
          benchmarks list list verbs in category 'benchmarks'
          dlls list list verbs in category 'dlls'
          games list list verbs in category 'games'
          settings list list verbs in category 'settings'
          list-cached list cached-and-ready-to-install verbs
          list-download list verbs which download automatically
          list-manual-download list verbs which download with some help from the user
          list-installed list already-installed verbs
          prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
          annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
          andrew@illium~$


          4. Safely reverse these steps:



          If for some reason you wish to return to your older repository version you can simply run the following:



          sudo rm /usr/local/bin/winetricks
          sudo apt-get install winetricks


          And all will be as it was.



          References:




          • WineHQ Wiki: winetricks






          share|improve this answer





















          • 3





            Use sudo mv -v winetricks /usr/bin instead?

            – Xiaodong Qi
            Jun 29 '16 at 22:09






          • 2





            Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

            – andrew.46
            Jun 29 '16 at 22:13






          • 1





            @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

            – andrew.46
            Jan 5 '17 at 22:08






          • 1





            a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

            – Frank Nocke
            Oct 6 '17 at 15:22






          • 2





            @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

            – andrew.46
            Oct 6 '17 at 22:27










          protected by andrew.46 Aug 22 '17 at 22:30



          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 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          22














          The version of winetricks that comes with the stock Ubuntu installation is often quite old, even the version available from a more modern PPA can lag a bit. It is a great idea and a very safe one to update winetricks manually, independent of your main Wine installation, this can be done in a few simple steps:



          1. Check for the latest version, remove the old version:



          First check to see what is the latest version available from upstream with this handy one-liner:



          curl --silent --show-error 
          https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr -
          | grep ^WINETRICKS_VERSION | cut -d '=' -f 2


          Then if this trumps your own installed version (to see your version run winetricks --version from a command line) remove your currently installed version:



          sudo apt-get remove winetricks


          2. Install the latest version:



          Then download and install the very latest version:



          wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
          chmod +x winetricks
          sudo mv -v winetricks /usr/local/bin


          As demonstrated on my own system the latest version can then be tested:



          andrew@ilium~$ winetricks --version
          20190310-next - sha256sum: 93ef93104e51331c29857e8c56430720aac185e0d99b21c6108344c27057d698
          andrew@ilium~$


          3. Add some extras & check for newer syntax:



          It may also be a good idea to ensure that you have a few required 'helper' applications for winetricks to run, although most of these should have already been installed with your copy of Wine:



          sudo apt-get install cabextract p7zip unrar unzip wget zenity


          Then check the correct usage, which could have changed from your older version:



          andrew@illium~$ winetricks -h
          Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
          Executes given verbs. Each verb installs an application or changes a setting.

          Options:
          --country=CC Set country code to CC and don't detect your IP address
          --force Don't check whether packages were already installed
          --gui Show gui diagnostics even when driven by commandline
          --isolate Install each app or game in its own bottle (WINEPREFIX)
          --self-update Update this application to the last version
          --update-rollback Rollback the last self update
          -k, --keep_isos Cache isos (allows later installation without disc)
          --no-clean Don't delete temp directories (useful during debugging)
          -q, --unattended Don't ask any questions, just install automatically
          -r, --ddrescue Retry hard when caching scratched discs
          --showbroken Even show verbs that are currently broken in wine
          -t --torify Run downloads under torify, if available
          --verify Run (automated) GUI tests for verbs, if available
          -v, --verbose Echo all commands as they are executed
          -h, --help Display this message and exit
          -V, --version Display version and exit

          Commands:
          list list categories
          list-all list all categories and their verbs
          apps list list verbs in category 'applications'
          benchmarks list list verbs in category 'benchmarks'
          dlls list list verbs in category 'dlls'
          games list list verbs in category 'games'
          settings list list verbs in category 'settings'
          list-cached list cached-and-ready-to-install verbs
          list-download list verbs which download automatically
          list-manual-download list verbs which download with some help from the user
          list-installed list already-installed verbs
          prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
          annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
          andrew@illium~$


          4. Safely reverse these steps:



          If for some reason you wish to return to your older repository version you can simply run the following:



          sudo rm /usr/local/bin/winetricks
          sudo apt-get install winetricks


          And all will be as it was.



          References:




          • WineHQ Wiki: winetricks






          share|improve this answer





















          • 3





            Use sudo mv -v winetricks /usr/bin instead?

            – Xiaodong Qi
            Jun 29 '16 at 22:09






          • 2





            Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

            – andrew.46
            Jun 29 '16 at 22:13






          • 1





            @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

            – andrew.46
            Jan 5 '17 at 22:08






          • 1





            a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

            – Frank Nocke
            Oct 6 '17 at 15:22






          • 2





            @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

            – andrew.46
            Oct 6 '17 at 22:27
















          22














          The version of winetricks that comes with the stock Ubuntu installation is often quite old, even the version available from a more modern PPA can lag a bit. It is a great idea and a very safe one to update winetricks manually, independent of your main Wine installation, this can be done in a few simple steps:



          1. Check for the latest version, remove the old version:



          First check to see what is the latest version available from upstream with this handy one-liner:



          curl --silent --show-error 
          https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr -
          | grep ^WINETRICKS_VERSION | cut -d '=' -f 2


          Then if this trumps your own installed version (to see your version run winetricks --version from a command line) remove your currently installed version:



          sudo apt-get remove winetricks


          2. Install the latest version:



          Then download and install the very latest version:



          wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
          chmod +x winetricks
          sudo mv -v winetricks /usr/local/bin


          As demonstrated on my own system the latest version can then be tested:



          andrew@ilium~$ winetricks --version
          20190310-next - sha256sum: 93ef93104e51331c29857e8c56430720aac185e0d99b21c6108344c27057d698
          andrew@ilium~$


          3. Add some extras & check for newer syntax:



          It may also be a good idea to ensure that you have a few required 'helper' applications for winetricks to run, although most of these should have already been installed with your copy of Wine:



          sudo apt-get install cabextract p7zip unrar unzip wget zenity


          Then check the correct usage, which could have changed from your older version:



          andrew@illium~$ winetricks -h
          Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
          Executes given verbs. Each verb installs an application or changes a setting.

          Options:
          --country=CC Set country code to CC and don't detect your IP address
          --force Don't check whether packages were already installed
          --gui Show gui diagnostics even when driven by commandline
          --isolate Install each app or game in its own bottle (WINEPREFIX)
          --self-update Update this application to the last version
          --update-rollback Rollback the last self update
          -k, --keep_isos Cache isos (allows later installation without disc)
          --no-clean Don't delete temp directories (useful during debugging)
          -q, --unattended Don't ask any questions, just install automatically
          -r, --ddrescue Retry hard when caching scratched discs
          --showbroken Even show verbs that are currently broken in wine
          -t --torify Run downloads under torify, if available
          --verify Run (automated) GUI tests for verbs, if available
          -v, --verbose Echo all commands as they are executed
          -h, --help Display this message and exit
          -V, --version Display version and exit

          Commands:
          list list categories
          list-all list all categories and their verbs
          apps list list verbs in category 'applications'
          benchmarks list list verbs in category 'benchmarks'
          dlls list list verbs in category 'dlls'
          games list list verbs in category 'games'
          settings list list verbs in category 'settings'
          list-cached list cached-and-ready-to-install verbs
          list-download list verbs which download automatically
          list-manual-download list verbs which download with some help from the user
          list-installed list already-installed verbs
          prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
          annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
          andrew@illium~$


          4. Safely reverse these steps:



          If for some reason you wish to return to your older repository version you can simply run the following:



          sudo rm /usr/local/bin/winetricks
          sudo apt-get install winetricks


          And all will be as it was.



          References:




          • WineHQ Wiki: winetricks






          share|improve this answer





















          • 3





            Use sudo mv -v winetricks /usr/bin instead?

            – Xiaodong Qi
            Jun 29 '16 at 22:09






          • 2





            Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

            – andrew.46
            Jun 29 '16 at 22:13






          • 1





            @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

            – andrew.46
            Jan 5 '17 at 22:08






          • 1





            a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

            – Frank Nocke
            Oct 6 '17 at 15:22






          • 2





            @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

            – andrew.46
            Oct 6 '17 at 22:27














          22












          22








          22







          The version of winetricks that comes with the stock Ubuntu installation is often quite old, even the version available from a more modern PPA can lag a bit. It is a great idea and a very safe one to update winetricks manually, independent of your main Wine installation, this can be done in a few simple steps:



          1. Check for the latest version, remove the old version:



          First check to see what is the latest version available from upstream with this handy one-liner:



          curl --silent --show-error 
          https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr -
          | grep ^WINETRICKS_VERSION | cut -d '=' -f 2


          Then if this trumps your own installed version (to see your version run winetricks --version from a command line) remove your currently installed version:



          sudo apt-get remove winetricks


          2. Install the latest version:



          Then download and install the very latest version:



          wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
          chmod +x winetricks
          sudo mv -v winetricks /usr/local/bin


          As demonstrated on my own system the latest version can then be tested:



          andrew@ilium~$ winetricks --version
          20190310-next - sha256sum: 93ef93104e51331c29857e8c56430720aac185e0d99b21c6108344c27057d698
          andrew@ilium~$


          3. Add some extras & check for newer syntax:



          It may also be a good idea to ensure that you have a few required 'helper' applications for winetricks to run, although most of these should have already been installed with your copy of Wine:



          sudo apt-get install cabextract p7zip unrar unzip wget zenity


          Then check the correct usage, which could have changed from your older version:



          andrew@illium~$ winetricks -h
          Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
          Executes given verbs. Each verb installs an application or changes a setting.

          Options:
          --country=CC Set country code to CC and don't detect your IP address
          --force Don't check whether packages were already installed
          --gui Show gui diagnostics even when driven by commandline
          --isolate Install each app or game in its own bottle (WINEPREFIX)
          --self-update Update this application to the last version
          --update-rollback Rollback the last self update
          -k, --keep_isos Cache isos (allows later installation without disc)
          --no-clean Don't delete temp directories (useful during debugging)
          -q, --unattended Don't ask any questions, just install automatically
          -r, --ddrescue Retry hard when caching scratched discs
          --showbroken Even show verbs that are currently broken in wine
          -t --torify Run downloads under torify, if available
          --verify Run (automated) GUI tests for verbs, if available
          -v, --verbose Echo all commands as they are executed
          -h, --help Display this message and exit
          -V, --version Display version and exit

          Commands:
          list list categories
          list-all list all categories and their verbs
          apps list list verbs in category 'applications'
          benchmarks list list verbs in category 'benchmarks'
          dlls list list verbs in category 'dlls'
          games list list verbs in category 'games'
          settings list list verbs in category 'settings'
          list-cached list cached-and-ready-to-install verbs
          list-download list verbs which download automatically
          list-manual-download list verbs which download with some help from the user
          list-installed list already-installed verbs
          prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
          annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
          andrew@illium~$


          4. Safely reverse these steps:



          If for some reason you wish to return to your older repository version you can simply run the following:



          sudo rm /usr/local/bin/winetricks
          sudo apt-get install winetricks


          And all will be as it was.



          References:




          • WineHQ Wiki: winetricks






          share|improve this answer















          The version of winetricks that comes with the stock Ubuntu installation is often quite old, even the version available from a more modern PPA can lag a bit. It is a great idea and a very safe one to update winetricks manually, independent of your main Wine installation, this can be done in a few simple steps:



          1. Check for the latest version, remove the old version:



          First check to see what is the latest version available from upstream with this handy one-liner:



          curl --silent --show-error 
          https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr -
          | grep ^WINETRICKS_VERSION | cut -d '=' -f 2


          Then if this trumps your own installed version (to see your version run winetricks --version from a command line) remove your currently installed version:



          sudo apt-get remove winetricks


          2. Install the latest version:



          Then download and install the very latest version:



          wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
          chmod +x winetricks
          sudo mv -v winetricks /usr/local/bin


          As demonstrated on my own system the latest version can then be tested:



          andrew@ilium~$ winetricks --version
          20190310-next - sha256sum: 93ef93104e51331c29857e8c56430720aac185e0d99b21c6108344c27057d698
          andrew@ilium~$


          3. Add some extras & check for newer syntax:



          It may also be a good idea to ensure that you have a few required 'helper' applications for winetricks to run, although most of these should have already been installed with your copy of Wine:



          sudo apt-get install cabextract p7zip unrar unzip wget zenity


          Then check the correct usage, which could have changed from your older version:



          andrew@illium~$ winetricks -h
          Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
          Executes given verbs. Each verb installs an application or changes a setting.

          Options:
          --country=CC Set country code to CC and don't detect your IP address
          --force Don't check whether packages were already installed
          --gui Show gui diagnostics even when driven by commandline
          --isolate Install each app or game in its own bottle (WINEPREFIX)
          --self-update Update this application to the last version
          --update-rollback Rollback the last self update
          -k, --keep_isos Cache isos (allows later installation without disc)
          --no-clean Don't delete temp directories (useful during debugging)
          -q, --unattended Don't ask any questions, just install automatically
          -r, --ddrescue Retry hard when caching scratched discs
          --showbroken Even show verbs that are currently broken in wine
          -t --torify Run downloads under torify, if available
          --verify Run (automated) GUI tests for verbs, if available
          -v, --verbose Echo all commands as they are executed
          -h, --help Display this message and exit
          -V, --version Display version and exit

          Commands:
          list list categories
          list-all list all categories and their verbs
          apps list list verbs in category 'applications'
          benchmarks list list verbs in category 'benchmarks'
          dlls list list verbs in category 'dlls'
          games list list verbs in category 'games'
          settings list list verbs in category 'settings'
          list-cached list cached-and-ready-to-install verbs
          list-download list verbs which download automatically
          list-manual-download list verbs which download with some help from the user
          list-installed list already-installed verbs
          prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
          annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
          andrew@illium~$


          4. Safely reverse these steps:



          If for some reason you wish to return to your older repository version you can simply run the following:



          sudo rm /usr/local/bin/winetricks
          sudo apt-get install winetricks


          And all will be as it was.



          References:




          • WineHQ Wiki: winetricks







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 2 mins ago

























          answered Apr 8 '16 at 4:24









          andrew.46andrew.46

          22.2k1470150




          22.2k1470150








          • 3





            Use sudo mv -v winetricks /usr/bin instead?

            – Xiaodong Qi
            Jun 29 '16 at 22:09






          • 2





            Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

            – andrew.46
            Jun 29 '16 at 22:13






          • 1





            @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

            – andrew.46
            Jan 5 '17 at 22:08






          • 1





            a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

            – Frank Nocke
            Oct 6 '17 at 15:22






          • 2





            @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

            – andrew.46
            Oct 6 '17 at 22:27














          • 3





            Use sudo mv -v winetricks /usr/bin instead?

            – Xiaodong Qi
            Jun 29 '16 at 22:09






          • 2





            Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

            – andrew.46
            Jun 29 '16 at 22:13






          • 1





            @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

            – andrew.46
            Jan 5 '17 at 22:08






          • 1





            a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

            – Frank Nocke
            Oct 6 '17 at 15:22






          • 2





            @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

            – andrew.46
            Oct 6 '17 at 22:27








          3




          3





          Use sudo mv -v winetricks /usr/bin instead?

          – Xiaodong Qi
          Jun 29 '16 at 22:09





          Use sudo mv -v winetricks /usr/bin instead?

          – Xiaodong Qi
          Jun 29 '16 at 22:09




          2




          2





          Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

          – andrew.46
          Jun 29 '16 at 22:13





          Traditionally the place for user compiled or packaged files has been /usr/local/bin or even ~/bin but certainly /usr/bin will work.

          – andrew.46
          Jun 29 '16 at 22:13




          1




          1





          @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

          – andrew.46
          Jan 5 '17 at 22:08





          @jhasse Now I could be very wrong but I have always though that a defualt installation of Ubuntu included the creation of /usr/local/bin? Otherwise yes, I can see the problem....

          – andrew.46
          Jan 5 '17 at 22:08




          1




          1





          a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

          – Frank Nocke
          Oct 6 '17 at 15:22





          a 3 years newer winetricks indeed (August 2017 insteadt of August 2014) ! → this advice is still great and valid.

          – Frank Nocke
          Oct 6 '17 at 15:22




          2




          2





          @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

          – andrew.46
          Oct 6 '17 at 22:27





          @FrankNocke I come back every now and then to ensure it is still a valid answer for a modern Ubuntu :)

          – andrew.46
          Oct 6 '17 at 22:27





          protected by andrew.46 Aug 22 '17 at 22:30



          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?



          Popular posts from this blog

          List of shipwrecks in 1808...

          Is there a lightweight tool to crop images quickly?Cropping Images using Command Line Tools OnlyHow to crop...

          Unit packagekit.service is masked Announcing the arrival of Valued Associate #679: Cesar...