Beiträge von Fanatic_Joker
-
-
-
nein ist er nicht out of the box kannst du auf jeden Fall schon mal 4 HDDs einbauen und hast noch einen SATA Port frei für cdrom oder so ... also du hast effektiv 5xSATA ...
schau mal einer an ... da steht bei den unterstützen Betriebssystemen sogar "DSM" ... somit könntest du dein gewünschtes Synology OS (DSM) auf dem HP laufen lassen
-
Du hast deinen HP mit 16 GB Ram bestückt - laut Signatur. Hast du da einen Link für mich, wo man diese kompatiblen Ram-Riegel findet?
Falls mir der Lüfter des HP zu laut ist, welcher bietet sich da als merklich leiserer Ersatz (amazon-Link pls) an?
Ansonsten: die Synology 412+ bietet als Video-Station die Videotranskodierung (Typ 1 und Typ 2) an. Kann ich dies auch mit dem HP
bzw. FreeNAS oder Konsorten bewerkstelligen?Sehe grad, dass man das Synology-OS (DiskStation Manager) auch auf den HP installieren kann? Link
Hat dies hier jemand schon gemacht?
Schau mal hier vorbei ... -
= 275 EUR ... gut die Hälfte der Synology 412+
Je nach dem musste das Betriebssystem noch mit dazu rechnen, sofern nicht Freeware...Ich hätte noch nen Windows 7 x64 Prof OVP zum Forenpreis
-
Ich werde einfach mal Hp Microserver N54 L in den Raum
ob das Thema jetzt ausratet ? -
Du kannst auch das Synology OS virtualisieren... wenn dir sowas Spaß macht und du das OS magst...
nennt sich XPEnology und läuft via VirtualBox
ist ne Sache von 10 Minuten, müsstest allerdings die HDDs durchreichen, was leicht ekelig ist
-
Aber nun zu meiner Frage:
Wenn der htpc aus ist und der TV auch, ist es dann möglich nur durch die TV Fernbedienung beides einzuschalten?
- Fernbedienung Power --> TV on --> htpc on (Stichwort WakeonUSB)
Also genauso wie mein AVR durch den TV an geht. Ohne den Umweg über die CEC-Geräteliste des TV's.So zu sagen eine 1-Tasten Lösung?
Habe ich so am Laufen ... mit 2 Samsung-Fernseher...
Constellation 1:
HTPC - CEC - Samsung 46" (Wohnzimmer, Modell kann ich dir schreiben wenn ich daheim bin, glaube 6er Serie)Constellation 2:
RaspB - CEC - Samsung 32" (Schlafzimmer, Rasp bleibt hier allerdings immer an, frisst ja kein Brot)HTPC im Wohnzimmer ist im S3 (LED blinkt, ist mir aber wurscht), du machst via FB den Fernseher an und der Weckt den HTPC... binnen ca. 12 Sekunden ist alles da
-
Weiß jemand schon ob die FTP Sources wieder funktionieren ?
Im Changelog steht leider nichts ... haber ich hege noch ein bisschen Rest-Hoffnung
-
sieht sehr nice aus, wird auf jeden Fall getestet
thx
-
-
-
-
Ich liebe Luxusprobleme bei über 12TB ...
Ich denke, die Performance geht sowieso mit befüllen des RAIDs in den Keller... daher ist es eh schwer später noch über eine anständige Performance zu sprechen.
Ich verstehe zwar nicht ganz warum es sich positiv auf die Performance auswirken soll wenn man eine ungerade anzahl an platten im RAID hat... aber du hast sicher recht... ist zu weit aus dem Zusammenhang gerissen.... und es ist auch nicht so, selbst wenn es einen Performance-gewinn gäbe... das dieser spürbar wäre...
-
Nein die Summe der FESTPLATTEN sollte UNGERADE sein.
Wie kommst du denn auf sowas ? -
Das Addon startet den Server, sobald Openelec gestartet ist und ich wollte ein Lösung, die eventuell schneller geht.
Also wenn du ein normales XBMC auf einem Ubuntu nehmen würdest könntest du das WOL Script ausführen sobald die Netzwerkkarte eine verbindung hergestellt hast...Oder du benutzt z.B. den XBMCCommander von iOS dort kannst du 2 MAC Adressen für das WOL hinterlegen... damit weckst du beide gleichzeitig auf...
-
Was kann das Addon ?
den Start verzögern bis der Server an ist ? ... Also er bleibt dann beim Boot-Splash stehen und wartet...
evtl. musst du Openelec als RW mounten um das script erstellen zu können
-
Ich hab dir da was schönes...
script weckt den server auf, wartet bis er verfügbar ist ... und startet dann openelec...
have fun
bearbeite: /etc/rc.local
Bash
Alles anzeigen#!/bin/sh # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. /bin/sleep 5 sudo /usr/bin/wakeonlan 6c:f0:49:01:42:1a exit 0
Entsprechend die MacAdresse anpassenAnschließend unter /usr/bin folgendes Script erstellen
/usr/bin/wakeonlanPerl
Alles anzeigen#!/usr/bin/perl -w # # $Id: wakeonlan,v 1.4.2.3 2005/01/27 16:03:54 jpo Exp $ # ######################################################################### use strict; use Net::hostent; use Socket; use Getopt::Std; use vars qw($VERSION $opt_v $opt_h $opt_i $opt_p $opt_f); $VERSION = '0.41'; my $DEFAULT_IP = '255.255.255.255'; my $DEFAULT_PORT = getservbyname('discard', 'udp'); # # Process the command line # getopts("hvp:i:f:"); if ($opt_h) { usage(); exit(0); } if ($opt_v) { print "wakeonlan version $VERSION\n"; exit(0); } if (!$opt_f and !@ARGV) { usage(); exit(0); } if ($opt_i) { $DEFAULT_IP = $opt_i; } # override default value if ($opt_p) { $DEFAULT_PORT = $opt_p; } # override default value if ($opt_f) { process_file($opt_f); } # The rest of the command line is a list of hardware addresses foreach (@ARGV) { wake($_, $opt_i, $opt_p); } # # wake # # The 'magic packet' consists of 6 times 0xFF followed by 16 times # the hardware address of the NIC. This sequence can be encapsulated # in any kind of packet, in this case an UDP packet targeted at the # discard port (9). # sub wake { my $host = shift; my $ipaddr = shift || $DEFAULT_IP; my $port = shift || $DEFAULT_PORT; my ($raddr, $them, $proto); my ($hwaddr, $hwaddr_re, $pkt); # get the hardware address (ethernet address) $hwaddr_re = join(':', ('[0-9A-Fa-f]{1,2}') x 6); if ($host =~ m/^$hwaddr_re$/) { $hwaddr = $host; } else { # $host is not a hardware address, try to resolve it my $ip_re = join('\.', ('([0-9]|[1-9][0-9]|1[0-9]{2}|2([0-4][0-9]|5[0-5]))') x 4); my $ip_addr; if ($host =~ m/^$ip_re$/) { $ip_addr = $host; } else { my $h; unless ($h = gethost($host)) { warn "$host is not a hardware address and I could not resolve it as to an IP address.\n"; return undef; } $ip_addr = inet_ntoa($h->addr); } # look up ip in /etc/ethers unless (open (ETHERS, '<', '/etc/ethers')) { warn "$host is not a hardware address and I could not open /etc/ethers.\n"; return undef; } while (<ETHERS>) { if (($_ !~ m/^$/) && ($_ !~ m/^#/)) { # ignore comments my ($mac, $ip); ($mac, $ip) = split(' ', $_, 3); if ($ip =~ m/^$ip$/) { if ($ip eq $ip_addr or $ip eq $host) { $hwaddr = $mac; last; } next; } else { my $h2; unless ($h2 = gethost($ip)) { next; } if (inet_ntoa($h2->addr) eq $ip_addr) { $hwaddr = $mac; last; } } } } close (ETHERS); unless (defined($hwaddr)) { warn "Could not find $host in /etc/ethers\n"; return undef; } } # Generate magic sequence foreach (split /:/, $hwaddr) { $pkt .= chr(hex($_)); } $pkt = chr(0xFF) x 6 . $pkt x 16; # Allocate socket and send packet $raddr = gethostbyname($ipaddr)->addr; $them = pack_sockaddr_in($port, $raddr); $proto = getprotobyname('udp'); socket(S, AF_INET, SOCK_DGRAM, $proto) or die "socket : $!"; setsockopt(S, SOL_SOCKET, SO_BROADCAST, 1) or die "setsockopt : $!"; print "Sending magic packet to $ipaddr:$port with $hwaddr\n"; send(S, $pkt, 0, $them) or die "send : $!"; close S; } # # process_file # sub process_file { my $filename = shift; my ($hwaddr, $ipaddr, $port); open (F, "<$filename") or die "open : $!"; while(<F>) { next if /^\s*#/; # ignore comments next if /^\s*$/; # ignore empty lines chomp; ($hwaddr, $ipaddr, $port) = split; wake($hwaddr, $ipaddr, $port); } close F; } # # Usage # sub usage { print <<__USAGE__; Usage wakeonlan [-h] [-v] [-i IP_address] [-p port] [-f file] [[hardware_address] ...] Options -h this information -v displays the script version -i ip_address set the destination IP address default: 255.255.255.255 (the limited broadcast address) -p port set the destination port default: 9 (the discard port) -f file uses file as a source of hardware addresses See also wakeonlan(1) __USAGE__ } __END__ # Script documentation =head1 NAME wakeonlan - Perl script to wake up computers =head1 SYNOPSIS wakeonlan [-h] [-v] [-i IP_address] [-p port] [-f file] [[hardware_address] ...] =head1 DESCRIPTION This script sends 'magic packets' to wake-on-lan enabled ethernet adapters and motherboards, in order to switch on the called PC. Be sure to connect the NIC with the motherboard if neccesary, and enable the WOL function in the BIOS. The 'magic packet' consists of 6 times 0xFF followed by 16 times the hardware address of the NIC. This sequence can be encapsulated in any kind of packet. This script uses UDP packets. =head1 OPTIONS =over =item B<-h> Displays the help information. =item B<-v> Displays the script version. =item B<-i ip_address> Destination IP address. Unless you have static ARP tables you should use some kind of broadcast address (the broadcast address of the network where the computer resides or the limited broadcast address). Default: 255.255.255.255 (the limited broadcast address). =item B<-p port> Destination port. Default: 9 (the discard port). =item B<-f file> File with hardware addresses of wakeable computers. For an example check the file lab001.wol in the examples subdirectory. =back =head1 EXAMPLES Using the limited broadcast address (255.255.255.255): $ wakeonlan 01:02:03:04:05:06 $ wakeonlan 01:02:03:04:05:06 01:02:03:04:05:07 Using a subnet broadcast address: $ wakeonlan -i 192.168.1.255 01:02:03:04:05:06 Using another destination port: $ wakeonlan -i 192.168.1.255 -p 1234 01:02:03:04:05:06 Using a file as source of hardware and IP addresses: $ wakeonlan -f examples/lab001.wol $ wakeonlan -f examples/lab001.wol 01:02:03:04:05:06 =head1 AUTHOR Jose Pedro Oliveira <jpo@di.uminho.pt> maintaining and expanding original work done by Ico Doornekamp <ico@edd.dhs.org>. =head1 COPYRIGHT Copyright (c) 2000-2005 Jose Pedro Oliveira. This is free software. You may modify it and distribute it under Perl's Artistic Licence. Modified versions must be clearly indicated. =head1 SEE ALSO For more information regarding this script and Wakeonlan technology just check the following address http://gsd.di.uminho.pt/jpo/software/wakeonlan/. =cut
-
Alles klar, wer sonst noch ein OVP Windows 7 Pro x64 braucht kann bescheid sagen...
-
Braucht jemand jetzt noch welche ? hätte noch... Win 7 Prof x64