README.md changed
This commit is contained in:
parent
2c280ec8ee
commit
8cd935f469
34
README.md
34
README.md
|
@ -15,15 +15,18 @@ and sets some necessary component up for best performance
|
||||||
* detects various graphic cards like (`intel`, `Nvidia`...)
|
* detects various graphic cards like (`intel`, `Nvidia`...)
|
||||||
* saves the downloaded files in your cache directory
|
* saves the downloaded files in your cache directory
|
||||||
* It's free and you will not need any license key
|
* It's free and you will not need any license key
|
||||||
|
* works on any Linux distributions
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
1- use 64bit edition of your distro
|
1- use 64bit edition of your distro
|
||||||
|
|
||||||
2-make sure below packages are already installed on your Linux distro
|
2-make sure below packages are already installed on your Linux distro
|
||||||
* `wine`
|
* `wine`
|
||||||
|
* `winetricks`
|
||||||
* `aria2c`
|
* `aria2c`
|
||||||
* `md5sum`
|
* `md5sum`
|
||||||
|
|
||||||
|
|
||||||
if they are not already installed you can install them using your package manager for example in arch Linux
|
if they are not already installed you can install them using your package manager for example in arch Linux
|
||||||
```bash
|
```bash
|
||||||
sudo pacman -Syy wine aria2
|
sudo pacman -Syy wine aria2
|
||||||
|
@ -34,19 +37,46 @@ sudo pacman -Syy wine aria2
|
||||||
4- make sure you have internet connection and about 1.5 Gib traffic for downloading photoshop and its components at first time
|
4- make sure you have internet connection and about 1.5 Gib traffic for downloading photoshop and its components at first time
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
first of all you need clone the repository with this command:
|
for components installation you have two options, using winetricks or using custom way.
|
||||||
|
there are two installation scripts
|
||||||
|
|
||||||
|
* `PhotoshopSetup.sh`
|
||||||
|
* `PhotoshopSetupCustom.sh`
|
||||||
|
|
||||||
|
installer scripts use a virtual drive of wine and makes a new `winprefix` for photoshop
|
||||||
|
|
||||||
|
first of all you need to clone the repository with this command:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/Gictorbit/photoshopCClinux.git
|
git clone https://github.com/Gictorbit/photoshopCClinux.git
|
||||||
cd photoshopCClinux
|
cd photoshopCClinux
|
||||||
```
|
```
|
||||||
then for installing photoshop just run the bash script with below command it downloads and installs photoshop include its component and configures wine automatically
|
### component installation using winetricks (Recommended)
|
||||||
|
for installing photoshop just run the bash script with below command it downloads and installs photoshop include its component using winetricks and configures wine automatically
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
chmod +x PhotoshopSetup.sh
|
chmod +x PhotoshopSetup.sh
|
||||||
./PhotoshopSetup.sh
|
./PhotoshopSetup.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### component installation using custom script
|
||||||
|
for installing photoshop just run the bash script with below command it downloads and installs photoshop include its component and configures wine automatically
|
||||||
|
|
||||||
|
```bash
|
||||||
|
chmod +x PhotoshopSetupCustom.sh
|
||||||
|
./PhotoshopSetupCustom.sh
|
||||||
|
```
|
||||||
|
|
||||||
during installation please pay attention to script messages
|
during installation please pay attention to script messages
|
||||||
|
|
||||||
|
> **NOTE :** make sure OS version in wine is on windows 7
|
||||||
|
|
||||||
|
## wineprefix Configuration
|
||||||
|
if you need to configure wineprefix of photoshop you can use `winecfg.sh` script just run below command
|
||||||
|
```bash
|
||||||
|
chmod +x winecfg.sh
|
||||||
|
./winecfg.sh
|
||||||
|
```
|
||||||
|
|
||||||
## Uninstall
|
## Uninstall
|
||||||
for uninstall photoshop you can use uninstaller script with below commands
|
for uninstall photoshop you can use uninstaller script with below commands
|
||||||
```bash
|
```bash
|
||||||
|
|
Loading…
Reference in New Issue