Tema destacado:
Autor
|
Tema: tengo problemilla al ejecutar un programa instalado (Leído 4,910 veces)
|
|
|
|
vertexSymphony
|
¿Podrías ejecutarlo desde la consola para ver donde falla ?
|
|
|
|
|
En línea
|
Mail/PGP/XMPP/D* gpg --recv-keys --keyserver pgp.mit.edu 0xCD21671D
|
|
|
dvdr
Desconectado
Mensajes: 503
|
???  :(espera porque ahora salen errores que no deverian salir  malditaseaaaa su estampa
|
|
|
|
|
En línea
|
|
|
|
dvdr
Desconectado
Mensajes: 503
|
empecamos de nuebo instalo feedingbottle y queda asi en este manual con back box que uso de 64bit http://geekfiles.altervista.org/es/feedingbottle-disponibile-per-backbox/   los errores dvd@dvd-laptop:~/Escritorio$ sudo -s root@dvd-laptop:~/Escritorio# FeedingBottle3.2 FeedingBottle3.2: orden no encontrada root@dvd-laptop:~/Escritorio# sudo /bin/feedingbottle/feedingbottle3.2 sudo: unable to execute /bin/feedingbottle/feedingbottle3.2: No existe el fichero o el directorio root@dvd-laptop:~/Escritorio#
no se vertex@Symphony se te ocurre algo para que se ejecute ¡¡seguro lo estoy haciendo mal
|
|
|
|
« Última modificación: 15 Junio 2011, 18:08 por dvdr »
|
En línea
|
|
|
|
Tzhed\ Kyperf/
Wiki
Desconectado
Mensajes: 800
Tzhed > /dev/sda
|
# find / -name feedingbottle Mira a ver si con find das con el binario.
|
|
|
|
|
En línea
|
|
|
|
|
|
Leo Gutiérrez.
. . .. ... ..... ........ ............. .....................
Colaborador
 
Desconectado
Mensajes: 2.968
/^$/
|
El programa es feedingbottle3.2, ejecutalo desde la consola a ver qué errores da.
|
|
|
|
|
En línea
|
|
|
|
|
|
|
vertexSymphony
|
Eso es por que feedingbottle3.2 no está en el PATH (es una variable de entorno que dice dónde buscar los ejecutables), por que se instaló en un lugar no estándar, o lo ejecutás tipeando la ruta completa al ejecutable ( /bin/feedingbottle/feedingbottle3.2 ) o la agregás a PATH editando el fichero .profile o .bashrc en tu home (son ocultos) agregando una línea así : export PATH=$PATH:/bin/feedingbottle Saludos.
|
|
|
|
|
En línea
|
Mail/PGP/XMPP/D* gpg --recv-keys --keyserver pgp.mit.edu 0xCD21671D
|
|
|
dvdr
Desconectado
Mensajes: 503
|
 no se habre ni como administrador dentro del la carpeta ya la vi aqui esta ...  la abro vale lo que hay dentro de .profile # ~/.profile: executed by the command interpreter for login shells. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login # exists. # see /usr/share/doc/bash/examples/startup-files for examples. # the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask # for ssh logins, install and configure the libpam-umask package. #umask 022
# if running bash if [ -n "$BASH_VERSION" ]; then # include .bashrc if it exists if [ -f "$HOME/.bashrc" ]; then . "$HOME/.bashrc" fi fi
# set PATH so it includes user's private bin if it exists if [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH" fi
aqui se lo puse export PATH=$PATH:/bin/feedingbottle y lo que hay dentro de .bashrc # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples
# If not running interactively, don't do anything [ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options # ... or force ignoredups and ignorespace HISTCONTROL=ignoredups:ignorespace
# append to the history file, don't overwrite it shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) HISTSIZE=1000 HISTFILESIZE=2000
# check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1) [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below) if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then debian_chroot=$(cat /etc/debian_chroot) fi
# set a fancy prompt (non-color, unless we know we "want" color) case "$TERM" in xterm-color) color_prompt=yes;; esac
# uncomment for a colored prompt, if the terminal has the capability; turned # off by default to not distract the user: the focus in a terminal window # should be on the output of commands, not on the prompt #force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then # We have color support; assume it's compliant with Ecma-48 # (ISO/IEC-6429). (Lack of such support is extremely rare, and such # a case would tend to support setf rather than setaf.) color_prompt=yes else color_prompt= fi fi
if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' else PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' fi unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir case "$TERM" in xterm*|rxvt*) PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" ;; *) ;; esac
# enable color support of ls and also add handy aliases if [ -x /usr/bin/dircolors ]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" alias ls='ls --color=auto' #alias dir='dir --color=auto' #alias vdir='vdir --color=auto'
alias grep='grep --color=auto' alias fgrep='fgrep --color=auto' alias egrep='egrep --color=auto' fi
# some more ls aliases alias ll='ls -alF' alias la='ls -A' alias l='ls -CF'
# Alias definitions. # You may want to put all your additions into a separate file like # ~/.bash_aliases, instead of adding them here directly. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then . ~/.bash_aliases fi
# enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile # sources /etc/bash.bashrc). if [ -f /etc/bash_completion ] && ! shopt -oq posix; then . /etc/bash_completion fi
if [ "$PS1" ] ; then mkdir -p -m 0700 /dev/cgroup/cpu/user/$$ > /dev/null 2>&1 echo $$ > /dev/cgroup/cpu/user/$$/tasks echo "1" > /dev/cgroup/cpu/user/$$/notify_on_release fi donde lo pongo dentro de los dos aver o en uno
|
|
|
|
« Última modificación: 16 Junio 2011, 13:15 por dvdr »
|
En línea
|
|
|
|
|
vertexSymphony
|
 No se encuentra ahí ? algo estás haciendo mal =/ Respecto a modificar PATH en .profile o .bashrc sería lo mismo, bashrc se ejecuta cada vez que se inicia una terminal bash y profile cada vez que iniciás sesión ... es a gusto ^^ (de las dos formas funciona) Saludos.
