BASH Lesson - Transfer Binary files across an network using NetCat
Loading...
1,576
Loading...
Uploader Comments (metalx1000)
see all
All Comments (9)
-
@metalx1000 that's exactly what I ment... :)))
Thank you for you're work, it's really usefull...
-
imagemagick is the package you want. It is full of fun things. Pretty much everything you need to Edit and Convert images from the command line. Think of it as GIMP for your command prompt.
-
Display is not installed on my distro (im using ubuntu). What command am i gonna type to install display?
When i use aptitude search display, it lists a bunch of programs.
Loading...
Is there a way to make it stop when the transfer is done?
WASDsweden 7 months ago
@WASDsweden: off the top of my head I would say the "-q" switch. let me know if that works.
metalx1000 7 months ago
@metalx1000 "-q 1" worked in the client window. It closed the server as well.
WASDsweden 7 months ago
@WASDsweden: I'm sure there is a better way of doing it, but if you want to keep the server running, you could put it in a loop:
while [ 1 ]; do nc -l 8888;done
May not be the best solution, but if we are transferring files using netcat, things aren't the best case scenario anyway.
metalx1000 7 months ago
isn't this a good alternative to ftp for quickly transfering files from a unxi pc to another....?
Zaesar7 1 year ago
@Zaesar7: You could use this, but I would recommend using FTP if you are going to be doing a lot of transfers. This is good if you just need to transfer something now and don't want to setup an FTP server.
metalx1000 1 year ago