sh: Arquivo ou diretório não encontrado

1. sh: Arquivo ou diretório não encontrado

Gustavo
4DX

(usa Fedora)

Enviado em 21/04/2016 - 23:39h

Olá a todos!
Peço desculpa pela inconveniencia, sou novo aqui e no Linux também, migrei definitivamente a alguns meses e procuro me adaptar em tudo que fazia em outro sistema. Já conhecia o poder do linux a muito tempo e fuçava, mas nunca a serio.
Recentemente instalei em meu korora 22 o android studio, mas antes de completar a instalação, durante isso tive um problema e o mesmo persiste aqui.
Quando abro meu konsole ele de imediato me da a seguinte impressão:

sh: studio.sh: Arquivo ou diretório não encontrado

ja tentei remover mais o mesmo não sai da memoria, "digamos assim"
lembrando que tentei dar nome a um script por alias studio...
mas ambos não estão mais considerados e nem mesmo quando crio um outro qualquer, por mais simples que seja, não armazena até a proxima reinicialização... ex: alias cls='clear' ....
2 problemas, mas o do konsole com essa msg me incomoda mt...
O unico sucesso até agora foi consiguir instalar o android studio por comando"
alguem pode me ajudar?
agradeço muito desde ja, e me desculpem por tudo...



  


2. Re: sh: Arquivo ou diretório não encontrado

Jeffersson Abreu
ctw6av

(usa Nenhuma)

Enviado em 22/04/2016 - 01:43h

Qual foi o arquivo que você editou para criar este alias?? Ache-o e restaure o mesmo!. Para permanecerem até a próxima inicialização tem de estar no arquivo .bashrc da sua home ou não serão recriados no próximo boot ou secção.

veja: https://pt.wikipedia.org/wiki/Alias_%28comando%29





======================================================
Não existe saber mais ou saber menos, existem saberes diferentes.
ID = LPI000359879
======================================================





3. SH: ARQUIVO OU DIRETÓRIO NÃO ENCONTRADO

Gustavo
4DX

(usa Fedora)

Enviado em 22/04/2016 - 11:00h

Vou tentar Aqui agora, vlw


4. SH: ARQUIVO OU DIRETÓRIO NÃO ENCONTRADO

Gustavo
4DX

(usa Fedora)

Enviado em 22/04/2016 - 12:12h

putz! não to conseguindo achar... ja fui por linha de comando... não encontro o arquivo...
nem apagar o bashrc to conseguindo...
acredito q o mesmo esta oculto tbm, pois tem ponto na frente e aparece em vermelho pra mim no shell...

:/
e agr?
mó desanimo, Agr aparece isso tbm:
bash: __git_ps1:cmando não encontrado


5. Re: sh: Arquivo ou diretório não encontrado

Jeffersson Abreu
ctw6av

(usa Nenhuma)

Enviado em 22/04/2016 - 12:26h

Não delete o arquivo .bashrc ou terá alguns probleminhas, poste ele aqui talvez eu possa ajudá-lo melhor







======================================================
Não existe saber mais ou saber menos, existem saberes diferentes.
ID = LPI000359879
======================================================





6. SH: ARQUIVO OU DIRETÓRIO NÃO ENCONTRADO

Gustavo
4DX

(usa Fedora)

Enviado em 22/04/2016 - 12:32h

desculpa mesmo, mas ao abrir o arquivo bashrc e bash.bashrc não se encontra nada no bash. e no bashrc só isso:
# /etc/bashrc

# System wide functions and aliases
# Environment stuff goes in /etc/profile

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

