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

how to solve the not downloading error #63

Open
thunderthor96 opened this issue Dec 7, 2024 · 5 comments
Open

how to solve the not downloading error #63

thunderthor96 opened this issue Dec 7, 2024 · 5 comments

Comments

@thunderthor96
Copy link

читать (на английском языке для лучшего перевода всем)

i solved it, here is a list of how i did

download files to desktop folder

illustratorCC17.tgz here

https://drive.google.com/file/d/1Ayl4wx340qAiARsVy5z0B8dbuNf9DM5u/view?usp=drive_link

photoshopCC-V19.1.6-2018x64.tgz here

https://drive.google.com/file/d/1OwRUXsQUrOeK000IQSmCcV2enWQ8GYEo/view?usp=drive_link

replacement.tgz here

https://drive.google.com/file/d/1oiM7BA0w9lm0bpfQOQCwEfyZuOTRg9pt/view?usp=drive_link

go to your usename folder for example

mine is alan

in " alan"(the name of your user) you are gonna find the folder illustratorCClinux or photoshopCClinux, go in the folder needed depends of what are you installing, for example here we are installing photoshop

so we go to photoshopCClinux, however all programs (photoshop or adobeillustrator) they have the same folders, okay

go to photoshopCClinux

then go to scripts and then go to PhotoshopSetup.sh or

illustratorSetup.sh (depends if you are installig photoshop or illustrator)

ok open the sh file

find this line

"local filelink=" you will see something like an "https://whatever.io" it means you gonna replace that line with

with file:///home/alan/Desktop/replacement.tgz (this in photoshop)

and

with file:///home/alan/Desktop/photoshopCC-V19.1.6-2018x64.tgz

what you are doing here is, instead of downloading, you are telling the script to use the file you downloaded from above, which is now in your device, i recommend you put all the files "replacement.tgz, photoshopCC-V19.1.6-2018x64.tgz or illustratorCC17.tgz" in desktop folder on your linux so it will be easy, ok then replace with those lines always remember to triple check your file location (again i recomend you to download it to desktop)

here is an example of the lines you will find in both scripts and how it will look after replaced

function replacement() {
local filename="replacement.tgz"
local filemd5="6441a8e77c082897a99c2b7b588c9ac4"
local filelink="file:///home/alan/Desktop/replacement.tgz"
local filepath="$CACHE_PATH/$filename"

download_component $filepath $filemd5 $filelink $filename

mkdir "$RESOURCES_PATH/replacement"
show_message "extract replacement component..."
tar -xzf $filepath -C "$RESOURCES_PATH/replacement"

local replacefiles=("IconResources.idx" "PSIconsHighRes.dat" "PSIconsLowRes.dat")
local destpath="$WINE_PREFIX/drive_c/users/$USER/PhotoshopSE/Resources"

for f in "${replacefiles[@]}";do
    local sourcepath="$RESOURCES_PATH/replacement/$f"
    cp -f "$sourcepath" "$destpath" || error "cant copy replacement $f file..."
done

show_message "replace component compeleted..."
unset filename filemd5 filelink filepath

}

function install_photoshopSE() {
local filename="photoshopCC-V19.1.6-2018x64.tgz"
local filemd5="b63f6ed690343ee12b6195424f94c33f"
local filelink="file:///home/alan/Desktop/photoshopCC-V19.1.6-2018x64.tgz"
# local filelink="http://127.0.0.1:8080/photoshopCC-V19.1.6-2018x64.tgz"
local filepath="$CACHE_PATH/$filename"

i hope it can be of help to you  

fully working 7-12dec-24
@Khnaz35
Copy link

Khnaz35 commented Dec 12, 2024

Hi, i tried to download from your google drive shared link and it seems google is not allowing it can you replace your link
Thanks in advance.

image

@Khnaz35
Copy link

Khnaz35 commented Dec 12, 2024

читать (на английском языке для лучшего перевода всем)

i solved it, here is a list of how i did

download files to desktop folder

illustratorCC17.tgz here

https://drive.google.com/file/d/1Ayl4wx340qAiARsVy5z0B8dbuNf9DM5u/view?usp=drive_link

photoshopCC-V19.1.6-2018x64.tgz here

https://drive.google.com/file/d/1OwRUXsQUrOeK000IQSmCcV2enWQ8GYEo/view?usp=drive_link

replacement.tgz here

https://drive.google.com/file/d/1oiM7BA0w9lm0bpfQOQCwEfyZuOTRg9pt/view?usp=drive_link

go to your usename folder for example

mine is alan

in " alan"(the name of your user) you are gonna find the folder illustratorCClinux or photoshopCClinux, go in the folder needed depends of what are you installing, for example here we are installing photoshop

so we go to photoshopCClinux, however all programs (photoshop or adobeillustrator) they have the same folders, okay

go to photoshopCClinux

then go to scripts and then go to PhotoshopSetup.sh or

There are no .sh files in here.
image

@thetrung
Copy link

читать (на английском языке для лучшего перевода всем)
i solved it, here is a list of how i did
download files to desktop folder
illustratorCC17.tgz here
https://drive.google.com/file/d/1Ayl4wx340qAiARsVy5z0B8dbuNf9DM5u/view?usp=drive_link
photoshopCC-V19.1.6-2018x64.tgz here
https://drive.google.com/file/d/1OwRUXsQUrOeK000IQSmCcV2enWQ8GYEo/view?usp=drive_link
replacement.tgz here
https://drive.google.com/file/d/1oiM7BA0w9lm0bpfQOQCwEfyZuOTRg9pt/view?usp=drive_link
go to your usename folder for example
mine is alan
in " alan"(the name of your user) you are gonna find the folder illustratorCClinux or photoshopCClinux, go in the folder needed depends of what are you installing, for example here we are installing photoshop
so we go to photoshopCClinux, however all programs (photoshop or adobeillustrator) they have the same folders, okay
go to photoshopCClinux
then go to scripts and then go to PhotoshopSetup.sh or

There are no .sh files in here. image

Bro, for Photoshop, checkout my fork :
https://github.com/thetrung/photoshopCClinux

You just need to put replacement & photoshop tgz files into your ~/Downloads/photoshopCC/ then run my fork as usual.
Cheers.

@Khnaz35
Copy link

Khnaz35 commented Dec 17, 2024

@thetrung First of all thanks for replying bro, i did tried your repo while placing everything into folder i already have installed wine packages as you mentioned but your script is still not detecting them .

image

so can you guide what is going on?

@Khnaz35
Copy link

Khnaz35 commented Dec 18, 2024

@thetrung @thunderthor96
I was able to pass the initial stages but something seems to be broken underneath.
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants