WinSCP Beginner Cheat Sheet
πŸ“‹

What is WinSCP?

The essential tool for managing files on your Linux VPS from Windows

πŸ’»
Left Panel β€” Your PC
Your local Windows files
C:\Users\albert\Documents\
⬆ Upload Download ⬇
πŸ–₯️
Right Panel β€” Your VPS
Your server files
177.7.45.212 β€” /root/
πŸ’‘
Key Concept
WinSCP works exactly like Windows Explorer β€” but the right panel is your remote server. Drag files between the two panels to upload or download. Everything else (delete, rename, create folder) works the same as on your PC.
πŸ”Œ How to Connect
Protocol: SFTP
Host: 177.7.45.212
Username: root
Password: (from Hostinger hPanel)
Port: 22
πŸ‘οΈ Show Hidden Files
Options β†’ Preferences β†’ Panels β†’ check Show hidden files
OR press Ctrl+Alt+H
Essential for seeing .n8n, .ssh, .cache folders
πŸ“‚ Default Start Folder
Edit your saved session β†’ Remote directory β†’ type /root
WinSCP will always open there when you connect.
⚠️ No Recycle Bin!
Deleting files on Linux is permanent and instant. There is no undo, no recycle bin. Always keep a PC backup before deleting anything important from the VPS.
πŸ“

Linux vs Windows β€” Folder Structure

Every Linux path and its Windows equivalent explained

# Linux folder tree β€” like your Windows C:\ drive
/β†’The entire server (like C:\)
β”œβ”€β”€ home/β†’All regular user folders (like C:\Users\)
└── ubuntu/β†’The ubuntu user’s home (like C:\Users\ubuntu\)
β”œβ”€β”€ root/β†’Admin home β€” YOUR workspace (like C:\Administrator\)
β”œβ”€β”€ .n8n/β†’Hidden folder β€” n8n config & data (dot = hidden)
β”œβ”€β”€ .ssh/β†’Hidden folder β€” SSH login keys (do not touch)
└── n8n-content/β†’The folder YOU created
β”œβ”€β”€ etc/β†’System config files (like C:\Windows\System32\)
β”œβ”€β”€ var/β†’Logs and app data (like C:\ProgramData\)
└── usr/β†’Installed programs (like C:\Program Files\)
Linux Path (VPS) Windows Equivalent What It Is
/C:\The very top of the entire server β€” the whole hard drive
/home/C:\Users\Where all regular user home folders live
/home/ubuntu/C:\Users\ubuntu\Home folder of the ubuntu (regular) user
/root/C:\Administrator\Home folder of the root (admin) user β€” this is where you work
/root/.n8n/C:\Administrator\.n8n\Hidden n8n config folder β€” dot at start = hidden in Linux
/root/.ssh/C:\Administrator\.ssh\Hidden SSH keys for secure login β€” do not modify
/root/n8n-content/C:\Administrator\n8n-content\The custom folder you created during this project
/etc/C:\Windows\System32\System configuration files β€” caution: modifying can break the server
/var/log/C:\Windows\Logs\System and application log files β€” useful for troubleshooting
/usr/local/bin/C:\Program Files\Where globally installed programs live (like n8n itself)
/tmp/C:\Temp\Temporary files β€” automatically cleared when server restarts
πŸ’‘
Hidden Files
In Linux, any file or folder whose name starts with a dot ( . ) is hidden β€” just like “Hidden” files in Windows. Examples: .n8n, .ssh, .bashrc. Enable Show hidden files in WinSCP to see them (Ctrl+Alt+H).
⚠️
Important
/root/ is NOT the same as / (the server root). This confuses almost every Windows user at first. The / is the very top of everything. /root/ is just the admin user’s home folder β€” one level below.
⌨️

Keyboard Shortcuts

All WinSCP shortcuts with their Windows Explorer equivalents

