GrandMA2 Notebook
Commands
Reboot 2.0.0.10 /noconfirm
SETIP “eth0" 192.168.1.1 /mask=255.255.255.0
Variables:
SetVar $choruschasers="Executors 3 + 4 + 10"
Macro popups:
SetVar $universe=("Which Universe?")
SetVar $address=("Which Address?")
Assign Dmx $universe .$address At Selection
Conditional expressions
SetVar $answer=("really delete all groups? yes/no")
[$answer=="yes"] Delete Group Thru
Telnet
Port: 30000
Crash Logs
To see if the console has generated any crash logs:
- Open the "CommandLine Feedback" window
- Type into the command line: Crashloglist
- If there are any crash logs, they will be displayed in the feedback window
- If logs are found, put a USB Stick in the console and select the USB stick from the [Backup] menu
- Type into the command line: Crashlogcopy
- This will copy all crash logs to the gma2\temp folder on your USB stick.
- Please send us the crash logs, show file, and exact steps you took to get the console to crash.
Actualizate con el curso "Redes para la Industria del Espectáculo" que se impartirá en el DF. Entre los temas veremos: DMX, Art-Net, sACN (E1.31), RDM, MIDI, SMPTE, redes LAN, Pathport, utilidaes para pruebas y solución de problemas, etc. Inscribete ya, informes por inbox.
<syntaxhighlight lang="lua" line='line'>
my $internet_on;
- For Telnet;
use Net::Telnet (); my $telnet_host; my $telnet_port; my $telnet_username;
my $telnet_password;
- For Telnet;
use Net::Telnet (); my $telnet_host; my $telnet_port; my $telnet_username; my $telnet_password;
- $
- Telnet
- $
sub cmd_telnet($$) {
my($rx, $args) = @_; #warn "Telnet cmd\n";
return if (!$is);
my($cmd, @words) = @$args;
my $msg = lc(@words);
warn "*** Hello Telnet World ***\n"; my $t = new Net::Telnet (Timeout => 10, Prompt => '/bash\$ $/‘);
my $t = new Net::Telnet (Port => telnet_port, Prompt => '/bash\$ $/‘, Timeout => 10);
$t->open($telnet_host);
- my $res = $t->print('login ' . $telnet_username .' ' . $telnet_password);
my $res = $t->print($msg); t$->close; warn "Telnet sent res = $res\n";
}
'gma' => \&cmd_telnet,
- Internet connection.
$internet_on = $c->{'internet_on'};
- Telnet.
$telnet_host = $c->{'telnet_host'}; $telnet_port = $c->{'telnet_port'}; $telnet_username = $c->{'telnet_username'};
$telnet_password = $c->{'telnet_password'};
</syntaxhighlight>