• MRS Client

    From robert wolfe@1:116/18 to All on Tue Nov 28 22:45:00 2017
    Greetings all. When I go to start the MRC client to connect to my MRC server
    I get the following error:

    pi@raspberrypi:/data/mystic $ ./mrc_client.py localhost 5000
    Traceback (most recent call last):
    File "./mrc_client.py", line 133, in <module>
    FillChatRoom()
    File "./mrc_client.py", line 21, in FillChatRoom
    cr=open(crf,"rb")
    IOError: [Errno 2] No such file or directory: '/data/mystic/data/chatroom.dat' pi@raspberrypi:/data/mystic $

    Not exactly sure how I need to go about fixing this.

    --- Mystic BBS v1.12 A36 2017/11/24 (Raspberry Pi/32)
    * Origin: How about a piece of Pi? (1:116/18)
  • From Christopher Malo@1:317/2 to robert wolfe on Wed Nov 29 00:26:19 2017
    On 11/28/17, robert wolfe said the following...

    Greetings all. When I go to start the MRC client to connect to my MRC server I get the following error:

    pi@raspberrypi:/data/mystic $ ./mrc_client.py localhost 5000
    Traceback (most recent call last):
    File "./mrc_client.py", line 133, in <module>
    FillChatRoom()
    File "./mrc_client.py", line 21, in FillChatRoom
    cr=open(crf,"rb")
    IOError: [Errno 2] No such file or directory: '/data/mystic/data/chatroom.dat' pi@raspberrypi:/data/mystic $

    Not exactly sure how I need to go about fixing this.

    OK here goes my list:

    #1: folder in the following location /mystic/data/mrc
    #2: cmd line to connect -- python mrc_client.py fluph.darktech.org 5000

    restart script would be needed since this will disconnect on occasion, below
    is my ksh reconnect script.

    #!/bin/ksh

    while true
    do
    task=./mrc_client.py
    chat=`ps -ef | grep ${task} | grep -v grep | wc -l | awk '{print $1}'`

    if [ "${chat}" == "0" ]; then
    cd /mystic
    ${task} fluph.darktech.org 5000 > /dev/null 2>&1&
    fi
    sleep 1
    done

    Please let us know if this helps resolve your connection to MRC. :)

    Cheers!
    Pequito

    --- Mystic BBS v1.12 A36 2017/11/28 (Linux/32)
    * Origin: Twinkle BBS # (1:317/2)
  • From robert wolfe@1:116/18 to Christopher Malo on Wed Nov 29 06:41:27 2017
    Christopher Malo wrote to Warp 4 <=-

    #1: folder in the following location /mystic/data/mrc

    Done already.

    #2: cmd line to connect -- python mrc_client.py fluph.darktech.org 5000

    Connected to the server now :) I see a couple of Mystic BBSes from my
    own network are connected :)

    restart script would be needed since this will disconnect on occasion, below is my ksh reconnect script.

    Will implement this :)

    Please let us know if this helps resolve your connection to MRC. :)

    I downloaded the latest version of the MRC mod that was available for downloading on inktwo and installed it and that seems to have fixed my
    issue.

    ... He does the work of 3 Men...Moe, Larry & Curly
    ___ MultiMail/Linux v0.50

    --- Mystic BBS/QWK v1.12 A36 2017/11/24 (Raspberry Pi/32)
    * Origin: How about a piece of Pi? (1:116/18)