Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javascriptdude/winscp_on_wine
How to install WinSCP on Wine in Linux, or other OS's that support Wine.
https://github.com/javascriptdude/winscp_on_wine
Last synced: 3 months ago
JSON representation
How to install WinSCP on Wine in Linux, or other OS's that support Wine.
- Host: GitHub
- URL: https://github.com/javascriptdude/winscp_on_wine
- Owner: JavaScriptDude
- License: mit
- Created: 2021-02-02T19:01:40.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-16T20:52:35.000Z (12 months ago)
- Last Synced: 2024-04-28T01:08:43.830Z (9 months ago)
- Language: Shell
- Size: 31.3 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WinSCP_On_Wine
How to install WinSCP on Wine in Linux, or other OS's that support Wine.#### 1) Download files to a local folder like /tmp/winscp_install:
* winscp.sh
* WinSCP.desktop
* WinSCP-Logo.png
* Note: This folder will need to r
* `cd` to this directory in a terminal window for the balance of steps#### 2) Installation of WinSCP:
```
export WINEARCH=win64; export WINEPREFIX=$HOME/.wine_winscp
mkdir -p $WINEPREFIX/drive_c/apps/winscp
```#### 3) Initialize WINEPREFIX `% winecfg`
Ensure Windows version is set to windows 7
(thats all)#### 4) Deploy WinSCP files
* Download `Portable executables` version of WinSCP from https://winscp.net
* CLI Trick to open in default file manager `% xdg-open $WINEPREFIX/drive_c/apps/winscp`
* Manually copy over files over to $WINEPREFIX/drive_c/apps/winscp#### 5) *nix executable deployment:
```
sudo cp ./winscp.sh /usr/local/bin/winscp
sudo chmod a+x /usr/local/bin/winscp
```
To verify, try running the following from commandline: `winscp`
* This should launch winscp GUI#### 6) Desktop Installation:
```
mkdir -p ~/.local/share/icons && cp ./WinSCP-Logo.png ${HOME}/.local/share/icons/
desktop-file-install --dir=${HOME}/.local/share/applications ./WinSCP.desktop
```That should be it, If you don't see the WinSCP key when you hit the Super key, toggle the Super key another time and that should do it