Oops, TweetDeck can’t find your data
Podemos solucionarlo creando un script con el siguiente contenido, es decir creamos un fichero de texto simple por ejemplo con gedit y copiamos en él lo siguiente:
Para Ubuntu:
#!/bin/bash
GNOME_DESKTOP_SESSION_ID="gnomeisgo" /opt/TweetDeck/bin/TweetDeck
o también:
#!/bin/bash
GNOME_KEYRING=`pidof gnome-keyring-daemon`
DIRNAME=”/opt/TweetDeck/bin”
GNOME_DESKTOP_SESSION_ID=$GNOME_KEYRING $DIRNAME/TweetDeck &
En otras distribuciones podemos probar esto:
#!/bin/bash
GNOME_KEYRING=`ps x | grep gnome-keyring | awk '$5 ~/^gnome-keyring/ {print $1}'
`
DIRNAME="`dirname $0`"
GNOME_DESKTOP_SESSION_ID=$GNOME_KEYRING $DIRNAME/TweetDeck
Lo guardamos por ejemplo con el nombre tweetdeck.sh
Si necesitamos darle permisos de ejecución al archivo que acabamos de crear en Ubuntu podemos hacer clic derecho sobre el archivo-> propiedades-> pestaña permisos y marcar la opción: Permitir ejecutar el archivo como un programa.
Fuentes:
http://www.carrier-lost.org/blog/running-tweetdeck-on-the-linux-xfce-desktop
http://dnh500.blogspot.com/2009/08/tweetdeck-on-xfce-ubuntu.html
No hay comentarios:
Publicar un comentario