Kirjoittaja Aihe: NSLU2 jokin linux ja perl?  (Luettu 2586 kertaa)

hetekka

  • Käyttäjä
  • Viestejä: 1
    • Profiili
NSLU2 jokin linux ja perl?
« : 12.01.10 - klo:13.49 »
Hei
Osaisiko joku neuvoa saako NSLU2 bokxiin asennettua sellaista web serveriä jossa toimisi PERL ( .cgi & .pl )?
Olen yrittänyt http://www.nslu2-linux.org/ ohjeilla monta monta kertaa eri linux versioilla mutta nuo .cgi tiedostot avautuvat aina "notepad" muodossa.

Vai onko tämä yleensäkkään mahdollista NSLU2 boxilla? Normaalit .html sivut saan toimimaan.

Tällä hetkellä boxissa debian 5.0.3

Tässä pätkä tarvittavan perl ohjelman alusta,

#!/usr/bin/perl

###################################################################
#  reitti.cgi or reitti.pl                                        #          
###################################################################
# Reittihärveli   -      Sovellus suunnistuksen reittipiirrosten  #
#                           keräykseen  ja esittämiseen tämiseen  #
# Distributed by: jryyppo ät gmail.com                            #
# ================================================================#
# Copyright (c) 2003-2005 Jarkko Ryyppö - All Rights Reserved.    #
# Software by:        Jarkko Ryyppö                               #
# Sponsored by:       -                                           #
###################################################################
# The software is free for non-commercial use.  The software can  #
# be used only for purposes related to the sport of orienteering. #
#                                                                 #
# This program comes as it is. Use it at your own risk. This is   #
# software with ABSOLUTELY NO WARRANTY. This program is           #
# distributed in the hope that it will be useful, but             #
# WITHOUT ANY WARRANTY; without even the implied warranty of      #
# FITNESS FOR A PARTICULAR PURPOSE.                               #
#                                                                 #
# Developers of this software are not responsible for what the    #
# user does with help of this software.                           #
#                                                                 #
#     THE USER MUST NOT USE SOFTWARE FOR ILLEGAL ACTIONS.         #
#                                                                 #
# By installing and/or using our software, you agree with these   #
# terms of use.                                                   #
###################################################################

use Fcntl ":flock";
use POSIX;
use CGI qw(:cgi-lib);
#use CGI::Carp qw{fatalsToBrowser};
$CGI::POST_MAX=1024 * 4000;  # max 4000K posts

ReadParse();

#########################################################################################
$RG_version='RouteGadget reitti.cgi version: 16.7.2009';
##
@languages=('ca','de','ee','en','es','fi','fr','he','lt','lv','no','ru','se','pt');

## You can add new languages by (1)adding new item here, (2) adding language texts with
## correct parameter names to map.txt (like <param name=en_11 value="Zoom">)
## and making new file "lang_YOURLANGUAGE.txt"  
## (you can figure it out with these examples I hope)
##
## 1. Default language: (choices are currently 'ca','de','ee','en','es','fi','fr','he','lt','lv','no','ru','se')
$default_lang='en';
« Viimeksi muokattu: 12.01.10 - klo:15.26 kirjoittanut hetekka »