UPDATE: Photos are back online! Thanks to Gabi from Romania for the copyright free photos!
Gira has a made beautifull Homeserver and FacilityServer. Unfortunatelly it’s quite expensive (about €2400,- for their Homeserver3 and the Facilityserver is even more). Is this device made of gold ?
The opposite is true, the Homeserver 3 exists of:
The Homeserver Hardware
- A cheap Mini-ITX VIA Epia ML6000EAG Mainboard with onboard 667Mhz CPU (or similiar, buy here)
- 128MB DDR 266Mhz RAM (or 512MB for the Facility Server)
- 64MB Flash (or 256MB for the Facility Server)
- A Linux Kernel 2.4.3 (ELinOS with Busybox, however the Gira software itself will run on any Centos or Redhat 2.6.x, even x64 releases!)
- A ISDN adapter (We don’t use that anymore in 2009, everybody is calling VOIP;) )
- Some Gira proprietary Software (hs_trans and hs_main executables)
The drive layout
After some research I also found the following:
A Flash drive is connected as a Master on the second IDE ATA controller (which means it is /dev/hdc) and exists of 4 partitions:
- /dev/hdc1 (2MB) – Boot partition with vmlinux (kernel) and loadlin
- /dev/hdc2 (20MB) – Linux/Operating System, mountpoint: /
- /dev/hdc3 (21MB) – (used to store the project?)
- /dev/hdc4 (21MB) – (for upgrades?)
The boot process and hs_trans and hs_main programs
When starting the homeserver, the vmlinuz from the Boot partition is loaded (via loadlin / DOS) and it boots the system into a Linux kernel, then a /etc/inittab startup script calls the /hs/bin/start/start.sh script.
The start.sh script does actually two things:
– It starts the hs_trans (Gira propriatary software) which automatically ends after a few seconds.
– Then it starts the hs_main (also Gira propriatary software) which is the main program.
Q. Why does is starts (and ends) the hs_trans program ?
A. This is to load the initial project on the Homeserver via a Serial Connection. When you buy a Homeserver or when you screwed up things, you need to connect it via a Serial connection to load a project. In a project you set the IP address and admin username/password, this information is needed to load later projects via the Network. Projects are configured (made) and loaded via the “Gira Expert” software.
After the first (serial) reload, it will end the hs_trans program and (as set by the start.sh script) load the hs_main program which is the ‘HomeServer software’.
Building your own Homeserver
So yes,.. in theory it would be possible to build your own Homeserver when you buy an Via Epia board with onboard processor (see above), two flash modules (I suggest 2048MB) and at least 256MB RAM or even make a Virtual Machine (VM) in VMware or XenServer of it.
Offcourse you are not allowed to run the propriatary hs_main and hs_trans executables or to use the Gira Expert software! I do not encourage or support illegal things, this is just for educational purposes. The following steps are just Theory (draft). You need a license or approval from Gira to do this stuff in practice.
10 Steps to build a home-made Home server
- Install your favorite Linux (this can be in a VM as well).
- Add a 2GB disk and connect it to the third IDE controller (or in VMWare/Xenserver choose the ‘third’ disk position’, this way it will be hdc or xvdc (in XenServer)
- Partition the 2GB disk as below, using ‘fdisk /dev/hdc’ (Or /dev/xvdc for XenServer)
Create 4 new Primary partitions (using the ‘n’ key)
– The first (size): +2048K
– The second (size): +xxxxM (whatever you want, but at least 22MB smaller then the total disk space!)
– The third (size): +10240K (if all works, you can experiment making this larger)
– The fourth (size): +10240K (if all works, you can experiment making this larger)Then set the correct Type for the partitions (using the ‘t’ key)
– The first, type: 1 (FAT12)
– The second, type: 83 (ext3) (or make it any other type, as long as you can install your prefered Linux on it)
– The third, type: 4 (FAT16 <32MB)
– The fourth, type: 4 (FAT16 <32MB)Now press the ‘w’ key to write the partition table. - Download and install the Gira Expert Software. After installing it on a Windows PC you will see a file named: FIRMWARE.DAT in the directory: C:\Program Files\Gira\HS+FS\exp232\EN\firmware. Unzip that file (it is a zip file with a .DAT extension).
- Copy the HSERVER2.TGZ file to your newly installed Linux server (using WinSCP or another tool) and untar it to /root/ using:
tar xvzf HSERVER2.TGZ
Copy the extracted “hs” directory to /
cp -r hs /
- Set firewalling and SELINUX off:
chkconfig --level 12345 iptables off
vi /etc/selinux/config AND SET SELINUX=disabled
- Because this would be your Home server and you want some flexibility, install the following system tools, libraries and compile tools (using yum or any other tool):
yum install lrzsz.i386 setserial.i386 unzip.i386 zip.i386 joe.i386 nc.i386 telnet.i386 busybox.i386 mlocate setuptool
yum install libjpeg.i386 libpng.i386 libpng-devel.i386 giflib.i386 giflib-devel.i386
yum install make.i386 gcc gcc-c++ kernel-xen-devel.i686 perl - If you are on XenServer (which means the devicename of the 2GB drive is /dev/xvdc) or the devicename of the 2GB harddisk is not /dev/hdc, then edit the following file:
vi /etc/rc.local
and put the following lines at the end:
(Make symlinks to fake the hdc device. Link it to your XenServer xvdc device or if you have another device, link it to the proper name)
/bin/ln -s /dev/xvdc /dev/hdc
/bin/ln -s /dev/xvdc1 /dev/hdc1
/bin/ln -s /dev/xvdc2 /dev/hdc2
/bin/ln -s /dev/xvdc3 /dev/hdc3
/bin/ln -s /dev/xvdc4 /dev/hdc4
- The Gira license is based on the MAC address of the Network Adapter. All MAC addresses/ranges of all Homeservers are hard-coded in the firmware. I noticed this because new homeservers would not allow to load old Firmware (because their MAC address is not yet coded in the firmware). When you have a virtual server it is not a problem to fake a MAC address, however on physical servers it could be harder.
The real thing is that the Homeserver does not read the MAC address from the hardware, but from the ‘ifconfig’ tool. So if you make a fake ‘ifconfig’ tool/file, it will just continue:
mv /sbin/ifconfig /sbin/ifconfig_original (Rename the ifconfig file in case we need it later)
vi /sbin/ifconfig
and insert the following lines to it:
echo "eth0 Link encap:Ethernet HWaddr XX:XX:XX:XX:XX:XX "
Replace XX:XX:XX:XX:XX:XX with a licensed MAC address. It’s not hard to get a Gira Homeserver MAC address when you know Gira is using Via mainboards and VIA claimed some “00:40:xx” MAC range. (Search query: +Gira +Homeserver +00:40:).
echo "inet addr:192.168.X.X Bcast:192.168.0.255 Mask:255.255.255.0"
echo "inet6 addr: fe80::3c1b:d9ff:fe30:c59c/64 Scope:Link"
echo "UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1"
echo "RX packets:41502 errors:0 dropped:0 overruns:0 frame:0"
echo "TX packets:33355 errors:0 dropped:0 overruns:0 carrier:0"
echo "collisions:0 txqueuelen:1000 "
echo "RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)"
echo ""
echo "loLink encap:Local Loopback "
echo "inet addr:127.0.0.1 Mask:255.0.0.0"
echo "inet6 addr: ::1/128 Scope:Host"
echo "UP LOOPBACK RUNNING MTU:16436 Metric:1"
echo "RX packets:0 errors:0 dropped:0 overruns:0 frame:0"
echo "TX packets:0 errors:0 dropped:0 overruns:0 carrier:0"
echo "collisions:0 txqueuelen:0 "
echo "RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)"
Replace the 192.168.X.X with the IP address of your Homeserver.Try if it will load the hs_main program:
/hs/bin/hs_main
Unfortunatelly there is no easy way to quit the hs_main program. You can login using a new SSH session and type “killall hs_main” or just hard-reboot the server.
If it does load, you can automatically load the program when booting:
vi /etc/rc.local
and add the line: "/hs/bin/hs_main" to the end of the file.
- The following is only needed for virtual machines since they do not have a serial port (ttyS1). A serial port is needed for the hs_trans program to load the initial project.
In VMWare you can add a serial port, however in XenServer that is not possible. You have three options:1. VMWare (only works with VMWare Workstation, not VMWare Player)
– Add two serial ports in to your Linux VM. Since it don’t works to map those ports to your local Windows PC, you have to create a new WindowsXP VM and also add one serial port to that VM.
Then you could connect the serial port of the Linux VM to the serial port of the Windows VM.
These two screenshots are the settings of the Linux VM
Below are the settings of the WindowsXP VM
Now boot both the VMs, install the Expert software on the Windows VM and load the initial project via Serial Port 1 (while running the hs_trans on the Linux VM).2. XenServer (options are limited)
– Use a virtual COM port driver on your Homeserver (Linux) and connect it via the network to your Windows virtual COM port (you need a Windows virtual COM port driver here). I didn’t tested this and don’t have any clue which software to use.- When you buy a Console switch you can connect the Homeserver to a port on the console switch (virtual drivers are mosly included). You can then connect (hard-wire) your Windows PC to that same port on the Console switch. I have a Aten SN0116 Console Switch and use this technique quite often. It should work with other console switches too, but please check if they have Virtual COM port drivers for Linux!3. If none of the above is working, this is your option
– The easiest: Copy the 3rd and 4th partition (hdc3 and hdc4) from someone else. The initial project which you normally load via a Serial cable is hold on these partitions, so if you copy that.. you skip the serial part. Use ‘dd’ or Acronis or Ghost tools to do the job.
Note: Create a new -empty- project in the Gira Expert software and only configure the following settings: IP information, admin password and EIB&iETS (ip) settings. Make sure to disable the interface/QuadClient under interface uncheck “Use QuadClient”.
Now you have a very small ‘initial’ project to load over the unstable Serial interface. Large projects will get many CRC errors and timeouts and finally the Expert software will tell you a weird error about ‘Project too Large’.
After you loaded the inital project, you can load all further projects via IP.
Ready!
If you did all the above steps, in theory, it should be possible to create your own Homeserver.
Update 14-november-2009: In the ‘old’ 10 steps, I suggested to install Linux on the /dev/hdc drive. That brings several problems because the hs_main program seems to rewrite the partition table of the /dev/hdc which also corrupts your second partition on which you installed Linux (even when removing “sfdisk”). This behaviour happens when loading via the network, not when loading via Serial.
So I changed the previous steps because it’s much easier to install Linux on a separate drive and ‘add’ a /dev/hdc drive so the software still uses the /dev/hdc to store projects in it’s own format and it can do with the partition table of the /dev/hdc drive what it wants, without corrupting the your Linux installation (which is on /dev/hda or another drive).
@Roel
For some very short time period you posted in the “technical” section a report about “How to install HS$4”.
What was the reason for taking it off?
I guess many would be interested in Hearing from the intial master how to do.
Thanks a lot!
http://www.roelbroersma.nl/forums/topic/vm-downloads-xenserver-virtualbox-vmware
that rulez!
I got some problem with updating the HS from 4.1 to 4.2.
The HS got stuck in endless reboot. Has anyone had the same problems or can anyone give me a hint why this is happening?
Transfering a Project is not working, because Experte get no connection to HS.
To test the Firmware update I took the “original” Image from Post 1604 I think.
Sadly the Download from Post 1993 isn’t working anymore.
With HS4.1 the HS was working.
@ omer
Die IP zu ändern geht anscheinend nur im Experten. Standard ist glaube ich ja die 192.168.0.150 (oder 192.168.0.11?).
Ich hatte es im HS direkt probiert, die Eingabe klappt auch, nur übernimmt er die IP nie, obwohl der behauptet, es wäre die neue.
Was kannst Du also tun?
Ändere Deinen IP-Adressbereich um in die 192.168.0.???. Wenn Du dies getan hast, bekommst Du eigentlich sofort mit dem Experten eine Verbindung zum HS. In diesem kannst Du dann die IP ändern und die Änderung wird hier auch angenommen. Da könntest Du dann wieder eine IP aus Deinem alten Adressbereich nehmen und es sollte laufen.
Ich habe auch versucht, das zu vermeiden, aber letztendlich blieb nur diese Möglichkeit, da nichts anderes funktionierte.
Thank you for the Image in the post 1993, but I get an error in my ESXI 5.5 then I start the VM.
——
Das Starten der virtuellen Maschine ist fehlgeschlagen (Fehler -18).
——
VMWARE -Time Keeping: Did you resolve problem of HS universal timers on VMWARE? In my system HS timers/schedulers won’t work or work after a random time (long delay).
the download on File Dropper is 0kb – can you reupp please?
After upload first project, problem disappear,Regards
Slawek
Hi Dex
During the boot HS4.2 from Vmware Image i have error ../hssrc/hs_eib.py e line 977, in addSysVar IndexError: list index out of range.
Any suggestions?
Slawek
VMWare Image Homeserver4 Version 4.2 based on Image from Post 1605
http://www.filedropper.com/hs4
wie kann ich die IP des HS4 aus dem VMware Image ändern? 192.168.1.10 ist mein Host :)
Gira HS 4.2 VM Image would be realy nice!
Pleaseee! :-)
Gira Update 4.2 is available…
Someone will Update the VM Image ?
Update Gira HS 4.2!
Wunderharke1981: i would have a look at another solution: install esxi on the mac mini and then use the prebuilt image from 1604… this way, you can make snapshots any time and don´t risk to have problems after an update…
…on Ubuntu 12.04 LTS, Precise Pangolin, consuming around 6-8W power on a mini-pc.
Thanks for the hints.
What I did is convert the project in Experte 4.0, from Expert 2.8. Seems some fields need adapting. Then tried to load it to the device using the HS2/HS3 device settings or Facility Server setting in the Project setting. That failed.
Reading through some post again, i found that very probably the soft linking that worked in HS3, v2.8.120427, linking my 4GB USB drive to /dev/hdc did not work anymore in the new fw, and that people used hexedit to change it in the app. So tried that lo and behold: i can update the installation now as well using the Facility server setting as before. Running HS4 4.0 v4.0.130325 now.
@Wunderharke
http://www.gira.de/service/download/index.html?id=1815
Version 2.8, Stand Juni 2012. Größe 143.171 kB.
@rickcn
Did you converted project from experte 2.8 to 2.10 ?
Checked HS4 under project settings ?
Look #1545 and check partitions…
Update:
Results from the upload of a project using Expert 4.0.130606
Project ID: 20140609005302145
Log on… [ip-address]
Open Connection
Connection Closed
Transfer Completed
Version Calibration successful
Project too large
* Project rejected by the device….
Even if the project is almost empty this happens…
The HS3 was configured as a facility server. The upgrade shows it as a Homeserver 4 (***), like the virtual machine does from post 1605. The same file worked on the HS3 server, but this one and an empty file do not get accepted (yet) by the upgraded server with HS4 V 4.0.130325.
Had a major win today. I installed the Expert4.0 and wanted to upgrade my QC which I have running with an 8Watt low-energy Ubuntu HS3 server (following the instructions in the first part of this blog) with the new features that are available within 4.0 (e.g numbers/count of items per menu, LED’s to indicate activity in menu etc).
It works fine on the Virtual image of post #1605 and I can upload my upgraded HS3 project actually on this virtual HS4 server and it looks great. Not all works like the energy lamps or the weather forecast, but the things I wanted to work are working fine.
However, loading this now unto the HS3 server requires that the firmware for Gira HS3 2.8 is upgraded to (I guess) 2.10. Reading the forum, that would not work easily on the HS3 server.
However (drummroll), there are many hints here in the blog that you should try to unpack the firmware, and unzip the resulting initrd.gz file to get to the new hs_main, hstk and eibusb. So that is what I did, and I copied those files over to my HS3 directory. Of course, when starting the server it did not work as it complained a lot about wrong and missing python files. Now my python version is 2.7 which worked fine with the HS3 hs_main file. However, with this one, it complained about a _Imaging C file missing. Google was my friend and I found out that I needed to set the path correctly.
So I copied the starts.sh script which comes with the HS4 server and is located in the /scripts folder. I edited the PYTHONPATH variable in the startup file to reflect the path to my 2.7 version of Python. This did the trick.
The HS4 server starts… but I cannot upload a new project ;-( the HS Expoert 4.0 just does not make a connection to the server… not sure what is wrong so far. Keep you all posted.
Hallo. Ich möchte für meine Installation jetzt auch den Homeserver nutzen und habe einen MacMini early 2008 dafür zur Hand. Platte ist ne neue drin und der Intel Dual Core sollte reichen. Jetzt meine Frage: Es war gedacht ein CentOS zu installieren und dann die HS Software drauf zu installieren…. Ich kann bei GIRA kein HS3 mehr herunterladen. kann ich auch die HS 4 nehmen? Gibts da auch ne Anleitung?
you don’t need to modify the nic mac any more, only the system serial of the main board
i had it running in late 2012: post # 1136
Anyone has succeded to install on Fujitsu DS3003 motherboard?
^^ wird nur komisch, wenn jemand mit der Original Seriennummer das gleiche Plugin schonmal gekauft hat -.-
Kann man bedenkenlos Plugins kaufen die auf die Seriennummer gebunden ist?
Hello,
I have a vmware image running under virtualbox. Works nice this way. But I need to change my serial to my facility server serial. I’d like to use the virtual version for testing purpose.
THe issue is now, that changing the /usr/sbin/dimicode does lead in reboots. Reading the forum I tried to change the vbox serial and mac equivalent via virtualboxmanager. Still reboots.
Does anyone have the steps necessary avaliable to change the serial. I am not sure what I am doing wrong.
Thanks!
@RalfG: congratulations, you made it. Thanx for sharing the last steps which made it work.
Now your real work starts. For a nice visu i skiped the quad client, and used visu designed in experte. As a client a have an old iPad screwed onto the wall using a “vogel” aluminium case and due to html-client sucks i run a RDP-Client on the ipad connecting to a windows-VM where i host “hsclient.exe” which you have to extract from experte.
There exist also some net-PCs with the size of an iPad which you can power via Power-Over-Ethernet.
@Wolfman
I finally succeeded in uploading an initial project using a null-modem cable. Different baud-rates work, but I noticed that it’s important to use a null-modem cable with full handshaking and to set the “flow control” of the serial port to “Hardware”.
Thanks a lot for helping me out!
@easy
Besuch mal das KNX User Forum, dort findest du im DIY Bereich eine detailierte Anleitung wie man das Wiregate virtualisieren kann.
Läuft bei mir jetzt schon seit ein paar Monaten problemlos, inkl, TP UART um die Verbindung an den BUS zu bekommen.
@easy: erstelle mal ein image vom wiregate und lade es hoch :)
vergiss aber nicht die ssh keys und alle personalisierten daten zu entfernen!
hi, hat schonmal jemand versucht das wiregate gateway zu vietualisieren?
when the HS boots it starts hs_trans and waits for a serial connection for about 5sec. After that it starts hs_main – which is the homeserver binary. Therefor you have to restart the homeserver when gira expert asks you for that because that is the only moment when the serial listener runs.
I don’t know if your simple nullmodem cable is enough. Also check if you use the right serial port, handshaking, baudrate. I think my baudrate was 38400 but i am not sure. I only remember it took hours or days on VMs and i did it on the second try on real hardware. That was a lot easyier – so maybe try it using a cable with handshaking connectors and on a old PC / notebook with dedicated serial.
@Wolfman:
Thanks for your answer! On the forum, I found people stating two different baud rates (115200 in post #1249, and 38400 in another post ). I tried both (with and without hardware flow control). Since I don’t have a real COM-port on my laptop with the Experte software, I use a USB-to-Serial adapter (probably not the best way-to-go :-)). Would you recommend lower or higher speed settings? I would assume lower/slower/more stable?
My cable is a null-modem cable. Apparently, you have different types (see following URL).
http://www.pccompci.com/rs232-cable-technology.html
I have tried a “simple” null-modem cable, and a cable with “partial handshaking”. Just crossing Rx/Tx is not enough according to post #401 from Marcus.
My project is really minimal as you indicated. I didn’t know that I had to restart my HS manually. Have tried it a couple of times, but I’ll continue today a little more.
The HS displays “NET NET NET: ” with a valid MAC Address so that should be ok.
@Ralf:
search the forum if you have set the right Baud rate. (i had also trouble). it doesn’t work with a serial cable, you need a NULL-Modem cable, that is a serial cable where Tx and Rx pins are crossed over.
Serial connect is very instable, so just use an empty project without visu or quad. just empty with 1 admin user and IP-Adress configured.
start transfer on expert software and when it promts “restart” then restart your Homeserver. after the boot it should receive data.
It only works when you have spoofed a valid MAC-Adress on the homeserver. read the boot messages “net net net” and a MAC address is good, “Nicht Berechtigt” is bad (means not a valid MAC adress).
I have also had a couple of tries to make it work, keep going!
@Dennjo: You can NOT install HS4 on an EPA ML-600 Mainboard. They changed network drivers in HS4. HS4 should work on an
Fujitsu industrial Mainboard which costs €160. And it is not as easy as it was with HS3. But there is almost no difference
between HS3 and HS4. So the best idea is to use HS3 on real hardware. Only on VMs HS4 makes sense.
Dennjo, HS4 kann man NICHT auf einem EPA ML-600 Mainboard installieren, HS4 auf Hardware ist weit komplizierter und der Unterschied zu HS3 ist vernachlässigbar, bleib bei HS3 wie ich.
Hi everyone,
I’m building a HS3 on a Via EPIA ML-6000EAG motherboard with 512MB memory and a 40-pin Transcend 1GB DOM as slave on primary IDE.
After reading this web page and all the forum topics, I started with my own homeserver. Thanks to all the wonderful information, I thought it was ready after a couple of hours. The HS3 appears to run normally, but I can’t get the serial transfer to work! The only thing I can think of is the null-modem cable (I tried multiple cables). I’m really out of new ideas on how to solve my problem!
The EPIA ML-6000EAG has 1 COM-port on the back, and one connector on the motherboard. TTYS00 is IRQ4/3F8 and TTYS01 is IRQ3/2F8, but I’ve tried the reverse settings too.
When I check all the messages during boot, I don’t see any error messages. Everything seems to be normal. I even tried multiple firmware versions (v2.5, v2.8 and v4.1). When transferring an initial project with Experte, it says:
* Project ID: XXYYZZ
* Project is being packed …
* Waiting for a connection …
* Restart device.
But nothing happens on the HS3.
I have correct MAC (000AB302….) set with EEPROM, changed some serial numbers with SMBCFG to the same MAC address, created 4 primary DOS partitions (8MB, 50MB, 450MB, 450MB) with FreeDOS, copied the extracted firmware to the second partition, and it launched perfectly up to the three double-beeps.
Can someone help me with this, please!
Kind regards,
Ralf
Hey Wolfman!
Finde es super dass du dich hier so arrangierst. Ich hab seit ca. 1 1/2 Jahren den HS3 auf nem ML600EAG bei mir zu Hause am werkeln. Läuft wunderbar das Ding! Ich weiß, never touch a running system, aber ich möchte das “step up” wagen. Hast du ne Ahnung wie ich ohne Weiteres das Teil auf den HS4.? hochziehe? Projekte usw. kann ich alles neu machen, sind grad im Umbau, also nicht so ganz schlimm. Hab glaub ich zwei 1GB Flashs draufstecken mit 512MB oder 1GB RAM. <- Damit isser auf jeden Fall schneller (gestoppt) als das Original Teil vom Schaltermacher. Wäre super wenn du auf meine Frage Antworten hast.
LG Dennjo
@max999:
ich habe 2 flash disken gekauft, suche z.B: nach “Transcend 128MB IDE Flash Module” gibts so um €7-€12
die 40pin version kannst du direkt aufs mailboard stecken, mußt dann aber mit dem mitgelieferten stromkabel rumfummeln, daß du die 5V irgendwoher bekommst (hab gemessen und die pins irgendwo dazugesteckt).
bei meinem wyse 941 war eine 2,5″ ide platte und somit auch der 40pin auf 44pin adapter, wenn du auch so etwas hast, kannst du dir die 44pin version kaufen, da sind die stromstecker gleich am IDE stecker drauf.
ich hatte die 40pin version, die hab ich einfach anstatt der festplatte in ein altes usb2.0 festplattenghäuse gesteckt, damit ich es von meinem notebook aus formatieren konnte.
wenn du es gleich 2mal machst, wie ich dann hast du gleich ein backup, falls dir in 10 jahren die hardware eingeht – dann hast du sicher keinen dunst mehr, welche schritte notwendig waren.
Alles klar?
@Michael
Du musst in Virtualbox auch die richtige MAC eintragen, sonst bekommst du keine Verbindung zum virtuellen HS.
Hallo,
Image aus dem Forum läuft in Virtualbox
IP VBox 192.168.56.1 kann ich anpingen
mit IP der Vbox bekomme ich keine Verbindung zum HS.
IP der HS 192.168.0.11 erreiche ich nicht
Was mach ich hier falsche?
Danke im Voraus
@Wolfman
Danke für Deine Info, 100% habe ich aber leider nicht folgen können.
1.) Du hast Dir eine IDE Flash Disk gekauft 128MB bzw. schon gehabt (Hast Du zufällig den genauen Type – damit sie sicher funktioniert)
2.) Diese hast Du dann mit einer alten externen USB Festplatte angeschlossen
Oder sitze ich hier auf der Leitung?
@max999: ich habe auch einen Wyse WT941GXL und die selben Probleme gehabt. ich habe es umgangen, in dem ich die von meinem 2. Homeserver gedachte IDE-Flashdisk (128MB um € 7,90) ausgeborgt habe um FreeDos zu booten und von dort aus zu installieren. Erstmaliges Bootsetup hab ich mittels einer ururalt IDE USB Disk erstellt, dessen HDD ich gegen die IDE-Flashdisk getauscht habe.
Hi!
I need help with the HS 4. I have the HS 3 up and running. I’m using ubuntu 12.04. I have Done as the 1-10 point list says. But i got stuck with some Python 2.6 missing and keine berechtigung . Has anybody get thrugh this?
/HS 4w
Ich habe mir den Wyse Thinclient WT941G zugelegt. Läuft prima, jedoch schaffe ich keinen USB Boot! – Er kennt verschiene USB Sticks, CD-Roms – bootet jedoch nicht von denen. Bios Einstellung sollte stimmen. Hat jemand ähnliche Probleme?
@JAN
Not possible.
Es gibt ja eine Menge Plugins für den Homeserver bei welchen man die ID braucht.
Kann man diese auch mit einem “VM-Homeserver” kaufen?
@Ich:
Wenn sie programmiert ist einfach ganz normal per USB den HomeServer dran hängen. Habe es mit einer Hager probiert. Schau mal im Gira Experten in der Hilfe, da stehen auch alle unterstützten Modelle mit denen es 100 Pro geht.
Hi guys,
is it possible to somehow download the existing configuration from HS? My harddrive with existing project is gone and customer wants some additional job. SO i dont want to rebuild whole pogram from scratch.
Thanks a lot.
Jan
Narzędzia do vt6103
http://www.viaembedded.com/servlet/downloadSvl?id=21&download_file_id=117
@frupps
Das wäre ja perfekt. Benötigt der USB Anschluss eine besondere Einstellung oder nur Kabel dran und losgehts ?
Welche USB Schnittstelle hast du verwendet ?
@ich:
Habe es mit einer non Gira USB Schnittstelle erfolgreich getestet. Sollte mit Gira auf jeden Fall auch gehen.
Frage zum IGEL 3210 ThinClient: Funktioniert das auch in Verbindung mit einer GIRA USB Schnittstelle ? Habe das bisher nur mit (m)einem IP Router getestet …
Vielen Dank für euer Feedback
Any ideas about the mac change im doing something wrong in syntax?
@aris:
rename firmeware.dat to firmware_dat.zip
inside you find what you are looking for.
you can download experte 4.1.1 und use HS3 from firmware.dat.zip
HS2 and HS3 projects should be compatible (in experte you can configure HS2/HS3 or HS4). HS4 is not compatible with your hardware.
i install 2.1 in my pc and try to find the hserver2.tgz but nothing of course i want the 4.1
everything i do is ok until now ?
i type eeprom -km XXXXXXXXXX and the feedback is
0 command execution success
1 command execution fail
what can i imagine did i t enter the mac address or not
the Hserver2.tgz is in the firmware.dat ? still missing this file
@aris
You have to Fake the MAC address with eeprom.
Check the Forum, I think it also exists an english tutorial.
And why do you want to use Version 2.1? There is already 4.1.x
PLEASE HELP ME (after alot of read , work)
Real mashine via eipia me6000 4 partitions
1 Freedos1.0
2 HS files EXPERTE 2.10 firmware dat (I dont find Hserver2.tgz)
3 empty
4 empty
im o D: nd type dolinux and after of ………………………………. loding etc etc the madhine reboots and i cant pause the screen to read the problem only a SYSTEM DOWN and after reboots please tell me what can i do
Hello Wolfman once more,
If i check INITRD with Bbedit, i can find a lot of pointers towards python files in the /hs/bin dir. But there are only 3 files there; eibusb, hs_main and hstk.
Do i miss a lot of files?
Hello Wolfman,
I have a MDT Ip interface, not the router version. It works nicely with ETS, but not within the homeserver. The IP-inerface cannot be configured much, exept for changing it’s ip address from DHCP to STATIC and v.v.
Just to be sure: i do configure in expert the EIB connection, and not the iETS connection? (That one is working nicely on my Hardware HS2 for connecting with ETS…)
brgds
do you have an KNX IP-Interface or an KNX IP-Router?
in your IP Router and Gira expert project config, the IP-Router MULTICAST Adress MUST stay at 224.0.23.12 Port 3671
IP-Adress of KNX IP-Router and HS can be set individually, e.g. 192.168.1.44 and 192.168.1.42 i have a weinzirl 750 IP-Router and the netmask ist hidden in a field “subnet” which is 255.255.255.0 in my example. Also check your IP-Router settings if packets from KNX to IP are “forwarded” or “filtered” and vica versa. i had to change “filtered” to “forward”
Hello,
Does anybody has a solution for connecting a virtual HS4 server to the EIB network via an IP interface with the following problem;
After entering the ip address of the IP interface, the HS4 comes back after reboot with the following msg when i want to send some telegram via the web interface;
“File “./../hssrc/dr_eibnet.py”, line 83, in EIBSendMSG
TypeError: getsockaddrarg: AF_INET address must be tuple, not NoeType”
I cannot find that file on the server to change something manual or so.
Does someone has a solution for this problem?
@stef: download experte 4.0 or 4.1 from gira homepage
under firmware you’ll find a HS2_hs3 and a HS4 directory where the firmware is located. unzip it.
@aris550: read this page – yes it is a lot – so did i and now i am helping others. search this page for eeprom.exe and rufus. you need to change the mac address with eeprom.exe and create a bootable usb stick with rufus. then you can partition your hdd and install freedos + the firmware. read more on this page. i can only give you a starting point. better than a HDD is a IDE Flash disk, 128MB is enough and costs only € 10,-
hi @wolfman i just bought a Via Epia ME6000 with 512 Ram and a 40GB HDD please tell me what can i do first because its not clear for me im from Griechenland The tutorial is in german an my english is poor. I appreciate your help thanks alot.
hi!
Does anybody knows where I can download the hs3 software?
I have the hs4 software, but after unzipping the firmware.dat I don’t see the file hserver2.tgz
@aris550:
1) Hardware solution
some (not all) thin clients like wyse winterm 941 gxl have a via epia ML6000 mainboard. this is the same mainboard like the HS3.0
due to copy protection which is based on the mac adress you need the eeprom.exe to change the mac adress and fake a real HS3.0.
then you have a 1:1 HS3.0 which is also firmware update able (VM solutions are not firmware update able without tricks)
you need freedos and the firmware from experte to create the initial installation to create a bootable HS 3 (since you don’t have the original disk-images).
2) Virtual machine solution
a completle different thing. you don’t take the 1:1 diskimage (from firmware folder in experte). Instead you install a clean linux image and then try to install the binaries hs_main, … and make them runnable with tricks.
3) some people (especialy those who want to run HS4) take the Virtual machine solution and try to make them runnable on native hardware. But that solution is only for people with advanced linux knowledge, and is not updateable easy. (as easy as it is with the HS3 solution).
if you just want a Homeserver with less amount of time:
EITHER download a working VM and start it – finished.
OR buy a via epia mainboard / thin client and install HS 3.0
you will find a german and a english tutorial for the HS3.0 solution here in the forums.
the difference between hs3 and hs4 is mininininimimal. HS 3 is all you need.
Im litlle comfused, With the Via epia or thin client with board like that and EEPROM tool from via change the mac adress an load the EXPERTE and its runs ? many people here says on free dos many on linux. help pleaase with the correct steps thanks alot
@curiousOne: i just re-uploaded HS411VHD.7z.004
have fun!
@aris550: those old via mainboards are no longer produced. that’s why they make HS4.0 now.
but any old thin client is good enough. and if it is broken, just spend another €30 at ebay. works fine for me and i have 2 spare parts.
Even when you have to spend another €30 for postal service that is still very cheap compared to anything else.
Please Help !!! I want to make my own homeserver but i dont find Via epia motherboard in my country, everything i found on internet are used and thin clients who had win xp and is to expensive to start the project any ideas how to find VIA motherboard or anything else like mini pc or car pc ?
*********************************************************************
SPRZĘT:
1) Płyta główna EPIA (najlepsza M10000, takie jak w orginale)
– port IDE1
– Port RS232
– Port LAN ( obsługujący procesor VIA VT6103)
2) RAM min. 256MB
3) Obudowa z zasilaczem do mini iTX/ATX
4) Dysk Flash IDE (Transcend IDE FLASH module 1GB 44pin Vertical + Kontroler SMI (TS1GDOM44V-S))
*********************************************************************
ZABEZPIECZENIA:
1) Procesor obsługujący port LAN na płycie głównej, musi mieć odpowiedni MAC adres,
rozpoczynający się od “00:0A:B3:02:xx:xx”
2) Dysk Flash-IDE musi być włożony do slotu IDE0 jako SLAVE (Primary i ustawiony jako SLAVE), 1GB (wystarczająca pojemność)
*********************************************************************
ZMIANA MAC ADRESU NA PŁYCIE GŁÓWNEJ:
1) Ze strony FreeDOS pobrać : http://www.freedos.org/download/download/fd11src.iso
2) Uzyć programu FreeISOtoUSB z lokalizacji np: http://www.freeisotousb.com/
aby nagrać bootujący Freedos na Pendrivie USB ( ok. 1GB)
3) Użyć programu do zarządzania pamięcią eeprom w mikrokontrolerach VT6103:
c:\eeprom.com -km 000AB302xxxx [ENTER]
gdzie “xxxx” zamieniamy na dowolne cyferki z zakresu “0123456789abcdefgh”
*********************************************************************
UTWORZENIE DYSKU FLASH IDE:
1) Dysk musi zawierać 4 partycje
partycja 1, typ FAT 12, pojemnośc ok. 100MB, partition primary, bootowalna,
partycja 2, typ FAT 16, pojemnośc ok. 150MB, partition primary,
partycja 3, typ FAT 16, pojemnośc ok. 350MB, partition primary,
partycja 3, typ FAT 16, pojemnośc ok. 350MB, partition primary,
2) Uruchamiamy Naszego Pendrive z freeDOS na naszym kloniku. będzie on widoczny jako dysk c:\
zaś partycja 1 jako dysk d:\ itd…
3) Uruchamiamy program Fdisk.com
i ustawiamy partycje na dysku FlashIDE jak wyżej.
– po stworzeniu partycji ponownie uruchamiamy nasz komputer
4) Uruchamiamy naszego Pendrive z freeDOS na naszym kloniku. będzie on widoczny jako dysk c:\
zaś partycja 1 jako dysk d:\ itd…
– Partycję 1 formatujemy jako partycję bootowalną , i umieszczamy tam sam system freedos,
czyli command.com i kernel.sys
C:\format.com d: /u/s
– Partycję 2 formatujemy , i nic na niej nie umieszczamy
C:\format.com e: /u
– Partycję 3 i Partycję 4 nie formatujemy , nic znimi nie robimy
*********************************************************************
Plik:
wgrywamy pliki z pierwszej partycji orginalnego HS na pierwszą partycje naszego HS
*********************************************************************
Z programu EXPERT za pomocą dodatkowego oprogramowania do zmiany firmwaru wgrać za pomocą kabla
RS232NULLMODEM wgrać firmware.dat do naszego HS
DZIAŁA !!!!
@wolfman4.0 file HS411VHD.7z.004 on http://ge.tt/5semehP1 is not possible to download ( file not found ! ). Can you please upload it again. ( related to post 1930)
@Juno: thanxx for porting the image to 4.1.1
you can connect earlier via network when you also edit /etc/network/interfaces
there is the ip adress during the unix boot configured.
I keep it there the same as in the HS config. hs_main changes the ip adress (30 sek after the boot) to what ever you configured in Experte software.
I have uploaded a new version of the Hyper-V VHD Image (4.1.1) yesterday. the link is listed there: http://www.roelbroersma.nl/index.php/forums/topic/vm-downloads-xenserver-virtualbox-vmware
while i uploaded, some people already downloaded files. Due to 30 day limit of an anonymous account i had to reupload the files (at the same link). Maybe you have been one of the unlucky people.
Please try again downloading all 6 Files (i could shrink it to 298MB) it should work. If not please report that again.
bei diesem download #1928 funktioniert der download der datei 004 nicht…
vmware image – hier:
http://www.roelbroersma.nl/index.php/forums/topic/vm-downloads-xenserver-virtualbox-vmware
Experten 4.1.1: Für Eval siehe Hersteller
@Juno
Hast du ein Image mit dem hs4 und dem experten 4.1.1?
Danke
Tim
danke fuer das debian vmimage – nun läuft es auf phy. Rechner (U800 atom) mit eigens installierter debian version 6.x
Nun funktioniert auch das ganze mit dem Android (Experten Projekt: komplett neu angelegt)
# Hier ne Kurzanleitung
#Partitionierung:
sda1 swap 1GB
sda2 /root 5,1GB
sda3 1049MB – nicht verwenden
sda4 1049MB – nicht verwenden
# Nun die Dumps erzeugen – vorher /etc/inittab die letzte zeile auskommentieren und reboot
dd if=/dev/sda3 of=sda3.dmp bs=4k conv=noerror,sync
dd if=/dev/sda4 of=sda4.dmp bs=4k conv=noerror,sync
# Welche Files braucht ihr noch – einfach mit tar -cvf name ./xy packen und mit tar -xvf name enpacken
/etc/inittab
/scripts
/hs
/usr/sbin/dmidecode (nicht vergessen ausführbar machen
/usr/lib/python/PIL
# Was müsst ihr nach der debian 6 installation nachinstallieren
apt-get install python-imaging python-serial python-numpy setserial lrzsz
# Netzwerk konfigurieren (ev. beim nächsten 4.4.1 experten upload neue IP vergeben)
# Einfach mal in einer VM ausprobieren und dann auf phy. Rechner migrieren – ev. musst ihr bei einigen Serverfehlermeldungen unter /etc/modprobe.d/blacklist oder so einige Sachen blacklisten
Viel Spass mit hs4, experten 4.1.1 und android
@ziegel, ich habe das gleiche Problem mit dem TKS-IP-Gateway. Hat einer da schon eine Lösung?
@mike aus 1656:
liest du noch mit? ich bekomme keine kommunikation zwischen hs und tks-ip-gateway zustande. alle parameter im experten und gw-assistenten scheinen korrekt. das gw selber funktioniert auch ansonsten einwandfrei.
du hast etwas von einer fehlenden lib geschrieben… kannst du mir evtl. weiterhelfen?
*vms
You don’t need a hardware serial port, just make it virtually between the vas.
Is there someone who has a VMWare image with Gira Homeserver 4.1.1 from Dec 2013? My ESXi host doesn’t have a serial port for a first upload of the configuration.
@timberland:
i didn’t create the debian image, i just ported it to hyper-v. but as far as i know (and some people wrote it here) the copyprotection is just based on output of the command “ifconfig”.
search for “ifconfig” and you’ll find some posts where it is described to rename ifconfig and fake it with a shell-script which echos the first output-line of ifconfig.
for example it must be something like this:
cd /sbin (or where ifconfig is located, test it with “which ifconfig”)
mv ifconfig ifconfig.orig
echo “echo eth0 Link encap:Ethernet HWaddr 00:xx:xx:xx” > ifconfig
chmod+x ifconfig
whatch out for correct uppercase of the letters in mac adress
invest 50hours in reading this page and you’ll get a free homeserver.
everything you need is here, VM and real hardware, HS3 is good enough, and take your time and read everything
@mg
you don’t need to port the VMware Image to hardware. Just buy a Via-Epia ML-6000 mainboard or Thin client based on that mainboard like the wyse winterm wt-941GXL and download EXPERTE 4.1 software directly from gira homepage. extract the files from HS3 (not HS4) firmware.dat (open with 7zip). search this forum for “eeprom.exe” which you need to change the mac adress to one which is working. (download pdf from post #1082)
Everything you need is on this html page. just take your time and read, read, read.
also there are pdf instructions here in the forum
Hallo Homeserver Community,
Würde mir gerne einen Homeserver aus diesem VMWare Image erstellen.
Welche Hardware würdet ihr mir empfehlen?
Hätte an das folgende Teil gedacht:
HP ProLiant MicroServer N54L, Turion II Neo N54L, 2GB RAM, 250GB
http://www.amazon.de/dp/B00AHQUX86/ref=asc_df_B00AHQUX8617062218?smid=A3JWKAKR8XB7XF&tag=geizhals1-21&linkCode=asn&creative=22494&creativeASIN=B00AHQUX86
Was meinen die Spezialisten dazu?
Danke im Voraus für Eure Info!
mfg
mg
@wolfman
im debian image kann man das nicht? würde gerne meine offizielle macadresse verwenden.
@timberland:
in den Einstellungen des Virtuellen Computers bei den Eigenschaften der Netzwerkkarte. Also nicht im Gast-System sondern am Host.
Hi,
kann man beim WMWare Image die Macadresse ändern?
Hat doch funktioniert mit dem VHD hier mal eine kleine Hilfe:
1. Hyper V Installieren
2. Neuen Virtuellen Computer erstellen und die HDD mit einbinden
3. In den Einstellungen vom Computer die Netzwerkkarte löschen und eine “Alte Netzwerkkarte” hinzufügen
4. Einloggen im Image root / passwd
5. In die Konsole eingeben: ifconfig eth0 192.168.X.X netmask 255.255.255.0 broadcast 192.168.X.X
6. In die Konsole eingeben: route add default gw 192.168.X.X
“X” bitte ergänzen.
Dann das Projekt mit Experten an 192.168.X.X übertragen und dann ist der Server auch unter der Adresse verfügbar. :)
Vielleicht kann noch einer ein VHD Image mit der Version 4.1.1 erstellen und hochladen.
Hallo
ich hab jetzt manuell upgedatet von 4.0 auf 4.1. Jetzt funktionieren die Diagramme und ich meine die Zeitschaltuhren auch nicht mehr.
Hat einer nen TIP?
Gruß Sebbi
@All eine dumme Frage.
Ich habe das VHD Image importiert, wie kann ich am besten die IP Adresse ändern, da ich mit dem VHD ja nicht den localen Com Port verwenden kann. Unter dem Hyper V steht bei Status Netzwerk keine Kommunikation.
@frupps:
ja, seit es die Anleitung gibt, gehts etwas einfacher. Mit fertigen Images noch besser. Ich mußte früher starten und von einem frischen CentOS mal serial to serial innerhalb 2 VMs zum laufen bringen, das geht nicht mit jeder VM-Software.
Rein die original Hardware zu clonen war ein klacks dagegen. Trotzdem interessant, die HS40 ports und andere Ideen zu verfolgen.
50h lesen?
Wenn man etwas fit in Sachen Technik ist und es mit Hilfe der Anleitung von Heini im Forum macht, ist es eine Sache von 30-60min…
@Ich: wenn der IGEL 3210 ein VIA EPA Mainboard mit 8235 oder 8237 Southbridge hat (z.B: IGEL 3/4), dann kannst du das Image aus dem Firmware.dat aus dem HS2/3 Verzeichnis von Experte aufspielen. Ist alles auf der Girahomepage zum download. Ist eine spielerei, mußt 50h investieren hier zu lesen.
@ICH
Schau ins Forum, da ist alles erklärt und auch teilweise hochgeladen…
Kann vielleicht jemand ein Image für einen Igel 3210 Thin Client zum download bereitstellen ? Hab mir gerade so ein Ding bestellt und wenn ich jetzt noch das passende Image hätte …
Auf (m)einem VMware ESXi läuft der HS seit Monaten ohne einen einzigen Fehler. Was mich stört ist nur der Stromverbrauch von ~ 100 Watt/Stunde.
Viele Dank für eure Unterstützung.
Use a virtual serial port emulator tool like com0com or VSPE. So you can transfere to your VM via serial
I’ve uploaded an initial project (HS partition) for people who don’t have access to RS232/serial (because it’s a VM), download the following to your HomeServer (/tmp) and unzip.
http://www.roelbroersma.nl/media/download/hs-image.zip
(2,8MB, will upack to 1GB)
Create an extra DISK in VMWare/XenServer/Hyper-V or whatever hypervisor you’re using. It doesn’t matter if you run CentOS, Debian,..
Then ‘dd’ the unzipped image to the newly created disk, e.g.:
unzip hs-image.zip
dd if=hs-image.bin of=/dev/xvdb (example of XenServer
When you restart the HomeServer, the default IP (set in the initial project) will be: 192.168.4.1/255.255.255.0 and gateway: 192.168.4.254. When you upload a new project it is possible to modify te IP address.
Username: admin
Password: 1234
and the VMware version here:
http://ge.tt/4lPFWUE1?c
both versions: HS4.0 on debian linux
linux: root/passwd
experte: admin/admin
192.168.1.10
@rabbit:
upload.to is only one page for registering.
did you mean uploaded.net?
one jumpshare link is just for 12 downloader / month – so try downloading older links, maybe they work again.
i just uploaded the hyper-v / VHD version to ge.tt
http://ge.tt/4CrgNUE1?c
@rabbit: you are welcome to upload that to any new hoster :-)
@ChristianCR:
you are a cool community member – thank you for help sharing!
Can you upload the files to upload.to?
Thanks
Please reupload
@Wolfman
Thanks for your help. To provide others with the needed vm i have it placed under http://jmp.sh/b/VYnL4AboWhX4ukl6fY13
@Wolfman,
tnx! I posted my question before reloading, sorry about that. Everything seems to be working now. I got the VMware file working under VMWare player. thnx again Wolfman + Original image creator / poster,
Martijn
@Martijn:
i re-uploaded it and posted a link to the VMWARE version in posting #1891
@ all VMWARE and Hyper-V image users:
those who downloaded one of these images, please support the community and re-upload it at jumpshare and/or a different upload-hoster. (due to bandwith limitation of the existing uploads)
others helped you – so please do you help other
that’s how community works and how you received these VM images
thanxx!
Liebe Leute, die ihr eines der hier zur Verfügung gestellten VM Imagges benutzt. Das Image bei Jumpshare kann man nur ein paar mal downloaden. Bitte seid so nett und uploaded es auch bei einem Upload-hoster. Schließlich habt ihr auch die Chance gehabt ein Image downzuloaden, bitte helft mit daß auch andere diese Chance erhalten. – nur so kann eine Community funktionieren. Wenn keiner was uploaded kann keiner was downloaden – auch ihr nicht.
Danke!
@cupito (1861)
1) for one time (and works immidiatly):
(login as root / passwd)
ifconfig eth0 192.168.1.10 netmask 255.255.255.0 broadcast 192.168.1.0
route add default gw 192.168.1.1
(first number is your ip adress, broadcast ist the network (last number=0) gw is your router)
2) to survive reboots:
edit (e.g. with editor “vi” (learn to use this very old editor first)) the file:
/etc/network/interfaces
and configure the values above
3) after hs_main has started (20-30 seconds after reboot) the homeserver changes to the Homeserver-config
that is the ip adress which is configured in the EXPERTE project
i used to have success as following:
boot and wait 2 min
then do step 1)
then do step 2) (you can omit this step but it is the cleaner way)
then create a new EXPERTE mini-project just with IP-settings and user/password
upload the project to HS
reboot HS
-finished-
@Wolfman,
Can you please tell me where we can download the VMware/Hyper-V HS4.0 Images.. the links both seem to be bandwith exceeded,
thnx
Martijn
@ALL who want HS5.0+ (which doesn’t even exist at this time).
The differences between HS2.0 HS3.0 HS4.0 and Experte 4.1.1 are minimal. So find a stable system and stay with it.
For VMs the easiest way is the VMware/Hyper-V HS4.0 image which is plug and play (download and start).
For real Hardware the easiest way is using a VIA EPIA 6000 Mainboard (M, ML, etc.) which has a VT8235 or VT8237 southbridge = VIA Rhine II Network adapter and install original HS3.0 Firmware (which is part of Experte 2.8, Experte 4.0, Experte 4.1) the only download you need is directly from the gira website. (well you also need “rufus” and “eeprom.exe”).
@Logiman:
the VM guest operating system has to have a driver for the network card. the legacy network adapter is an option in hyper-v (and maybe vmware, virtual box, etc) which emulates a popular DEC network adapter for which 99% of the (guest) operating have a built in driver. If you want to use the hyper-v network adapter you have to install a driver by your own. for linux there exists a hyper-v integration service (similar to vmware additions), but that’s only easy to install on RedHat / CentOS. The HS4.0 vmware image (on which my hyper-v port is based on) is based on debian where the installation is complicated.
@Frage (1876): Hyper-V is the new microsoft based Virtual Machine System which is included in Windows Server 2008 R2, Windows 8 and 8.1 Windows Server 2012 (and R2). You have to add the Hype-V role to use it
@NEO:
there are several independend users and permissions
root is the login for the linux system
admin is the user for which you can upload a project
at experte you have to create a new project, maybe give a new ip-adress, add a user (admin again) AND gibt permissions to the html interface or other things
if you use quad client, you have to create a quad client user (admin again) at quad client config
@ChristianCR
i re-uploaded the VM-Ware Image of HS4.0 from that posting.
http://jmp.sh/b/XKMQN6hFHE9wZOeft4fQ
thanx to the original autor
@Sebbi:
you cannot update an VM based homeserver (because it has been patched to work). Firmwareupdate with Expert Tool overwrites the working Linux system. If you really need (or want) to update read the last 200 answers, somwhere between answer 1600 and 1800 somewohe wrote about loggin into the linux system and manually change hs_main and the other hs_* file.
Only real hardware based implementations can be updated via experte.
Did somebody ever get this message: “Invalid url:’/hs/bin/hs_main’ given, exeiting”
No ‘:’ in the uri (not url but uri)
when trying to start hs_main?
Hey there,
i tried to download the vmware image from post 1605 but on the page i get only the information, that the bandwidth is exceeded.
So could anyone provide me the vmware image ???
greetings
Christian
Hi
mein Homeserver läuft nur seit ein paar Wochen im regulären Betrieb problemlos in einer VM mit VMware Player. Auf dem gleichen Rechner läuft auch die Visu.
Lediglich das update auf 4.1 hat per Lan nicht funktioniert. Der kommt dann in den bootloop rein.
Mittlerweile habe ich auch Webabfragen und Logiken drin. Auch mit Apps ist der Zugriff kein Problem und sehr schnell.
Das ganze läuft unter Windows 7 auf einem DN2800 Intel Board.
Hat jemand einen Tip mit dem Update auf 4.1?
Gruß Sebastian
Or even better.. the file from post 1605, the vmware image,
thanks again folks,
greetings
Martijn
@Wolfman
Hello,
this page is very helpfull for me. I tried to download the VHD file, but the bandwith limit is reached. Can you please upload it again or provide an alternative download link. Thank you very much,
Martijn
@frupps: Thx I figured it out after downloading the file. The name Gira Expert Software is not named at the website.
After reading this page for a long time I was asking myself if there is somebody who has the new version up and running?
I want to use:
Gira Expert v4.1.1
Ubuntu 12.04
VMware workstation 10
And if the answer is yes do you have a how to or something. I also saw the topic on the forum but the most is in German :-(. Is it a option to open a English or even Dutch topic?
If you mean the latest version, then the answer is: YES
Can somebody tell me if this: 01 HomeServer 4/FacilityServer – Software version 4.1.1, status December 2013 is de correct version of the Gira Expert Software?
@Wolfman
I found the Problem :-)
Thanks again ..
@Wolfman
Many thanks for your Hyper-V Image!
The VM is working. I can ping the Maschine on 192.168.1.10 and the Linux Login also works fine … but logon with a Webbrowser doesn’t really work:
http://192.168.1.10/hslist
This works:
debug
admin
admin
This doesn’t work:
http://192.168.1.10/hs
I can see the Login page but with admin admin nothing happens?
Do you have any ideas?
Many thanks
Neo
Linux Login works.
HS Login
Hi
Why “legacy network adapter! for the HyperV Image? We are the Settings. I dont´t have connection to the router.
Wo bekomme ich den Hyper-V her ? Handelt es sich dabei nicht um ein kosten- bzw. lizenzpflichtiges Produkt von Microsoft ?
Der VMware Player war im Gegensatz kostenlos …
HS4.0 Hyper-V Image
i forgot to say:
this is just the VHD file, you have to create a new virtual machine with 512MB RAM, 1 CPU.
Important: add a “legacy network adapter” and delete the hyper-v network adapter of this VM
Start and have fun.
HS4 image ported from VMware to Hyper-V
i just portet the working HS4 Image from HeWo (dec 2013) to Hyper-V
You can find the VHD File here: http://jmp.sh/b/7ZHlhLytvuX96vaLtmy1
Linux Login: root/passwd
HS4 Login: admin/admin
have fun, thanx to HeWo!
# 1605: Hallo, die virtuelle Maschine läuft gut und ich schaffte es in 4.1 setzen
Können Sie mir sagen, wie Sie die MAC-Adresse geändert hat, weil ich es zu nutzen.
Danke
Has somebody already tried to use the original GIRA usb2isdn Adapter with the virtual machine?
I’m able to add the Cygnal Integrated aka Silicon Labs “TA+POSU V1.00” adapter to the VM but unfortunately HS does not recognize it.
In Experte, I configured it as “one adpater for voice and SMS”.
Any hints?
btw: if any of you are still searching for via main boards, some of them are currently available in ebay.de….
Kann jemand das Update der VM aus #1605 auf Version 4.1 in deutsch beschreiben.
Vielen herzlichen Dank
Virtual machine of #1605 works great under VMwareFusion 6.0.2 on a early 2009 Macmini with OSX10.9.1 and even under ESXi 5.5. Thanks a lot, Tux.
Manual update to 4.1 done without any problems by hints of #1828. But copy fails because of “file busy”, use “mv” instead and reboot at once.
OK hat sich erledigt, es war der selbe Fehler wie beim letzten mal, war nur schon zu lange her :-)
Man darf anscheint den Homeserver nicht einfach nur rebooten, sonder er muss aus sein wenn man mit dem Experten die Übertragung startet, schaltet man ihn dann ein läuft auch die Übertragung.
Sachen gibts :-)
Danke dennoch und frohes Fest Euch allen.
Gruß
Ich habe leider beim Update auf die Version 4.1.1 mein System soweit verrasselt, das ich eben noch einmal mit Version 2.8 neu aufgesetzt habe. Da es schon eine Weile her ist habe ich mich an die Anleitung aus dem Forum “HS3 Tutorial – German” gehalten.
Das klappt auch soweit wunderbar und ich konnte auch schon mein “leeres” Projekt per Nullmodemkabel übertragen.
Leider hatte ich die CD Karte nicht als Slave sondern als Master, daher klappte das ganze unterfangen natürlich nicht.
Jetzt habe ich ihn aber auf Slave stehen, aber leider komme ich jetzt nicht mehr zur seriellen Übertragung, er läuft einfach durch bis zum 3fach Beep.
Was kann ich da falsch machen?
In den Einstellungen weder am HS noch am übertragenden Rechner habe ich was geändert nachdem es vorhin lief.
Ich hab auch schon den HS einmal komplett neu aufgesetzt, was leider auch nicht half :-(
Danke und Gruß
Ist Eurer Meinung nach die Anschaffung einer alix 1D hardware die beste Möglichkeit für einen hs3 backup, ich habe einen original HS3. möchte jedoch ein Ausfallszenario, wenn dieser ausfallen sollte!
Lese dir hier die Kommentare durch, ein bisschen Selbstinitiative gehört schließlich auch dazu.
Wenn du direkt ein laufendes System haben möchtest, kaufe dir den originalen HomeServer.
Suchbegriffe für die Kommentare: “dd” und “alix” (Strg+F)
=)
Hallo
Kann mir jemand eine Anleitung geben wie ich den HS aus post 1605 auf einen alix 1D bekomme.
@pf_guy
if you can’t find the info here, why not download the vm and search for the info with a ‘real’ system? /noflame
Is there a summery/info on the original HS4 msata hd setup
Size
Partitioning
Files on partition and content of the batch files
Thanks
Ich habe jetzt den HS aus der vm mittels dd auf einen
physikalischen pc übertragen.
soweit läuft auch alles. nur muss ich nach jedem start
wieder manuell mit “ifconfig eth1……”die ip-adresse und netmask setzen.
da ich absoluter linux noob bin…könnte mir bitte jemand sagen wo ich was eintragen muss damit ip,netmask,gateway und dns bei jedem start dauerhaft übernommen werden ?
Danke !!!
@maurice,
i had the same probs as you with the hs hogging all cpu.
But that somehow went away..
i am running 24/7 and uses 21megs private bytes and cpu is almost 0..
i tried setting up the eibd on the machine but, same as you, never got it working.. maybe adding a extra eth whit a second ip an binding on that instead on the same ip of hs might work but never tried that..
I recently installed the HS4.0 image of post 1605 as a VBox VM and it works well. However the VM consumes >90% cpu on my host system, and the HS also response slowly . Compared to the HS3 image (post 520) as VM on the same hardware, it only uses +/- 30 % cpu and responds well. I was thinking that the full debian OS in the HS4 image is giving a lot of overhead, compared to the original minimal centos version present in the HS3 image. However, looking at the “top” output in the VM of HS4 show that hs_main is using >95% cpu all the time. As the image of my HS3 has no ssh or terminal login I cannot compare it.
Are other users experiencing the same behavior that HS4 is using a lot of cpu time? Also for a version running on real hardware?
Another question: Is anyone succesfully running eibd and HS on the same hardware? The most recent information I have is that it is still not possible due to an equal KNX LAN multicast address of eibd and hs.
VmWare Image erfolgreich auf Alix 1D portiert ;-)
@domin,
try if experte can connect and upload a new user/pass
@frupps
u are correct..
misread that part, i used the same vm images without any of these problems.
@koen:
as he wrote, he enters debug and then the user/password, he has to have access to the device.
So it shouldn’t be a network thing.
Otherwise he wouldn’t even reach this page?!?
@domin,
you provide too little information with
“post 1605 (and changed the IP address). ”
the vmplayer has a network “setting” that might need some attention, but basic things as, are you able to ping it?
The VM has a ip but one needs to set a ip within experte that will load/set the hs to that IP.
I think that is the IP that one sees when booting the system and looking at the screen.
To sum up:
2 ip settings that need attention
a network segment setting that needs attention.
test with ping and post details.
Did you enable the lists in the Experte?
And for the Homeserver App, you have to use the User you did set up in the QuadClient Configuration.
That are different users!
Hi,
I installed the HS from post 1605 (and changed the IP address). It’s running on a vmware player. The problem is, that I can’t login into the hs.
1) Via browser: http://ip-address/hslist -> I enter debug, admin, admin into the form fields. Nothing happens after the submit.
2) Via homeserver app: it doesn’t accept my username and password (admin/admin)
Any tips for solving this problem?
Thx!
Hi,
ist es eigentlich legal den HS laufen zu lassen auf eigene Hardware? Die Soft/Firmware kann man ja herunter laden?
Hi hzmjoe @1848
Habe zwar XP als host hier grade, aber könntest du mir mal deine Network Einstellungen der HS VM posten?
Bei mir steht er auf “bridged (automatic)” mit Haken bei replicate physical network state…
Hi zusammen,
habe ein MSI FM2-A55M-P33 Mini Motherboard mit einem AMD A4 4000 Dual-Core 3,2 Ghz Prozessor.
Bekomme ich den HS3 oder 4 ist mir Woscht :-) auch auf dem board zum laufen?
Gruß
Zu 1844, bei mir läuft der QC auf dem Host (Win7 32Bit) und mit VMplayer der HS4 den ich auch auf 4.1 upgedatet habe. Das funktioniert jedenfalls!!!
Achso, zu 5. noch.
Du musst du MAC nur einmal verändern, nicht jedes mal nach dem Update!
1. Soweit ich weiß, gibt es nur eine Ausführung. Es gibt lediglich welche bei denen eine CF-Karte schon dabei ist und welche, wo keine dabei ist (zumindest werden bei ebay manchmal welche ohne verkauft)
2. Kann ich dir leider nicht beantworten, ich würde aber auf JA tippen
3. Kann ich dir auch nicht beantworten
4. Schau mal im Forum, dort gibt es einen Thread. Mit Hilfe von eeprom wird die MAC des Geräts einmalig überschrieben.
5. Ich mache die Updates immer so, dass ich den USB-Stick (auf diesem liegt die Firmware) ziehe und dort die Dateien austausche. Das geht am flottesten :)
6. Ich glaube der LX4210 hat auch nen VIA Chipsatz. Es sollte funktionieren, probiert habe ich es allerdings nicht. Von daher keine Garantie hierfür.
Der LX 3210 reicht aber auch völlig aus. Du kannst dir vielleicht überlegen den Arbeitsspeicher zu verdoppeln (wenn du sehr große Projekte hast).
Gruß
PS.: Wenn es dir um den IGEL geht, schau am besten ins Forum, in den entsprechenden Thread, dort steht eigentlich alles drin :)
@timberland & frupps,
danke für Eure Info.
Bevor ich mich aber in Unkosten und an die Arbeit stürtze, habe ich an die Experten noch ein paar kleine Fragen, welche mich beschäftigen und würde mich über einen Antwort von Euch sehr freuen!
1. Gibt es den Igel IGEL LX3210 in verschiedenen Ausführungen oder nur in einer?
2. Kann der Igel IGEL LX3210 auf einen 2GB CF Card ?
3. Kann der Igel IGEL LX3210 auch mit einem CF-Adpater auf SD-Card betrieben werden (2GB SD-Card – wäre mir am liebsten)?
4. Wie bzw. wo stelle ich die richtige MAC-Adresse ein, dass der dann auch bootet und läuft und diese permanent drin bleibt?
5. Kann man auf dem IGEL LX3210 den Experten (SW) dann ganz normal updaten, wie ich ich bisher auch meinen HS upgedatet habe und muss ich dann die MAC bei jedem Update wieder anpassen?
6. Kann man auch den IGEL LX4210 nehmen? Der hat schon 1GHz CPU und kann bis 4GB Daten-Speicher, etc. oder ist der Überzogen bzw. reicht die Geschindigkeit vom IGEL LX3210 vollig aus?
Vielen vielen Dank für Eure Mühe, aber die Fragen brennen mich einfach, bevor ich mich an die Arbeit mache. Wäre super nett, wenn Ihr mir diese beantworten könntet!
Grüße und schönen Abend
AndyS
Hat es jemand hinbekommen den QC auf dem Host laufen zu lassen und gleichzeitig den HS4 in einer VM? Ich bekomme keine Verbindung vom quadclient zum HS…
hat jemand eine genaue Anleitung wie man das mit dd aus der vom vm bekommt und auf den Alix spielt?
Auf dem Alix 1D läuft es auch direkt, ist aber etwas komplizierter, weil du erst aus der Virtuellen Umgebung alles kopieren musst.
Dann kannst du es auf dem Alix einspielen, läuft dann dort also nicht virtuell.
Ist hier in den Kommentaren auch alles beschrieben ;)
Am einfachsten und wenigsten gefrickel ist aber der IGEL (habe ich so auch selbst am laufen).
@AndyS
läuft direkt!
Schaum mal hier, da bekommst du alles dazu.
http://www.roelbroersma.nl/index.php/forums/topic/hs3-tutorial-german
@timberland,
danke für die Info. Läuft dort direkt der HS4 oder auch virtuell, was ich eigentlich nicht möchte?
Virtualisierung habe ich noch keine Ahnung, daher sollte er direkt auf dem Hardware laufen. Wie halt der originale auch.
Dnke für Deine Antwort.
Der HS aus 1605 ist echt Klasse, Danke good work! Hat jemand die Gira Schulungsunterlagen für den HS Digital?
Grüße
@AndyS
nimm den IGEL LX3210! Da läuft der HS4 super und ist einfach zum installieren. Den Igel bekommst schon um 9 Euro in der Bucht ;-)
Hi frupps,
der Alix 1D sieht nicht schlecht aus.
Wenn ich aber Deine Antwort so lese und Post 1605, dann basiert diese alle auf Virtualisierung (VM) oder?
ich dachte eher an einen dedizierte HW auf der nur der HS läuft nicht virtualissiert. Kannst Du da auch etwas empfehlen?
Zum Thema VM, ist das denn besser oder welchen Vorteil würde das denn bringen?
Grüße und DAnke
Oder eben jeder andere Rechner mit VM, aber es klang so als wolltest du es direkt auf der Hardware laufen lassen und nicht in einer VM?!?!
Entweder im Forum schauen, dort gibt es eine Anleitung (deutsch) für ein IGEL LX 3210 oder eben das Alix 1D mit Hilfe des Images aus Post 1605.
Hi zusammen,
ich möchte für meinen in die Tage gekommenen HS II (der kleinen schwarze ohnen CD) einen WErsatz bzw. Reseve haben.
Kann mir jemand ein aktuelles Board bzw. HW nennen mit Bezug wo ich es kaufen kann, welches mit der aktuellen Firmware 4.x funktioniert?
Vielen Dank für Eure Unterstützung
AndyS
Anybody managed to run HS in a guest VM and the QuadClient on the XP host system?
@update41: hat das schon wer auf einem alix1d ausprobiert ?
kann jemand seine vm hochladen?
Wäre echt Super!
@update41
how to copy files to vm?
@update41: works perfect. thx
Update of virtual-image to 4.1. do it by hand:
1) go to experte directory on windows machine.
c:\Program Files (x86)\Gira\HS+FS\exp410\firmware\hs4\
2) make a copy and rename firmware to firmware.zip
2) unzip it.
3) copy initrd to virtual-machine (in /tmp directory)
4) go into virtual machine via console or ssh
5) go to /tmp, then expand initrd:
gzip -dc initrd.gz | cpio -id
6) copy hsmain from expanded /bin to /hs/bin
7) copy hstk from expanded /bin to /hs/bin
Ready, reboot and 4.1 is running. I updated my project and checked with client fo 10 min…. all is up an running.
maybe any issues later.. give it a try. (snapshot vm before?)
(dont know if this is necessary ??)
8.1) copy expanded dir “numpy”
from /usr/lib/python2.6 to /usr/lib/python2.6
8.2) copy expanded dir “serial”
from /usr/lib/python2.6 to /usr/lib/python2.6
thanx to roel, for keeping this up here l!!
@Hpralfi:
Das würde mich auch interessieren. habe derzeit das 4.0 VM-Image am laufen. 4.1 auf VM wäre natürlich genial!
That would interest me too. I currently run the VM image on 4.0. 4.1 VM would of course be awesome!
@ signalAMD
Raspberry Pi wäre die genialste Lösung. Bisher aber keine Möglichkeiten.
Hallo,
Weis schon wer was man machen muss, um auf 4.1 Updaten zu können. Ohne bootschleife?
Lg
Ralf
Hallo
Hat jemand den HS auf einem Raspberry Pi laufen ?
In den Posts weiter oben wurde glaube ich mal geschrieben, dass man sich den seriellen Adapter noch in der VM Ware hinzufügen muss (durchsucht hier einfach mal die Kommentare dazu).
Kann weiter nichts dazu sagen, da ich keine VM für den HS nutze.
Ich habe auch das gleiche Problem das ich mit VM-Ware nicht seriell auf den server komme bitte um Hilfe
Hat jemand eine funktionieren HS4 vm wo man auch seriell übertragen kann? oder zumindest mit einer 192.168.0.x Adresse?
WmWare Workstation 10.
Im Experte kommt beim übertragen ich soll den HS neu starten.
Und er verbindet sich aber nicht.
Beide sind in der Vm Seriell2 mit piep client und Server auf com_1
timberland,
welche hardware benutzt du?
bekomme beim hs4 von post 1811 einfach keine serielle Verbindung in der vm. jemand eine Idee? bei einer hs3 vm geht das ohne Probleme.
hallo frupps
Danke für deine Antwort. Habe es jetzt auch mit chrome probiert geht auch nicht.werds mal auf einem anderen Rechner probieren.
Gruß Christoph
Funktioniert einwandfrei (1605).
Getestet mit Chrome.
Nimmst du auch oben rechts den Button: Download All?
Hallo
Habe jetzt mehrmals probiert die dateien aus post 1811 und 1605
runterzuladen.Bleibt bei einem Fortschritt von ca 20% stehen
und geht nicht mehr weiter.Kann mir jemand die Dateien zum Runterladen bereitstellen??
Danke im voraus
Gruß Christoph
Hello
Have now tried several times to post the files from 1811 and 1605
to download. With a progress of about 20% stops the download. Can anyone provide me the files to be downloaded?
Thanks in advance
Greeting Christoph
Hallo TimTom,
ich habe die Seriennummer wie in Post 1801 geändert.
Leider unterscheidet mein Lizenzierter Baustein zwischen Groß- und Kleinschreibung.
Bei ifconfig wird mir in der VM die MAC als Kleinbuchstaben angezeigt und es kommt zu einer Fehlermeldung im Baustein.
Bei Originalen HS wird die MAC als Großbuchstaben angezeigt und der Baustein läuft.
Kann man das irgendwie ändern?
MfG Hannes
what hardware do you use for the hs4 image?
After dist-upgrade i have no internet connection
Ideas?
HS4 image to download, in 4 parts:
http://adf.ly/Z0Hod
Hallo,
ich habe nun endlich die 2.8 am Laufen mit meiner VM, mit dem Expert-Tool ein leeres Projekt aufgespielt mit einem Benutzer. Wenn ich nun unter http://xxx/hs mich mit Benutzernamen und Kennwort anmelde, kommt einfach die gleiche Seite wieder – unabhängig von Browser, etc. Auch die iPhone-App fordert einfach Benutzernamen und Kennwort wieder an (wie wenn er falsch wäre). Habt Ihr noch eine Idee?
Hier mal das Log vom Start:
root@test:/hs/start# ./start.sh
hwclock: select() to /dev/rtc to wait for clock tick timed out: Erfolg
eth0 Link encap:Ethernet HWaddr 00:0A:B3:02:01:68
inet addr:192.168.178.26 Bcast:192.168.178.255 Mask:255.255.255.0
inet6 addr: fe80::3c1b:d9ff:fe30:c59c/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:41502 errors:0 dropped:0 overruns:0 frame:0
TX packets:33355 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
loLink encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
eth0 Link encap:Ethernet HWaddr 00:0A:B3:02:01:68
inet addr:192.168.178.26 Bcast:192.168.178.255 Mask:255.255.255.0
inet6 addr: fe80::3c1b:d9ff:fe30:c59c/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:41502 errors:0 dropped:0 overruns:0 frame:0
TX packets:33355 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
loLink encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
+++++++++++++
NET NET NET : 000AB3020168
+++++++++++++
hs_trans: Kein Prozess gefunden
hs_main: Kein Prozess gefunden
ipppd: Kein Prozess gefunden
sz: Kein Prozess gefunden
rz: Kein Prozess gefunden
:38: DeprecationWarning: the whrandom module is deprecated; please use the random module
hwclock: select() to /dev/rtc to wait for clock tick timed out: Erfolg
+++++++++++++
NET NET NET : 000AB3020168
+++++++++++++
sh: 1: isdnctrl: not found
sh: 1: isdnctrl: not found
sh: 1: isdnctrl: not found
sh: 1: isdnctrl: not found
sh: 1: isdnctrl: not found
sh: 1: isdnctrl: not found
ipppd: Kein Prozess gefunden
SIOCADDRT: Die Datei existiert bereits
********** TimeServer INITIAL ***************
USB-LOG : 0
mount: unknown filesystem type ‘usbdevfs’
USBBCU OK …
SYSTEMID : 000AB3020168
PROJECTID : 20131104211802625
—————————————————————–
HomeServer (*) V.: 2.8.120427 04.11.2013 21:43:11
—————————————————————–
Start : 04.11.2013 21:42:08
SNR : 000AB3020168
IP:Port : 192.168.178.26:80
ISDN (Stat/Ok/Err) : OFFLINE / 0 / 0
Load (Date/Stat/Size) : 04.11.2013 21:38:31 / OK / 336
Save (Date/Stat/Size) : 01.01.1970 01:00:00 / ? / 0
EIB (Date/Init) : 01.01.1970 01:00:00 / 0
Free Memory : 971526144 / 971526144
Proj (Stat/MD5/Size) : OK / OK / 1894244 / 14770
—————————————————————–
Danke!
Hallo
Wollte gerade die Dateien (HS4) aus post 1605 Downloaden. Die versuche schlagen immer fehl.
Kann mir Jemand die dateien zur Verfügung stellen???
Danke
Gruß Christoph
Regarding 1784. Andy – 14 September 2013
The reason of problems with transfer was an antivirus (Avast). Once deactivated – everything works.
..hello,
I’m trying to set up hs4 on an alix1.d board with voyage-linux09 (kenrel3.8.11) on which I have eibd and misterhouse running since few years. I copied /hs… (unpacked the initrd) to the root dir. modified dmidecode, change with hex-editor all /hdc to /sda as I have an usb stick with the 4 partiones and org SW under sda, mounted under/media/sda 1..4, the when I start /hs/hs_main (direct or with the startsrcit out of /scripts..) I always get following error msg:
:15: DeprecationWarning: the md5 module is deprecated; use hashlib instead
Traceback (most recent call last):
File “/hs/bin/hs_main.py”, line 49, in
File “/hs/bin/hs_comm.py”, line 20, in
ImportError: No module named termios
does someone has any clue on that?
Rgds
Hora
Hallo,
versuche gerade den hs4 auf einem alix1.d mit voyage linux09 (kernel 3.8.11) zu laufen zu bekommen ( da läuft sein mehreren Jahren eibd und misterhouse drauf)- hab hs-verzeichnis unter /hs kopiert (ausgepackt aus der initrd), /usr/share/dmidecode angepasst,
wenn ich hs_main main starte bekomme ich folgende Fehlermeldung
:15: DeprecationWarning: the md5 module is deprecated; use hashlib instead
Traceback (most recent call last):
File “/hs/bin/hs_main.py”, line 49, in
File “/hs/bin/hs_comm.py”, line 20, in
ImportError: No module named termios
Gruß
Hora
hat jemand eine idee?
Hallo
Wollte gerade die Dateien aus post 1605 Downloaden. Die versuche schlagen immer fehl. gibts da ein Problem??
Danke
Gruß Christoph
ignore my post it´s running now.
Hi, i try to use an alix board with 4gb CF. I tried to copy the four partitions on the CF card. The dd command doesn´t work because the Image from Post 1605 is too large. Can someone tell me how i can copy the Image to a 4gb CF or i have to buy a larger one ?
@PaT
I bought on ebay a Berker USB and a USB Gira. Even a Siemens IP interface I bought in a shop =(
@Hannes:
1. Read posts
2. Edit /usr/sbin/dmidecode
@Timmi
Which USB Interface ? Berker, Gira, ABB ?
Hallo,
kann mir einer sagen wie man die Seriennummer der VM aus Post 1605 ändern kann.
Hintergrund -> Ich habe einen Originalen HS3 und damit verbundene Logikbausteine mit Lizenz.
Muss das Notebook “Hardware Virtuallisierung” können? Komisch, es funktioniert fast alles, nur erkennt der Server/Virtual Maschine das USB Interface nicht. Telegramme werden versendet, kommen aber in der KNX nicht an.
Danke
Probably a bit too slow CPU?!?
http://www.engadget.com/2013/10/03/intel-ardino-galileo-development-r-pi-education/
the ideal platform for homeserver-rebuilding… x86based, small, low power.
will be around $60 a pop.
BingoBongo>
there are a few missmatches in my posted code. I dont remember at moment what was the right syntax.
I tested it with user ICH so he can tell us waht is to write in the rc.local.
Finallay we got hs to accept the dmidecode after firmware update but there was a second problem what ends in bootloop.
At moment here is no time and no need for experimenting with my homeserver.
I think the problem can not be hard .. but hard to find.
In rc.local bust be something like
echo -n > /usr/sbin/dmidecode
echo echo \”000ABBCCXXYY\” > /usr/sbin/dmidecode
exit 0
so that /usr/sbin/dmidecode contains after every reboot
echo “000ABBCCXXYY”
you can test it by editing the rc.local an running ./etc/rc.local
after that dmidecode must resturn only the serial
i hope there are no missmatches in the posted code so try it on vm first … it will only show the way to go.
The VM image from post 1605 can NOT be updated through the normal HS Experte firmware update procedure. (NOT via ethernet and NOT via serial cable)
Trying to do so will definitely end up in a destroyed system and therefore in a “boot loop”.
@TimTom
I have used the Image from post 1605. I like tu run a firmware update. To prevent bootloop i like to try your command:
echo “echo -n > /tmp/test && echo \”echo \”000AXXXXXXXX\”\” > /usr/sbin/dmidecode” > /etc/rc.local
is this one the correct command? Why you use the folder /tmp/test ?
Is it ok if i run this command first then reboot and then install the newest firmware?
Thanks
Berker USB (REG) is working. ABB won’t work (REG). tested on hs3 self build.
IP Schnittstellen gehen mit dem Homeserver wohl generell nicht, du brauchst einen IP Router, wenn du das ganze per IP realisieren willst.
Ob die Berker USB Schnittstelle mit dem HomeServer funktioniert kann ich dir nicht sagen.
Wenn sie in der ETS aber funktioniert und am HomeServer nicht, würde ich sagen, das sieht eher schlecht aus…
Was passiert denn wenn du einen Notebook an die USB Schnittstelle hängst?
Erkennt er die Schnittstelle als USB-HID?
Hallo, habe ein kleines Problem.
Habe 1 Aktor + eine Tasterschnittstelle. Mit jener bin ich gerade an meinem ersten Projekt. Ohne Homeserver funktioniert alles einwandfrei und in der ETS sehe ich auch im Monitor, dass die Adressen funktionieren. Zwischen Homeserver und BUS habe ich keine Verbindung. Habe bei Ebay 1x USB Schnittstelle Berker + 1x IP Schnittstelle Siemens erworben. Beide gehen nicht. Also wo kann der Fehler liegen? Danke bereits im Voraus.
Im Experten ist IETS aktiviert und USBSchnittstelle auch eingetragen “Miniviso im Client funktioniert auch… Komisch nur keine Kommunikation zwischen BUS und Server. Danke
what should I do:
root@debian:/home/debian# /hs/bin/hs_main
:38: DeprecationWarning: the whrandom module is deprecated; please use the random module
+++++++++++++
NET NET NET : 000ABXXXXXXXX
+++++++++++++
sh: isdnctrl: not found
sh: isdnctrl: not found
sh: isdnctrl: not found
sh: isdnctrl: not found
sh: isdnctrl: not found
sh: isdnctrl: not found
ipppd: no process found
SIOCADDRT: Network is down
********** TimeServer INITIAL ***************
USB-LOG : SYSTEMID : 000ABXXXXXXXX
PROJECTID :
—————————————————————–
HomeServer (*) V.: 2.7.110713 18.09.2013 03:01:55
—————————————————————–
Start : 18.09.2013 03:01:53
SNR : 000ABXXXXXXXX
IP:Port : :80
ISDN (Stat/Ok/Err) : OFFLINE / 0 / 0
Load (Date/Stat/Size) : 31.12.1969 19:00:00 / LEER / 0
Save (Date/Stat/Size) : 31.12.1969 19:00:00 / ? / 0
EIB (Date/Init) : 31.12.1969 19:00:00 / 0
Free Memory : 9814016 / 9814016
Proj (Stat/MD5/Size) : ? / ? / 0 / 0
—————————————————————–
Hi,
I have a virtualbox debian and I get this error:
:38: DeprecationWarning: the whrandom module is deprecated; please use the random module
I think thats it because I can’t put the project with serial from Experte Win7 virtualbox to debian virtualbox.
Should I install the whrandon? I don’t know how. I don’t know debian linux well.
Please help me, I was just reading nearly everything in here.
thanx!
Eric
@Andy,
64bit enterprise edition.. and alle software runs as admin.
never had a _not_ working transfer.
@ Koen
No, with serial there is no problems and this is my standard procedure on hs3.
I’m also able to transfer project via serial on hs4 (vm prepared base on 1605) but it seems that such way is destroying hs4 software.
Which version of Win7 do you have: 32 or 64bit?
@andy,
have een using the win7 for some time and never had transfer problems.
Do you encuonter these problems with serial or IP transfer?
Strange thing with HS 4 (vm):
I can transfer project via network using XP machine (expert 4.0)
but while using Windows 7 connection is established but the project is not transfered: Unable to tranfer data.
I could use XP machine, but there is problem with Quad config – it crashes every time at launch in Expert, so I’m not able to configure Quad client.
Did someone have similar problems and have solved them?
Is that true that only Giras USB-interface can work with HS4?
I found such information here http://knxforum.se/viewtopic.php?f=12&t=11155
I have problem with connection so maybe that is the reason.
Hi, weis schon jemand warum die Firmware 4.0.1 eine Reboot Schleife verursacht während die 4.0 mit der original Hardware des HS4 super läuft!?
danke
i had a running hs4, and i tried to install EIBD onto it..
but now the hs can’t connect to the bus anymore.
Using ETS3 and monitor the bus using the fresh installed eibd works like charm..
Read and writing values to the bus work to..
i start eibd using:
eibd -d -u -i -DS -T -R ipt:10.0.0.11:3671
and i added the multicast address:
route add 224.0.23.12 dev eth0
anyone an idea?
Message is on the way …
what is the content of your /etc/rc.local ? contact me: see post 1454
@timtom
After the reboot, I get the following error message
mkdosfs 3.0.9 (31 Jan 2010)
mkdosfs: /dev/sda2 contains a mounted file system.
mkdir: cannot create directory ‘/fw’: File exists
mount: /dev/sda2 already mounted or /fw busy
mount: according to mtab, /dev/sda2 is mounted on /
umount: /fw: not mounted
Any ideas ?
i just dd’ed a working hs4 VM to 100gb 2,5 disk and installed it in a winterm 9450xe..
dd if=/dev/sda1 of=/dev/sdc1 bs=100M conv=notrunc
dd if=/dev/sda2 of=/dev/sdc2 bs=100M conv=notrunc
dd if=/dev/sda3 of=/dev/sdc3 bs=100M conv=notrunc
dd if=/dev/sda4 of=/dev/sdc4 bs=100M conv=notrunc
default boot was on 686 so that didn’t work but the 486 entry was there, so i selected it and whoopa.. from VM to phys. in a mere 30 minutes..
i used the tux image for several months to develop.. and now it runs on real components..
Who has the HS on a APS (backup battery) so if power fails it will keep running?
tahnx again all..
@ich:
horrible error of copy and paste from testing. just replace “/tmp/test” with “/usr/sbin/dmidecode”
echo “echo -n > /tmp/test && echo \”echo \”000AXXXXXXXX\”\” > /usr/sbin/dmidecode” > /etc/rc.local
You can change the IP via Experte Software.
You can do it via serial cable or via IP.
To do it via IP try to ping the vm before.
I didnt test it in the virtual machine because I copied the Image out of the vm and did set it up directly in a PC.
With the Second question I can’t help you too, Sry.
The best is if you go to HomeserverIP/hslist und type there debug as list and take a look at EIB. If you see the Group Address of your USB Device you have a connection.
@frupps 1771
Thanks for your advice
I did what you proposed and vm is started on virutalbox :-) but:
1. how can I change IP address? I have configured serial connection in orded to transfer project with new IP configuration, but it doesn’t work – transfer is not starting at vm reboot, and there is no hs_trans like it was in HS3.
2. Is any additional usb configuration required? It seems that EIB connection is active in status table even when USB cable is disconnected :-)
@ timtom
Your command …
echo “echo-n> / tmp / test && echo \” echo \ “000AB3023180 \” \ “> / tmp / test” >> / etc / rc.local
unfortunately does not work. The system still has a boot loop. Do you have another idea?
MfG
Ich
Sorry for double post:
It is even easier if you simply use VMWare Player (Freeware).
I think this all is explained somewhere here in the post above.
In VMWare Player you have to add USB-Devices.
Post 1632 also explains how you get tthis image out of the Virtual Machine and can copy it locally to your PC/Server/ThinClient or whatever you are using.
You can simply convert the vmx to an ovf file (just google for that) and then you can use this image from Tux also in VirtualBox.
Worked for me ;)
@frupps
Thanks for your answer. My current infrastructure is based on virtual box while image from 1605 requires esxi AFAIK and that’s the issue for me.
@Andy
Why don’t you download the image from 1605?
I think it’s a driver problem.
Sorry don’t know how to fix it, but I would try it with image from 1605 and test if you the same error with this one.
PS: Got my Homeserver running now on an IGEL LX3210 Compact which I had here. Working like a charm.
@All
Any information/ideas on post 1764?
Please, I need your help :-)
Thanks in advance.
Hallo ich habe die Dateien von tux (1605) heruntergeladen und in ovf exportiert um sie in virtualbox importieren zu können. Das funktioniert auch soweit.
Nun kann ich aber den HS nicht an pingen oder über den Experten ansprechen weiß jemand vielleicht Abhilfe?
Just to let you know… Gira and Gira HD apps at apple’s app store gone free!!
Hello,
first of all, thank you for post #1605 – I got my HS4 burned by the lightining (realtek uC now have burned holes inside).
Can you tell me what code page I need to use to mount HS4 mSATA sda2 partition? If I do it in common codepage it shows garabage.
@Öse
Current state:
1. HS4 on VirtuallBox (freeDOS) – based on 1163 post
2. HS4 is working, empty project is loaded via COM
Problems:
1. Problem to connect to KNX via USB – to be precise: USBBCU OK but communication doesn’t work (HS3 is working properly using the same connection – on vm centos)
Potential causes:
1. During start HS4:
File “/hs/bin/hs_main.py”, line 1071, in ThreadFkt
TypeError: __init__() takes exactly 4 arguments (3 given)
File “/hs/bin/hs_main.py”, line 1105, in ThreadFkt
TypeError: __init__() takes exactly 4 arguments (3 given)
2. Warnings from ReplaceKernel.pl script:
Found Kernel Version 2.6.34.13
WARNING: Sourcefile /usr/src/linux-2.6.34.13/modules.dep not exists, perhabs it is not complied as module!!!!
WARNING: Sourcefile /usr/src/linux-2.6.34.13/modules.alias not exists, perhabs it is not complied as module!!!!
WARNING: Sourcefile /usr/src/linux-2.6.34.13/lib/crc32.ko not exists, perhabs it is not complied as module!!!!
WARNING: Sourcefile /usr/src/linux-2.6.34.13/lib/bitrev.ko not exists, perhabs it is not complied as module!!!!
WARNING: Sourcefile /usr/src/linux-2.6.34.13/drivers/input/misc/pcspkr.ko not exists, perhabs it is not complied as module!!!!
Any ideas to solve this? I will appreciate any answer.
Thanks
Is it possible to prevent the Homeserver to update the screen every 30seconds or so?
Because if I copy the image with dd I can’t see if it’s still copying or if it’s ready…
@ich
Fehler gefunden
Stichwort Designschlüssel falsch/nicht eingegeben
@ich
Programmierung geht. Quadclient geht auch. Zugriff per Ipad und iPhone geht auch. Also keine Ahnung wo der Fehler liegt….
ID Habe ich TEST
Bezeichnung habe ich auch TEST
HS/FS habe ich meine IP wo ich den Homeserver programmiere
Port 80
DEsign + Refresh “leer”
Mehr kann man da nicht falschmachen oder? DANKE
@ b/\t
See post 1604 & 1605.
HS4.0.1 for HS2/HS3/FS3 does not seem to like virtualbox at all.
as it only supports (via LKM) via-rhine or realtek8169, hs_main is not able to find a valid eth0 iface, thus it fails badly and reloads itself.
virtualbox only supports virtio, pc-netII/III (aka ne2k-pci) and some intel desktop and server cards.
i used to test my setup “dry” on the virtualbox before putting it onto the production HS(clone).
right now i fail to do so…
on the real HS2/HS3 (clones) it shall run fine
@timmi
Hast du im Experten unter Stammdaten einen User angelegt ? Wenn ja, verwende diese Zungangsdaten. Das gleiche gilt für den QC …
MfG Ich
Hallo,
habe VMware Workstation 9 + Image von tux. Kann zwar alles per Expertensoftware hochladen, bekomme aber per Client und Webbrowser keinen Zugriff.
Wo kann der Fehler sein?
Thanks
!!! ATTENTION !!!
Just saw a Bug in command:
So forget about the command from post 1755 !!!
use this:
echo “echo -n > /tmp/test && echo \”echo \”000AB3023180\”\” > /tmp/test” >> /etc/rc.local
Preventing bootloop after firmware-update this command (still untested) should help:
echo “echo -n > /tmp/test && echo \”echo \”000AXXXXXXXX\”\” > /tmp/test” > /etc/rc.local
This must be only once before first firmware-update. Further updates should work properly. Replace the 000AXXXXXXXX with your serial.
@der Begeisterte
thanks i have read your post 1632 and copied the sda to my usb stick with the dd command. The VM is about 4 GB my usb stick has 8 GB. I put the usb stick into my alix 1d but it stopps booting with this error:
“elf header smaller than expected”
i am not able to dd the data from the usb-stick to the cf-card. Because the 4 GB cf-card is only (3,7GB large). So its about 200 MB to small.
Maybe someone can help?