Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md: Add Quick install section #1194

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,32 @@ The ```winetricks``` package should be used if it is available and up to date. T
* Slackbuilds (Slackware): https://slackbuilds.org/apps/winetricks/
* Ubuntu: https://packages.ubuntu.com/search?keywords=winetricks

Note: packaged Debian / Ubuntu winetricks versions are typically outdated, so a manual installation is recommended.

## Manual Install

If the package is unavailable, outdated, or the latest version is desired, a manual installation of winetricks can be done.
It is _highly_ recommended to uninstall any previously installed version of winetricks first.

**_If you don't uninstall a previously installed, packaged version of winetricks... Well then you get to pick up the pieces!_**
### Quick install for one time usage

E.g. for Debian / Ubuntu:
To quickly grab current winetricks open a terminal and type
```
wget -O winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
```
sudo apt-get purge winetricks

You can then run it from the terminal with
```
sh winetricks
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will not advise it like this. I would first use chmod and just execute script as intended..

Suggested change
sh winetricks
# Make executable
chmod +x ./winetricks
# Run
./winetricks

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See new comment below. But thanks @melroy89

```

### Installing The Latest Stable Release

It is _highly_ recommended to uninstall any previously installed version of winetricks first.

E.g. for Debian / Ubuntu:
```
sudo apt purge winetricks
```

Download the latest release from [Github](https://github.com/Winetricks/winetricks/releases/latest).

Extract the archive and `cd` into the extracted folder.
Expand Down
Loading