UPDATE: tak jsem to sam vyzkousel a k memu velkemu prekvapeni na ubuntu to i pod rootem hlasi chybu
Copying to a temporary location...
Verifying archive integrity...tail: nelze otevřít „+266“ pro čtení: No such file or directory
Error in checksums: 2540731971 is different from 3043856338
ovsem pod archem (na tom samem ntb) mi instalator funguje...
sam netusim proc, mozna nekdo bude moudrejsi
UPDATE 2:
tak a ted jsem nasel jeste tohle, az budu mit cas tak to testnu
The problem is that the install script for ut2003, is written in bash. sh on ubuntu systems uses dash.
In order to install ut2003, you have to make the system use bash instead of dash.
To do this, do the following:
1. Open a terminal, and navigate to /bin
2. Move the existing sh link to backup: sudo mv sh sh_bak
3. Create a symlink from bash to sh: sudo ln -s bash sh
4. Run the ut2003 installer: PATH_TO_CDROM/linux_installer.sh f.ex /media/cdrom/linux_installer.sh
5. Follow the instructions of the installer
6. When the installation is done, remove the symlink to bash: sudo rm sh
7. And restore the symlink to dash: sudo mv sh_bak sh
The Ubuntu team has replaced bash with dash for several reasons, and it is NOT recommended to replace bash with dash permanently!!
Hope this is useful!