ShortcutActionPC EquivalentWhat It Does
F5 Refresh F5 in Explorer Refreshes the file panel β€” always press after uploading, deleting, or making changes
Delete Delete Delete key PERMANENT β€” deletes the selected file or folder instantly. No recycle bin.
F2 or Enter Rename F2 in Explorer Renames the selected file or folder
F7 New Folder Right-click β†’ New Folder Creates a new folder at the current location
F4 Edit File Open with Notepad Opens the selected file in a text editor directly on the VPS
F6 Move Cut + Paste Moves a file from one location to another
Backspace Go Up Backspace in Explorer Goes up one folder level β€” same as clicking the parent folder
Ctrl+A Select All Ctrl+A Selects all files in the current panel
Ctrl+Alt+H Hidden Files Show hidden items checkbox Toggles visibility of hidden files and folders (those starting with a dot)
Ctrl+R Refresh Right F5 in Explorer Refreshes only the right (VPS) panel
Drag L→R Upload Copy to network drive Drag from LEFT panel (your PC) to RIGHT panel (VPS) to upload a file
Drag R→L Download Copy from network drive Drag from RIGHT panel (VPS) to LEFT panel (your PC) to download a file
Ctrl+S Save Edit Ctrl+S in Notepad Saves changes when editing a file with the F4 editor
πŸ’‘
Pro Tip
The most important shortcut to remember is F5 β€” Refresh. After every upload, delete, or folder creation, press F5 so the panel updates and shows you the current state of the server.
πŸ–±οΈ

Right-Click Menu

Every option explained with its Windows equivalent

πŸ“Œ
Note
Right-click works on the bottom file list panel, not on the folder tree on the left side. If right-clicking does nothing useful, click on a file in the bottom panel first, then right-click it.
Right-Click OptionPC EquivalentWhat It Does
OpenDouble-clickOpens a folder or navigates into it
EditOpen with NotepadOpens the file in a text editor so you can read or modify it directly on the VPS
CopyCtrl+CCopies the file β€” paste it to another location in the right panel
MoveCtrl+X then Ctrl+VMoves the file to a new location on the VPS
DeleteDelete keyPERMANENT β€” no recycle bin on Linux. Gone forever. Always keep a backup first.
RenameF2 / slow double-clickRenames the file or folder
PropertiesRight-click β†’ PropertiesShows file size, permissions (rwx), owner, and last modified date
DownloadCopy from network driveDownloads the file from VPS to your PC (right panel β†’ left panel)
UploadCopy to network driveUploads a file from your PC to the VPS (left panel β†’ right panel)
Create DirectoryNew β†’ FolderCreates a new empty folder at the current location
DuplicateCopy + Paste in same folderCreates a copy of the file in the same folder with a new name
Open TerminalOpen Command Prompt hereOpens a PowerShell/SSH terminal already pointed at the current folder
πŸ”

Linux File Permissions

What the letters mean in WinSCP Properties

When you right-click a file β†’ Properties in WinSCP, you see letters in the Rights column like rwxr-xr--. Here’s what they mean:

# Reading a permissions string: rwxr-xr–
rwx r-x r– ← Owner permissions | Group permissions | Everyone else
r = read    w = write    x = execute    – = no permission
LetterStands ForWindows EquivalentMeaning
r Read Read permission Can open and read the file, or list what’s inside a folder
w Write Write permission Can edit, modify, or delete the file
x Execute Run as program Can run the file as a program, or enter the folder
None No permission That permission is denied β€” the slot is simply empty
πŸ’‘
Common Patterns
rw-r–r– (644) β€” Normal file. Owner can edit, everyone else can only read.
rwx—— (700) β€” Private folder. Only the owner can see inside.
rwxr-xr-x (755) β€” Public folder. Owner has full control, others can read and enter.
rwxrwxrwx (777) β€” Everyone can do everything. Avoid this on sensitive files.
πŸ“Œ
Why It Matters
This is why the /root/n8n-content folder was invisible to n8n β€” its permissions were rwx------ (700) meaning only the root user could enter it. The ubuntu user (which runs n8n) had no access.
⬆️

Uploading & Downloading Files

Moving files between your PC and VPS

