exchanges file in minicom

2000-10-11 Thread Eurico Inocencio
Hello After kernel is running on target, how can I send/receive files between host(minicom/linux) and target ? For ascii file, I can use cat /dev/ttyS0 on target, and ascii-xfr .. on host. How about Binary files ? Try ZMODEM, minicom can send and receive files using this protocol, on the

exchanges file in minicom

2000-10-11 Thread Jerry Van Baren
You can use uuencode to convert binary to an ASCII encoding, transfer the (now ASCII) file via cat (or use the minicom capture feature), and then use uudecode to convert the file back into binary. You can use tar to bundle files together and gzip to make them smaller before you uuencode them

exchanges file in minicom

2000-10-10 Thread Zhaobin Zhu
Hi, I boot linux over IDE disk. The only connection between host and target is RS232 which is used to download and as console(minicom). After kernel is running on target, how can I send/receive files between host(minicom/linux) and target ? For ascii file, I can use cat /dev/ttyS0 on target,