# are we an interactive shell?
if [ "$PS1" ]; then
if [ -z "$PROMPT_COMMAND" ]; then
case $TERM in
xterm*|vte*)
if [ -e /etc/sysconfig/bash-prompt-xterm ]; then
PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm
elif [ "${VTE_VERSION:-0}" -ge 3405 ]; then
PROMPT_COMMAND="__vte_prompt_command"
else
PROMPT_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
fi
;;
screen*)
if [ -e /etc/sysconfig/bash-prompt-screen ]; then
PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen
else
PROMPT_COMMAND='printf "\033k%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/\~}"'
fi
;;
*)
[ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default
;;
esac
fi
# Turn on parallel history
shopt -s histappend
history -a
# Turn on checkwinsize
shopt -s checkwinsize
[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "
# You might want to have e.g. tty in prompt (e.g. more virtual machines)
# and console windows
# If you want to do so, just add e.g.
# if [ "$PS1" ]; then
# PS1="[\u@\h:\l \W]\\$ "
# fi
# to your custom modification shell script in /etc/profile.d/ directory
fi

if ! shopt -q login_shell ; then # We're not a login shell
# Need to redefine pathmunge, it get's undefined at the end of /etc/profile
pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
esac
}

# By default, we want umask to get set. This sets it for non-login shell.
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
umask 002
else
umask 022
fi

SHELL=/bin/bash
# Only display echos from profile.d scripts if we are no login shell
# and interactive - otherwise just process them to set envvars
for i in /etc/profile.d/*.sh; do
if [ -r "$i" ]; then
if [ "$PS1" ]; then
. "$i"
else
. "$i" >/dev/null
fi
fi
done

unset i
unset -f pathmunge
fi
# vim:ts=4:sw=4
eu abri ele indo pelo dolphin, e usei o kwrite para isso.....
não deletei, mas acho tudo isso mt estranho e confuso ja q não tem nada aqui relacionado ao q fiz.... nada de .sh que executei ontem....


7. Re: sh: Arquivo ou diretório não encontrado

Jeffersson Abreu
ctw6av

(usa Nenhuma)

Enviado em 22/04/2016 - 12:44h

Poste a saída do /etc/profile







======================================================
Não existe saber mais ou saber menos, existem saberes diferentes.
ID = LPI000359879
======================================================





8. Re: sh: Arquivo ou diretório não encontrado

Alberto Federman Neto.
albfneto

(usa openSUSE)

Enviado em 22/04/2016 - 12:47h

não mexa no /etc/bashrc
Geralmente, os alias ficam no /home/seu_nome_de_usuário/.bashrc

é "ponto bashrc" e está "hidden", escondido.... Faz um favor, posta a saída do último destes comandos


$ cd /
$ cd ~/
$ ls -a


Se não consegue usar o terminal normal... tente assim: Todo linux temum atalho de teclado para abrir uma tela gráfica de executar comandosl. No Sabayon é ALT+F2, mas não sei se no Fedora é. Abra esse "executar comando"...
agora execute isto:

se for Fedora KDE é:

$ kdesu kwrite ~/.bashrc 


Se for Fedora GNOME é:

$ gksu gedit  ~/.bashrc 


Apareceu seu bashrc? se sim, posta ele aqui, copie e cole (ainda sem editar nada) todas as linhas do arquivo.
¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨
Albfneto,
Ribeirão Preto, S.P., Brasil.
Usuário Linux, Linux Counter: #479903.
Distros Favoritas: Sabayon, Gentoo, openSUSE, Mageia e OpenMandriva.


9. Re: sh: Arquivo ou diretório não encontrado

Jeffersson Abreu
ctw6av

(usa Nenhuma)

Enviado em 22/04/2016 - 13:00h

Tenho a mera impressão de que o erro se encontra aqui:
SHELL=/bin/bash
# Only display echos from profile.d scripts if we are no login shell
# and interactive - otherwise just process them to set envvars
for i in /etc/profile.d/*.sh; do
if [ -r "$i" ]; then
if [ "$PS1" ]; then
. "$i"
else
. "$i" >/dev/null
fi
fi

dentro dos arquivos do /etc/profile.d/*.sh


======================================================
Não existe saber mais ou saber menos, existem saberes diferentes.
ID = LPI000359879
======================================================





10. SH: ARQUIVO OU DIRETÓRIO NÃO ENCONTRADO

Gustavo
4DX

(usa Fedora)

Enviado em 22/04/2016 - 13:24h

saida ls -a
. .dbus .java .thumbnails
.. .devscripts_cache java-controleestoque .translate_toolkit
.android .dmrc .kde .Trash
Android Documentos .local Videos
.AndroidStudio2.0 Documents .mozilla Vídeos
AndroidStudioProjects Downloads Music .viminfo
Área de trabalho .eclipse Música .vimrc
.bash_history .esd_auth .octave_hist .virtaal
.bash_logout .fonts.conf octave-workspace VirtualBox VMs
.bash_profile .gnome Pictures .wine
.bashrc .gnome2 .pki winetricks
.cache .golly Público workspace
.ccache .gradle .sxiv .xine
.config .gtkrc-2.0-kde4 Templates .xsession-errors
.cura-lulzbot Imagens test.db

saida profile:


# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

# It's NOT a good idea to change this file unless you know what you
# are doing. It's much better to create a custom.sh shell script in
# /etc/profile.d/ to make custom changes to your environment, as this
# will prevent the need for merging in future updates.

pathmunge () {
case ":${PATH}:" in
*:"$1":*)
;;
*)
if [ "$2" = "after" ] ; then
PATH=$PATH:$1
else
PATH=$1:$PATH
fi
esac
}


if [ -x /usr/bin/id ]; then
if [ -z "$EUID" ]; then
# ksh workaround
EUID=`id -u`
UID=`id -ru`
fi
USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
fi

# Path manipulation
if [ "$EUID" = "0" ]; then
pathmunge /usr/sbin
pathmunge /usr/local/sbin
else
pathmunge /usr/local/sbin after
pathmunge /usr/sbin after
fi

HOSTNAME=`/usr/bin/hostname 2>/dev/null`
HISTSIZE=1000
if [ "$HISTCONTROL" = "ignorespace" ] ; then
export HISTCONTROL=ignoreboth
else
export HISTCONTROL=ignoredups
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE HISTCONTROL

# By default, we want umask to get set. This sets it for login shell
# Current threshold for system reserved uid/gids is 200
# You could check uidgid reservation validity in
# /usr/share/doc/setup-*/uidgid file
if [ $UID -gt 199 ] && [ "`id -gn`" = "`id -un`" ]; then
umask 002
else
umask 022
fi

for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
if [ "${-#*i}" != "$-" ]; then
. "$i"
else
. "$i" >/dev/null
fi
fi
done

unset i
unset -f pathmunge


-- No terminal olha oq acontece quando subo bashrc --

# kwrite ~/.bashrc
Couldn't start kglobalaccel from org.kde.kglobalaccel.service: QDBusError("org.freedesktop.DBus.Error.Disconnected", "Not connected to D-Bus server")
"Session bus not found
To circumvent this problem try the following command (with Linux and bash)
export $(dbus-launch)"
bash: __git_ps1: comando não encontrado

vlw gente


11. gedit ~/.bashrc

Gustavo
4DX

(usa Fedora)

Enviado em 22/04/2016 - 13:27h

bash vazio....



12. Re: sh: Arquivo ou diretório não encontrado

Alberto Federman Neto.
albfneto

(usa openSUSE)

Enviado em 22/04/2016 - 14:29h

SEU BASH RC apareceu, na saida do comando


.bashrc


PRIMEIRO ISTO, saida deste comando:

$ cat ~/.bashrc


¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨
Albfneto,
Ribeirão Preto, S.P., Brasil.
Usuário Linux, Linux Counter: #479903.
Distros Favoritas: Sabayon, Gentoo, openSUSE, Mageia e OpenMandriva.



  
01 02 03



Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts