• Please review our updated Terms and Rules here

Terminal emulador

mindingulove

Experienced Member
Joined
Mar 8, 2014
Messages
61
Location
Brazil petropolis
Hello
I have a toshiba t3100 with msdos 6.22
I want to connect it to a Linux box and use Lynx to browser the internet
On Linux I set up Innitab as following : T1:12345:respawn:/sbin/getty/ -L ttyS1 19200 vt320
On Kermit I set baud to 19200
I'm using a serial rs232 to USB adapter, usb is in com 2 on my pc
But even after set up Kermit stays blank :/ any idea where am I wrong?
 
I bought it online but i will check it. That's may be the reason why I get Access denied while trying to send text from Linux to the dos machine and when I try to get the text from msdos? Weird, because On windows I can access the Kermit95 terminal, it appears text on my windows pc console but text won't appear on msdos machine
 
Last edited:
How do I enable it? Btw the cable does not contain all the wiring, actually it has only 3 wires, but 2 goes to 3 and vice versa I'll have to do the wiring myself?
 
Not to sound silly, but are you sure the uart on the msdos machine can actually handle 115200 bps?

Try knocking it down to 9600 and see if you get any results.


--Phil
 
I have tried every kind of way to connect a computer to a linux box (Rasp PI in particular using a USB to serial cable). Kermit probably will not allow you to remotely "print" like you're thinking, or at least there is an easier way. It's better to set up a terminal program like procomm on the Toshiba and connect via Serial terminal with null modem adapter. Turn local screen echo on, Add CR to Line feeds, etc until you get it working correctly.

Here are my project notes:
http://vintagecomputer.net/browse_thread.cfm?id=591

Bill
 
Rewired according to the scheme posted here and installed procomm on msdos, but still Linux seems to have no kind of interaction at all with my msdos machine
So i came back to windows and used InternetModem program,bingo it has interaction, even tough i got output on windows still nothing appears on msdos.
Here are videos showing what kind of feedback i got

here is my internetmodem.ini file
; Program Stuff

; The name of your BBS
BBSName=The BoycoT BBS

; These should be pretty self-explanatory
; If you do not want to accept incoming calls, set TcpListen=False. Otherwise, set to True.
TcpListen=False
TcpPort=9999
SerPort=3
SerBaud=19200
SerDataBits=8

; SerParity: None, Even, Odd, Mark, Space
SerParity=None

; SerStopBits: 1, 1.5, 2
SerStopBits=1

; Handshake: None, RTS, XonXoff, RTS/XonXoff
Handshake=XonXoff

; Buffer Sizes: RcvBuff=In from TCP/Out to Serial, XmtBuf=Opposite
RcvBuf=4096
XmtBuf=4096

; Throttle: Delay, in milliseconds, you need between each character
; sent out the serial port to your terminal. Start with a
; value of 0 and test to make sure you are not losing
; characters. If you are, then increment the value and
; test again until you stop losing characters.
Throttle=0

; LineSize: This only comes into effect if a session is established
; with a server that uses the Telnet protocol. This tells
; the server the character width of your terminal screen.
LineSize=80

; Keeps a log file of what is displayed in the program window.
KeepLog=True

; Display modem commands sent from terminal
ShowModemCommands=True

; Display Result codes sent back to terminal
ShowResultCodes=true

; Terminal section
LineLength=80
ContIndent=4

; IRC Section (Added 1-6-2007) should be obvious what these are for.
; The following line is a delimited list of TCP port numbers that will cause InternetModem to enter IRC Mode.
IrcPorts=6667,6668,6669
IrcBlockPrivMsgs=False
IrcUid=mindingulove
IrcNick=mindingulove
IrcPwd=070809
IrcShowTimeStamp=True
; The following will be sent in response to a CTCP/USERINFO query.
IrcUserInfo="I'm using an Apple IIgs hooked to the internet using Proterm 3.0 and Internet Modem for Windows! Get it at http://boycot.no-ip.com/software"
; If a RoomName is specified, it will be automatically joined when connected to an IRC server.
IrcRoomName=
; The following, if true, shows the incoming & outgoing Raw IRC messages in the program window, it's not sent to the terminal.
IrcShowRawInIrc=False
IrcShowRawOutIrc=False
 
Back
Top