|
|
|
|
|
En línea
|
Mail/PGP/XMPP/D* gpg --recv-keys --keyserver pgp.mit.edu 0xCD21671D
|
|
|
XayOn
Desconectado
Mensajes: 115
Hack the world
|
Ejecuta: ls -lah /bin/feendingbottle
Es muy posible que eso sean enlaces simbolicos apuntando a localizaciones inexistentes, con dpkg lista los contenidos del paquete que has instalado dpkg -L <paquete>.deb
Y busca los lugares a donde apuntan los enlaces simbolicos, probablemente algo haya ido mal durante la instalacion.
|
|
|
|
|
En línea
|
|
|
|
XayOn
Desconectado
Mensajes: 115
Hack the world
|
Oh! Hacia mucho que no leia un tutorial de jano =) Acabo de instalarme el paquete, y no genera ningun enlace simbolico, de todos modos comprueba que todo esté en su sitio y reinstala Ah, y no es que "no se abra ni como administrador", es que lo que estas intentando acceder, directamente, no existe. Te lo deja bien claro.
|
|
|
|
|
En línea
|
|
|
|
dvdr
Desconectado
Mensajes: 503
|
como lo ejecutas mi pc es de 64bit ¿puede ser ese el problema ¡¡como le ordenas que se ejecute¿¿ reinstalo  meda ami que esto no corre en el de 64 bit 
|
|
|
|
« Última modificación: 16 Junio 2011, 16:03 por dvdr »
|
En línea
|
|
|
|
XayOn
Desconectado
Mensajes: 115
Hack the world
|
¿Que parte de archivo no encontrado no has leido? El paquete esta instalado, pasa el ls -lah que te dije antes ls -lah /bin/feedingbottle/ Debería salirte esto: -rwxrwxrwx 1 xayon xayon 109K nov 15 2009 aterm -rwxrwxrwx 1 xayon xayon 377K feb 27 08:47 beini -rwxrwxrwx 1 xayon xayon 226K ene 22 2010 fakeauth -rwxrwxrwx 1 xayon xayon 433K feb 27 08:47 feedingbottle -rwxr-xr-x 1 xayon xayon 4,4K may 19 12:56 feedingbottle_ubuntu_icon.png
Y al ejecutar: /bin/feedingbottle/feedingbottle Debería ejecutarse el programa. NOTA: No lleva la version al final!
|
|
|
|
|
En línea
|
|
|
|
|
|