NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io


*** ATTENTION: Read the following statement before using this computer ***

This is a Penn State College of Information Sciences and Technology computer system. This computer system, including related equipment and network connectivity (specifically including Internet access), are provided for authorized use as described in Penn State Policies AD95, AD96, and ADG02. The College and University respect your privacy rights. We also have an interest in the safety and security of our networks. Thus, IST computer systems may be monitored for lawful purposes as stated in Penn State Policy AD53 to ensure that their use is authorized, for management of the system, to facilitate protection against unauthorized access, and to verify the security of this system. All information, including personal information, placed on or sent over this system or connected network may be monitored if it is suspected that the user is engaging in unlawful activity, unauthorized activity, or the system security may have been compromised to the extent specified by Penn State. During monitoring, information may be examined, recorded, copied and used for authorized purposes. Use of this computer system, authorized or unauthorized, constitutes consent to monitoring of this system for the purposes listed above. Unauthorized use may subject you to administrative action or criminal prosecution as stated in the Penn State Policies.


[rbg5181@i4-cs-lxlabs02 Downloads]$ scp f1.txt f2.txt f3.txt [email protected]:/hdfs_lab1
[email protected]'s password:
scp: /hdfs_lab1: No such file or directory
[rbg5181@i4-cs-lxlabs02 Downloads]$ scp f1.txt f2.txt f3.txt [email protected]/hdfs_lab1
[email protected]/hdfs_lab1: No such file or directory
[rbg5181@i4-cs-lxlabs02 Downloads]$ scp f1.txt f2.txt f3.txt [email protected]/:hdfs_lab1
[email protected]/:hdfs_lab1: No such file or directory
[rbg5181@i4-cs-lxlabs02 Downloads]$ scp f1.txt f2.txt f3.txt [email protected]:/hdfs_lab1
[email protected]'s password:
scp: /hdfs_lab1: No such file or directory
[rbg5181@i4-cs-lxlabs02 Downloads]$ scp -P 2222 f1.txt f2.txt f3.txt [email protected]:/hdfs_lab1
ssh: connect to host hadoop-gateway.ist.psu.edu port 2222: Connection refused
lost connection
[rbg5181@i4-cs-lxlabs02 Downloads]$ sftp f1.txt f2.txt f3.txt [email protected]:/hdfs_lab1
usage: sftp [-1246aCfpqrv] [-B buffer_size] [-b batchfile] [-c cipher]
[-D sftp_server_path] [-F ssh_config] [-i identity_file] [-l limit]
[-o ssh_option] [-P port] [-R num_requests] [-S program]
[-s subsystem | sftp_server] host
sftp [user@]host[:file ...]
sftp [user@]host[:dir[/]]
sftp -b batchfile [user@]host
[rbg5181@i4-cs-lxlabs02 Downloads]$ sftp [email protected]
[email protected]'s password:
Connected to hadoop-gateway.ist.psu.edu.
sftp> cd Downloads
Couldn't stat remote file: No such file or directory
sftp> ls
hdfs_lab1
sftp> cd hdfs_lab1/
sftp> put /home/rbg5181/Downloads/f1.txt /home/rbg5181/Downloads/f2.txt /home/rbg5181/Downloads/f3.txt
Uploading /home/rbg5181/Downloads/f1.txt to /home/rbg5181/Downloads/f2.txt
remote open("/home/rbg5181/Downloads/f2.txt"): No such file or directory
sftp> put /home/rbg5181/Downloads/f1.txt /home/rbg5181/Downloads/f3.txt
Uploading /home/rbg5181/Downloads/f1.txt to /home/rbg5181/Downloads/f3.txt
remote open("/home/rbg5181/Downloads/f3.txt"): No such file or directory
sftp> put /home/rbg5181/Downloads/f1.txt
Uploading /home/rbg5181/Downloads/f1.txt to /home/rbg5181/hdfs_lab1/f1.txt
/home/rbg5181/Downloads/f1.txt 100% 25 12.4KB/s 00:00
sftp> put /home/rbg5181/Downloads/f2.txt
Uploading /home/rbg5181/Downloads/f2.txt to /home/rbg5181/hdfs_lab1/f2.txt
/home/rbg5181/Downloads/f2.txt 100% 55 38.3KB/s 00:00
sftp> put /home/rbg5181/Downloads/f3.txt
Uploading /home/rbg5181/Downloads/f3.txt to /home/rbg5181/hdfs_lab1/f3.txt
/home/rbg5181/Downloads/f3.txt 100% 30 28.9KB/s 00:00
sftp> ld
Invalid command.
sftp> ls
f1.txt f2.txt f3.txt
sftp> cd ..
sftp> ls
hdfs_lab1
sftp> mv hdfs_lab1 hdfs_lab1a
Invalid command.
sftp> mv hdfs_lab1 hdfs_lab1a
Invalid command.
sftp> mkdir hdfs_lab1a
sftp> ls
hdfs_lab1 hdfs_lab1a
sftp> mv hdfs_lab1 hdfs_lab1a
Invalid command.
sftp> mv hdfs_lab1 /hdfs_lab1a
Invalid command.
sftp> cd hdfs_lab1a
sftp> put /home/rbg5181/Downloads/f1.txt
Uploading /home/rbg5181/Downloads/f1.txt to /home/rbg5181/hdfs_lab1a/f1.txt
/home/rbg5181/Downloads/f1.txt 100% 25 29.8KB/s 00:00
sftp> put /home/rbg5181/Downloads/f2.txt
Uploading /home/rbg5181/Downloads/f2.txt to /home/rbg5181/hdfs_lab1a/f2.txt
/home/rbg5181/Downloads/f2.txt 100% 55 49.6KB/s 00:00
sftp> put /home/rbg5181/Downloads/f3.txt
Uploading /home/rbg5181/Downloads/f3.txt to /home/rbg5181/hdfs_lab1a/f3.txt
/home/rbg5181/Downloads/f3.txt 100% 30 31.6KB/s 00:00
sftp> cd ..
Couldn't canonicalize: No such file or directory
sftp> ls
remote readdir("/home/rbg5181/hdfs_lab1a"): No such file or directory
sftp> ls
remote readdir("/home/rbg5181/hdfs_lab1a"): No such file or directory
sftp> ls
remote readdir("/home/rbg5181/hdfs_lab1a"): No such file or directory
sftp> ls -a
remote readdir("/home/rbg5181/hdfs_lab1a"): No such file or directory
sftp> mkdir hdfs_lab1b
Couldn't create directory: No such file or directory
sftp> cd hdfs_lab1b
Couldn't canonicalize: No such file or directory
sftp> ls
remote readdir("/home/rbg5181/hdfs_lab1a"): No such file or directory
sftp> cd ..
Couldn't canonicalize: No such file or directory
sftp> exit
[rbg5181@i4-cs-lxlabs02 Downloads]$ sftp [email protected]
[email protected]'s password:
Connected to hadoop-gateway.ist.psu.edu.
sftp> cd hdfs_lab1b/
sftp> put /home/rbg5181/Downloads/war_and_peace.txt
Uploading /home/rbg5181/Downloads/war_and_peace.txt to /home/rbg5181/hdfs_lab1b/war_and_peace.txt
/home/rbg5181/Downloads/war_and_peace.txt 100% 3142KB 45.4MB/s 00:00
sftp> tail -c
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.