I recently installed the latest Kubuntu (x64) on my work machine as I am trying to migrate away from Windows. Unfortunately I use RDP very frequently to connect to customer's servers and need to be able to copy files across.
I have tried the following packages with no luck:
remmina
rdesktop
xfreerdp
My latest attempt to solve this involved connecting one of my folders to the remote server, here is the command I used to launch rdesktop:
rdesktop -5 -K -r disk:home=/home/dai -r clipboard:CLIPBOARD -r sound:off -x l -P 192.168.0.2 -u "administrator" -p pass
The servers are not all running the same version of Windows, the one I've been trying so far is running Server 2003 R2. Customer servers range from Server 2000 to Server 2008.
I have been googling this but all the solutions I find seem to fail, maybe because almost all the help out there assumes that I am running Gnome.
Edit: Copying and pasting text seems to work just fine, but that's not what I need.
https://gitlab.com/Remmina/Remmina/issues/243 says that shares show up using Remmina when you also enable sound redirection. To recap, here is what you have to do:
Then the shared folder appears in My computer in windows.
(If it does not appear, trying clicking Refresh).
Quoting from the man page (http://linux.die.net/man/1/rdesktop):
Thus, something like this should work:
It is strange, but rdesktop requires to share disk and sound together:
Another option would be (if it is suitable of course) to use shared foler, which you can define in the connection profile of remmina.
Go to connection profile and at the bottom define a folder to share with remote machine.
with
xfreerdp
:Using remmina (1.2.0), it's an option in the gui:
With KRDC v17.04.3, drives mounted at /media were automatically visible for me in Windows Explorer in a System Folder named media.
Tip: when using
rdesktop -r disk:sharename=/home/user/whatever
use direct path, using~/whatever
won't work.1) Open your
~/.local/share/remmina/*.remmina
file (backup first) 2) Set absolute path tosharefolder=
option 3) Reconnect. Shared folder should be visible in Windows ExplorerYou could connect to shared windows folders, e.g. with nautilus.
You could setup a Samba Server on your machine and connect to it from the windows machine.
You could setup an FTP Server on one of the Machines and an FTP Client on the other machine.
Most solutions do not depend on whether you use KDE or Gnome or whatever. You can use "Gnome-Programs" in KDE and the other way around.
There is also an openssh for windows which could help you:
sshwindows
Then you could use scp e.g.:
But I did not try that.