uploading


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers uploading
# 1  
Old 09-10-2003
uploading

can i upload the file using telnet from my computer to the internet ...
let me repeat ... using putty telnet Smilie
and whats the command ??
# 2  
Old 09-10-2003
Not sure I understand the question. If you want to transfer a file from your machine to another machine that you have an account on then ftp is the way to go.

ftp remote_machinename
cd remote directory
bin #if the file is a binary
put file
bye

Matt.
# 3  
Old 09-10-2003
no ... i telnet to a SERVER and then i wanna take something from MY MACHINE ( window ) to another user in the same server
how can i do that ?? is that possible ??
# 4  
Old 09-12-2003
u can always use those WS FTP programs they make transfering files a lot easier
# 5  
Old 09-12-2003
Hi,

A telnet is a type of connection from server a to server b.
FTP is another one, rcp is also another one. Telnet gives you a shell so that allowes you to type commands.

Ftp is a kind of a "shell"that allows you to put or get data. rcp is a mechanism that allows you to copy over data. All work on different ports :

Telnet = port 21
ftp = port 23
cp (remsh/shell) = port 514

Just to let you understand what you are doing ones logging into a system using telnet. It's completely different from Windows.

Regs David
# 6  
Old 09-12-2003
if ftp is unavailable, and telnet is the only service available, *AND* if there are not www/ftp clients on the server, you could always try uuencode and uudecode. its not fun, but if the remote terminal supports "pasting" (if they dont, forget it), you could uuencode part of the file, paste it on the other terminal, uuencode another part, paste it, etc. wouldnt be fun, but then again, few things are.
# 7  
Old 09-12-2003
my ftp dun work thats why i wanna use telnet if possible ( think alot and i think it can't )
so .. what im going to do is download from my user and copy and paste to another user... ekek
but ... thats using wget ehh ??
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Web Development

Uploading files via php

I used the following code, which I found on the internet to upload files. <!-- The data encoding type, enctype, MUST be specified as below --> <form enctype="multipart/form-data" action="upload2.php" method="POST"> <!-- MAX_FILE_SIZE must precede the file input field --> <input... (2 Replies)
Discussion started by: jgt
2 Replies

2. UNIX for Dummies Questions & Answers

Plowshare Command In Uploading Files

OK i am completely new to this stuff!! let me start from the beginning!!! I Am connected to Whatbox.ca Via SSH!! Then I installed plowshare using their guide perfectly Now They Told Me To refer Plowshare site's Command list for uploading any files to Various... (4 Replies)
Discussion started by: anime12345
4 Replies

3. UNIX for Advanced & Expert Users

SFTP Resticting Only Uploading Of A File

I have setup our SFTP server: SFTP Setup: /etc/ssh/sshd_config: Subsystem sftp internal-sftp Match Group sftpusers PasswordAuthentication yes ChrootDirectory /srv/sftponly AllowTCPForwarding no X11Forwarding no ForceCommand internal-sftp Adding the... (5 Replies)
Discussion started by: metallica1973
5 Replies

4. Shell Programming and Scripting

Perl , uploading empty file.

Hi The below script used to work fine. Suddenly it's uploading empty file. I am very new to perl. Please help me to find out the problem. #!/usr/bin/perl #script: upload.pl use CGI qw/:standard/; print header, start_html('File upload'); print_form(); print_results() if... (2 Replies)
Discussion started by: Anupam_Halder
2 Replies

5. Shell Programming and Scripting

to block the files uploading via the port

Hi Folks, I am not good in shell scripting. Please help me with my problem. Is it possible to block the file named "ss.cgi" using the port 25 to upload. (4 Replies)
Discussion started by: gsiva
4 Replies

6. Shell Programming and Scripting

Issue in uploading file using sftp

Hi I'm using this script to upload a file from local system to sftp server. But in the log file i'm getting an error "Error during upload" Can you please help me out ... ### CONFIGURATION LOCAL_DIR=/abc/out FILE_MASK="File*.txt" LOG_DIR=/abc/error/File_`date "+%Y%m%d%H%M%S"`.LOG... (3 Replies)
Discussion started by: Jaychandra
3 Replies

7. UNIX for Dummies Questions & Answers

help uploading directories with SFTP

Hi, I am a newbie and not really familiar with commands, I have searched the forum, but there was only one thread. That thread suggested compressing it and then decompressing it. So I am wondering, what format do I compress it to, and how do I decompress it once I uploaded it from within SFTP... (4 Replies)
Discussion started by: greetea
4 Replies

8. Shell Programming and Scripting

uploading directories via SFTP

Hello All, Is there a way to upload whole directories to a machine using sftp (scp is not an option)? I have to use sftp because the machine that I am connecting to only has SFTP abilities (uploading from a linux box to a windows box). Currently I am automating a copy however right now I am... (2 Replies)
Discussion started by: mab623
2 Replies

9. UNIX for Advanced & Expert Users

Perl Uploading Files

Using perl 5.8.0, Linux 2.4.20-30.9, RedHat 9.0. We have many .cgi's that allow privileged users to upload files to the server through a web browser. We've had these .cgi's for years and have never had any problems with them. Recently the files being uploaded are sometimes being given 600... (16 Replies)
Discussion started by: sstevens
16 Replies
Login or Register to Ask a Question