πŸ’»
Your PC (Left Panel)
C:\Users\albert\
thomasnet_canvas.json
⬆ UPLOAD ⬇ DOWNLOAD
πŸ–₯️
Your VPS (Right Panel)
/root/n8n-content/
thomasnet_canvas.json
ActionHow to Do It
⬆️ Upload a file
PC β†’ VPS
1. Navigate to the destination folder on the RIGHT panel
2. Drag the file from the LEFT panel and drop it onto the RIGHT panel
OR: right-click in the RIGHT panel β†’ Upload
⬇️ Download a file
VPS β†’ PC
1. Find the file on the RIGHT panel
2. Drag it from the RIGHT panel and drop it onto the LEFT panel
OR: right-click the file β†’ Download
πŸ“¦ Upload multiple files Select files on the LEFT panel using Ctrl+Click or Shift+Click, then drag them all to the RIGHT panel at once
πŸ“Š Check progress A progress bar appears at the bottom of WinSCP. Wait for it to complete before navigating away or disconnecting
βœ… Confirm upload worked Press F5 to refresh the RIGHT panel β€” the file should appear with its size and date
πŸ’Ύ Backup before deleting Drag the file from RIGHT to LEFT to save a copy on your PC before deleting it from the VPS
⚠️
No Recycle Bin
WinSCP has no recycle bin. Deleting a file on the VPS is permanent and instant. Always drag a copy to your PC (left panel) before deleting anything important from the server.
πŸ—‚οΈ

Your Specific VPS Layout

solutionsforall.net β€” 177.7.45.212

# Your VPS β€” key paths to know

# Where YOU work:
/root/β†’Your admin home β€” start here when you connect
/root/.n8n/β†’n8n hidden config folder
/root/.ssh/β†’SSH keys β€” do not modify

# Where n8n actually runs:
/home/ubuntu/β†’The ubuntu user home β€” n8n process runs as this user
/usr/local/bin/n8n→The n8n program itself
/usr/local/lib/node_modules/n8n/β†’n8n source files

# System folders:
/var/log/β†’Server logs β€” check here if something breaks
/etc/β†’System config β€” caution, do not edit unless you know what you are doing
Path on Your VPSWhat Is ThereSafe to Edit?
/root/ Your admin home β€” where you work in WinSCP βœ… Yes
/root/.n8n/ n8n database and config β€” hidden folder ⚠️ Caution
/root/.ssh/ SSH login keys β€” very sensitive ❌ Do not touch
/home/ubuntu/ The ubuntu user’s home β€” n8n runs as this user ⚠️ Caution
/usr/local/bin/n8n The n8n program binary ❌ Do not touch
/var/log/ System and application logs πŸ‘οΈ Read-only OK
/etc/ System configuration files ❌ Expert only
❌

Common Mistakes & How to Avoid Them

What goes wrong and how to prevent it

MistakeWhat HappensHow to Avoid It
Deleting without a backup File is gone permanently β€” no recovery possible Always drag a copy to your PC (left panel) before deleting anything important
Working at / instead of /root/ You might be editing critical system files β€” dangerous Always check the address bar. Set default remote directory to /root/ in session settings
Not pressing F5 after changes WinSCP shows stale info β€” file you uploaded seems missing Always press F5 to refresh after uploading, deleting, or creating folders
Hidden folders not visible You cannot see .n8n, .ssh, or other dot-folders Enable Show Hidden Files: Options β†’ Preferences β†’ Panels, or press Ctrl+Alt+H
Uploading to the wrong folder File ends up in the wrong location on the VPS Always check the address bar on the RIGHT panel before dragging files over
Editing a file without saving Changes are lost when you close the editor Press Ctrl+S to save in the WinSCP editor before closing the tab
Right-clicking in the tree panel Delete option is missing or grayed out Right-click must be done in the BOTTOM file list panel, not the left tree panel
Confusing / with /root/ Looking in the wrong place β€” files seem missing Remember: / is the whole server. /root/ is the admin home folder where you work.
βœ…
Golden Rules
1. Always backup before deleting.   2. Always press F5 after changes.   3. Always check the address bar before uploading.   4. When in doubt β€” navigate to /root/ first.