how to connect to an ftp server? [closed] - cmd

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
How do I connect to an FTP server using a command prompt?
The ftp site I am trying to connect to is
ftp.bom.gov.au/anon/gen/
I used to be able to type in ftp ftp.bom.gov.au/anon/gen/ in the command prompt and it would challange me for a username and password
but now it says unknown host.
I can still get to it from a browser
ftp://ftp.bom.gov.au/anon/gen/
Is there something I am missing?
Thanks

You can't specify the path in the command. You should use ftp ftp.bom.gov.au and then cd /anon/gen/ to change the path.

Related

How to do password-less login using plink? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I'm able to login passwordless with putty after adding the key to my server and configuring putty (gui) with session. I'm unable to login passwordless with plink. How do I do this?
Use -i option to use the particular private key or just use -load option with the session that you created in putty gui.

How do I connect to remote server in bash? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
The connection works fine with doing it through the gui as shown in pic 1, but I have tried
mount_smbfs //rajohns:MyPassword#msclst2fs
and I see that the format is supposed to be
//[domain;][user[:password]#]server[/share] path
but I don't know what to put for domain or /share or path
Try
mount_smbfs rajohns:MyPassword#msclst2fs/SHARE2 /Volumes/msclst2fs
to make the volume available at /mnt/msclst2fs. The path is wherever in your file system you want to make the volume accessible.

Need to be able to run a Batch file from another computer over the internet [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I am running a minecraft server for a friend. And he needs to be able to start the server. I need some way to run a bat file over the internet for him. I am not really coder so. I don't know how to do this. I have been told by coder friends ssh is the way to go. I have no idea how to use ssh. Windows btw.
Quick Google Search, First result

window server r2 2008 administration password forgot [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I have forgotten window server r2 2008 administration password. I am facing problem to login with my current password. The error message is invalid password. Please help how to I break my password.
petri has a cool tool to do this... here is the link to the tiny iso file.
http://www.petri.co.il/uri/?pogostick.net/~pnh/ntpasswd/cd080802.zip
main page: http://www.petri.co.il/forgot_administrator_password.htm
Download the iso file (around 2 MB), burn it to a CD, and boot from it... and follow the instructions, you can reset your pass !

Is it possible to copy files from one computer (which is remotely accessing another one through terminal) to the other one? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'm using a Mac to remotely access a computer in my university's computer lab. The Mac serves as a terminal. If I need to transfer some files from my computer into the one in the lab, is it, firstly, possible? If yes, then please guide me to it.
Absolutely, use the UNIX / Linux command scp (secure copy):
$ scp user#server:directory/SourceFile TargetFile
Update based on OP's response:
$ scp path/to/my/file.txt user#server.com:/path/to/copy/to/file.txt

Resources