Well, in preparing to get everything going with my FreeBSD system, I went over the termcap entry in FreeBSD... noticing something missing, I dug through the ones on club100... well, imagine my surprise when I discovered that the termcap entry didn't support ACS (Alternate Character Set) drawing characters! *gasp* So, (still without a m100 in my posession yet) I whipped up an acs set for the m100 termcap... here's the updated termcap entries for /etc/termcap: trs100|m100|Radio Shack Model 100:\ :am:bs:le=^H:li#8:co#40:ku=^^:kd=^_:kl=^]:kr=^\:up=\EA:\ :nd=\EC:ho=\EH:ce=\EK:cd=\EJ:cl=\EE:xt:cm=\EY%+ %+ :\ :so=\Ep:se=\Eq:al=\EL:dl=\EM:\ :ac=l\360m\355k\362j\367t\364u\371v\370w\363q\361x\365n372`\235a\377f\246g\215~\257,\233+\232.\231-\230h\377O\357: m100v|Model 100 with DVI:\ :co#80:do=^_:is=\ED:le=^]:li#24:nd:^\:sr=\EI:up=^^:tc=m100: Essentially, a \ was added to the last line, and the ac capability was added as the new last line. For those who are not termcap savvy, the lines MUST start with tabs (except the first one) and MUST end with a \ (except the last one) If you're running FreeBSD (Possibly other BSDs, I can remember) you'll need to run cap_mkdb after updating the termcap file. For those using terminfo instead of termcap (ie: Most Linux distros) here is the converted terminfo entry: trs100|m100|Radio Shack Model 100, am, xt, cols#40, lines#8, acsc=l\360m\355k\362j\367t\364u\371v\370w\363q\361x\365n372`\235a\377f\246g\215~\257\,\233+\232.\231-\230h\377O\357, bel=^G, clear=\EE, cr=^M, cub1=^H, cud1=^J, cuf1=\EC, cup=\EY%p1%{32}%+%c%p2%{32}%+%c, cuu1=\EA, dl1=\EM, ed=\EJ, el=\EK, home=\EH, ht=^I, il1=\EL, ind=^J, kbs=^H, kcub1=^], kcud1=^_, kcuf1=^\, kcuu1=^^, nel=^M^J, rmso=\Eq, smso=\Ep, m100v|Model 100 with DVI, cols#80, lines#24, cub1=^], cud1=^_, cuf1=^], cuu1=^^, is2=\ED, kbs=^H, kcub1=^H, kcud1=^J, ri=\EI, use=m100, Create a file (named m100.terminfo or something) and use the command "tic m100.terminfo" to install it. You need to run this command as root if you want it installed for all users. A couple notes regarding this termcap entry... 1) I can't find an ASCII code for a single line at the top (vt100s "scan line 1") or a single line at the bottom (vt100s "scan line 9") but that's ok, because they are rarely used in any programs I've seen. 2) I've set both "checker board (stipple)" and "board of squares" to ASCII code FF... I may reconsider and leave the stipple as : to differentiate between then two when I start using the termcap.