I'm trying to follow the Linux installation instructions on my Ubuntu 20.04 VM. All good until I tried to run the program - I got:
/home/myuser/.wg++/run.sh: No such file or directory
There is a run.net.sh file in that directory, but if I try to run that I get:
DotNet required, but it's not installed
Any ideas??
If you use new version it needs dotnet and you run wg++ thru run.net.sh
The old version use mono and use run.sh
Please check documentation here: http://webgrabplus.com/documentation/installation/linux
When I try to install dotnet I get this error:
~/.wg++$ sudo apt-get install -y dotnet-runtime-7.0
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package dotnet-runtime-7.0
E: Couldn't find any package by glob 'dotnet-runtime-7.0'
E: Couldn't find any package by regex 'dotnet-runtime-7.0'
I think you need 8 no, see https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-insta...
Sorry just noted you have 20.04 so you need wget
https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-insta...
Thanks. So as far as I can tell I now have dotnt 8.0 installed:
$ dotnet --version
8.0.403
But I'm still having no luck:
~/.wg++/run.net.sh
You must install or update .NET to run this application.
App: /home/myuser/.wg++/bin.net/WebGrab+Plus.dll
Architecture: x64
Framework: 'Microsoft.NETCore.App', version '7.0.0' (x64)
.NET location: /snap/dotnet-sdk/252/
The following frameworks were found:
8.0.10 at [/snap/dotnet-sdk/252/shared/Microsoft.NETCore.App]
Learn more:
https://aka.ms/dotnet/app-launch-failed
To install missing framework, download:
https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&fra...
I went through the same process of installing dotnet 7.0, but it didn't seem to help
???
OK I removed dotnet completely and reinstalled from v7. For some reason dotnet --version reports v9 (??), but I am now able to run WG++ - thanks for your help!
you'r welcome !