Support Forum
Frequently Asked Questions
Miscellaneous
Where can I find Perl?
Perl scripts usually have a special first line that specifies the path to
the Perl interpreter. At OnBahn
, the correct
paths are:
#!/usr/bin/perl
...for Perl 5.6.1
Where can I find sendmail?
Under Linux, sendmail is not in /usr/lib.
The correct path to sendmail is:
/usr/sbin/sendmail
Where can I find other programs?
You can find the location of any executable program with the
which
command when logged in via Telnet. For example:
ns1:~$ which sendmail
/usr/sbin/sendmail
Return to Frequently Asked Questions
|
|