Re: how to get filezilla or best option ...

2022-05-06 Thread Phil Waclawski via PLUG-discuss
If you are using sftp

sftp -i ~/.ssh/keyfilename -P 22 u...@hostname.com

if you are using your default key, and you are using the default port of
22, you can drop the
-i  and -P options

when connected

put  filename  (uploads file)
get filename  (downloads file)

cd  and ls (change directory or use ls on REMOTE machine)
lcd  lls (change working directory and ls on YOUR machine)

Phil W

On Fri, May 6, 2022 at 4:59 PM Herminio Hernandez, Jr. via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> here is the syntax
> send
> scp file user@server:~/directory
> rec
> scp ser@server:~/directory file
>
> On Fri, May 6, 2022 at 4:52 PM joe--- via PLUG-discuss <
> plug-discuss@lists.phxlinux.org> wrote:
>
>> Today, I tried to install filezilla on my linux
>> laptop and it did not work. What is the best option?
>>
>> I can ssh from one of my linux laptops into another
>> one on my home network, but I don't know the syntax
>> to ftp from one to the other. And I don't know any
>> other way to send to or retrieve from one to the other.
>>
>> I tried 'scp' but don't know the correct syntax.
>>
>> ===
>> ---
>> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
>> To subscribe, unsubscribe, or to change your mail settings:
>> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
>
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: how to get filezilla or best option ...

2022-05-06 Thread Matt Graham via PLUG-discuss

On 2022-05-06 16:59, Herminio Hernandez, Jr. via PLUG-discuss wrote:

I can ssh from one of my linux laptops into another
one on my home network, but I don't know the syntax
to ftp from one to the other. And I don't know any
other way to send to or retrieve from one to the other.


ftp requires installing an FTP server, which is a PITA to get right.


I tried 'scp' but don't know the correct syntax.

send
scp file user@server:~/directory
rec
scp ser@server:~/directory file


If you have your ssh keys set up properly, it's kind of like so:

(to copy file1 on host1 to host2 directory /home/me/)
host1:~: scp file1 user@host2:/home/me/
(to recursively copy all of dir1 to host2 /home/me/)
host1:~: scp -r dir1 user@host2:/home/me/

If your ~/.ssh/config is set up properly, you can omit the user@ part 
and probably not have to put in a password.  Also, KDE's dolphin has the 
fish://user@host/ KIOslave, which is _very useful_ if you like GUI file 
managers.


--
Crow202 Blog: http://crow202.org/wordpress
There is no Darkness in Eternity
But only Light too dim for us to see.
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

Re: how to get filezilla or best option ...

2022-05-06 Thread Herminio Hernandez, Jr. via PLUG-discuss
here is the syntax
send
scp file user@server:~/directory
rec
scp ser@server:~/directory file

On Fri, May 6, 2022 at 4:52 PM joe--- via PLUG-discuss <
plug-discuss@lists.phxlinux.org> wrote:

> Today, I tried to install filezilla on my linux
> laptop and it did not work. What is the best option?
>
> I can ssh from one of my linux laptops into another
> one on my home network, but I don't know the syntax
> to ftp from one to the other. And I don't know any
> other way to send to or retrieve from one to the other.
>
> I tried 'scp' but don't know the correct syntax.
>
> ===
> ---
> PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
> To subscribe, unsubscribe, or to change your mail settings:
> https://lists.phxlinux.org/mailman/listinfo/plug-discuss
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss

how to get filezilla or best option ...

2022-05-06 Thread joe--- via PLUG-discuss

Today, I tried to install filezilla on my linux
laptop and it did not work. What is the best option?

I can ssh from one of my linux laptops into another
one on my home network, but I don't know the syntax
to ftp from one to the other. And I don't know any
other way to send to or retrieve from one to the other.

I tried 'scp' but don't know the correct syntax.

===
---
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
https://lists.phxlinux.org/mailman/listinfo/plug-discuss