

# Unix89 PTYs
    printf("mounting /dev/pts (unix89 pty) filesystem... "); 
    if (mount("/dev/pts", "/dev/pts", "devpts", 0, NULL))

# Terminal Type
    term = getenv("TERM");
    if (!term || (term && !strncmp(term,"linux",5))) {
      color_or_monochrome();
    }
    
# Info
    release_notes();
