(...)Heute ist mein 8GB Riegel angekommen - natürlich sofort eingebaut!(...)
Kann das Paket noch jemand testen?
Exception Object
(
[message:protected] => Could not connect to host (http://127.0.0.1:18083)
[string:Exception:private] =>
[code:protected] => 64
[file:protected] => /volume1/web/phpvirtualbox/lib/ajax.php
[line:protected] => 128
[trace:Exception:private] => Array
(
)
[previous:Exception:private] =>
)
rm /lib64/libz.so.1
rm /lib64/libz.so
Installieren geht, aber:
Rich (BBCode):Exception Object ( [message:protected] => Could not connect to host (http://127.0.0.1:18083) [string:Exception:private] => [code:protected] => 64 [file:protected] => /volume1/web/phpvirtualbox/lib/ajax.php [line:protected] => 128 [trace:Exception:private] => Array ( ) [previous:Exception:private] => )
Wofür der Port 18083?
Nein. Das ist so in der Config angegeben...
Hi,Moin,
hast du zufällig optware/ipkg auf deiner DS laufen und das ganze als symlink ausgeführt?
Also /opt zeigt auf ---> /volume1/@optware das klappt leider nicht weil:
VirtualBox keinen Symbolischen links folgt.
Also kurtz und knapp wenn "/opt" bei dir auf der DS schon vorhanden ist und ein symlink ist muss du das ändern.
Wenn das bei dir der fall sein sollte kann ich dir auch ein kleines tut für die Koexistenz von VirtualBox und optware/ipkg schreiben.
mfg DIablo
Hi,
mir würde das Tut helfen...
Der Start einer VM geht bei mir mit Fehler auf die Bretter. Log sagt: szErr="Symlinks are not permitted: '/opt'
Hilft es, den Symlink zu löschen und alle Daten von /volume1/@optware in ein "echtes" /opt zu verschieben? Oder hab ich dann Probleme mit den über ipkg installierten Tools?
Gruß
Michael
P.S.: hab da etwas "Fracksausen", meine Login-Shell ist /opt/bin/bash...
[ ! -h /opt -a ! -d /opt ] && ln -s /volume1/@optware /opt
[ ! -d /opt ] && mkdir /opt
for FOLDER in $(ls /volume1/@optware); do
[ ! -h /opt/$FOLDER -a ! -d /opt/$FOLDER ] && ln -s /volume1/@optware/$FOLDER /opt/$FOLDER
done
#!/bin/sh
#
# Optware setup
# Alternatives Optware Startup und Shutdown Script
#
PATH="/opt/sbin:/opt/bin:$PATH"
log(){ echo "[$(date +%d-%m-%Y) $(date +%H:%M:%S)] - $@"; }
#[ ! -h /opt -a ! -d /opt ] && ln -s /volume1/@optware /opt && log "symlink /opt not found! Creating it!"
[ ! -d /opt ] && mkdir /opt && log "dir /opt not found! Creating it!" >> /var/log/optware.log
for FOLDER in $(ls /volume1/@optware); do
[ ! -h /opt/$FOLDER -a ! -d /opt/$FOLDER ] && ln -s /volume1/@optware/$FOLDER /opt/$FOLDER && log "symlink /opt/$FOLDER not found! Creating it!" >> /var/log/optware.log
done
case $1 in
start)
for i in /opt/etc/init.d/S??* ;do
# Ignore dangling symlinks (if any).
[ ! -f "$i" ] && continue
case "$i" in
*.sh)
# Source shell script for speed.
(
trap - INT QUIT TSTP
set start
. $i
)
;;
*)
# No sh extension, so fork subprocess.
$i start
;;
esac
log "Optware Startscript $i > Startbefehl wurde ausgefuehrt!" >> /var/log/optware.log
done
;;
stop)
for i in /opt/etc/init.d/S??* ;do
# Ignore dangling symlinks (if any).
[ ! -f "$i" ] && continue
case "$i" in
*.sh)
# Source shell script for speed.
(
trap - INT QUIT TSTP
set stop
. $i
)
;;
*)
# No sh extension, so fork subprocess.
$i stop
;;
esac
log "Optware Startscript $i > Stopbefehl wurde ausgefuehrt!" >> /var/log/optware.log
done
;;
autostart)
if [ ! -f /usr/local/etc/rc.d/optware.sh ]; then
ln -s /opt/etc/optware.sh /usr/local/etc/rc.d/optware.sh
log "/opt/etc/optware.sh linked to /usr/local/etc/rc.d/optware.sh!" >> /var/log/optware.log
fi
;;
autostart_del)
if [ -f /usr/local/etc/rc.d/optware.sh ]; then
rm -f /usr/local/etc/rc.d/optware.sh
log "Deleted /usr/local/etc/rc.d/optware.sh!" >> /var/log/optware.log
fi
;;
*)
echo "Usage: $0 [start|stop|autostart|autostart_del]"
;;
esac
Muss ich nach der Deinstallation noch was mit den libs machen?
Ich hab es bereits wieder deinstalliert und warte die offizielle Version ab, da ich im Moment eh noch keine Anwendung habe.
Mein optware.sh liegt unter /usr/local/etc/rc.d/optware.sh,...
Wenn du das Forum hilfreich findest oder uns unterstützen möchtest, dann gib uns doch einfach einen Kaffee aus.
Als Dankeschön schalten wir deinen Account werbefrei.