J'ai ce problème après la mise à niveau Lubuntu de 12h10 à 13h04.
J'appuie Ctrl + Alt + 1, entrez votre identifiant, votre mot de passe, attendez deux secondes et obtenez: ♦: command not found"
. Après ce message, je peux taper des commandes sans problème, mais de quoi s'agit-il?
echo $PATH
/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/vitaly/bin:/usr/Java/jdk1.7.0_17/bin
Mon fichier .bashrc
est:
# ~/.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
case $- in
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# 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
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# 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'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
# 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 ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
Elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi
Mon fichier .profile
est:
# ~/.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
Le fichier /etc/profile
est ici: http://paste.ubuntu.com/5781361/
Premièrement, je pense que vous parlez du moment où vous allez dans tty1 - Ctrl + Alt + F1.
Maintenant, je pense que se passe ce que vous avez dit le plus probablement parce que vous avez un caractère étrange comme ♦ ( caractère de costume en diamant ou le badge spécial pour un modérateur askubuntu ) dans le fichier ~/.bashrc
ou ~/.profile
ou dans un autre fichier contenant diverses commandes d’initialisation.
Comme vous pouvez le voir dans l'image suivante, j'ai édité le fichier ~/.bashrc
en le mettant à l'intérieur de ♦ caractères sur une seule ligne. En conséquence, lorsque j'ouvre le terminal, le problème que vous décrivez est résolu:
Il se passe la même chose quand je vais dans tty1 avec Ctrl + Alt + F1.
Fichiers contenant des commandes d’initialisation lorsqu’un shell est appelé: /etc/profile
, /etc/bashrc
, ~/.bash_login
, ~/.profile
, ~/.bashrc
, ~/.bash_aliases
et peut-être d’autres. Voir Fichiers d'initialisation du shell .
Pour vérifier rapidement si l'un de ces fichiers contient un problème, vous pouvez utiliser la commande source
name__. Par exemple:
source ~/.bashrc
Après avoir inspecté /etc/profile
de http://paste.ubuntu.com/5781361/ , j'ai constaté que sur la ligne 31, il y avait "Dérogation de droite à gauche" - ‮
caractère unicode. Ouvrez simplement le fichier /etc/profile
avec Sudo -H gedit /etc/profile
, assurez-vous de supprimer ce caractère étrange et le problème disparaîtra.
Comme amusement, en HTML par exemple, si vous insérez ce caractère unicode avec un code décimal (‮
) devant une ligne, regardez ce qui se passe:
Ce texte est en arabe-anglais!
Nous allons trouver la commande exacte qui cause l'erreur en utilisant un " trap ".
Premièrement, nous devons créer un nouveau fichier de script dans le répertoire ~/bin
, appelons-le lib.trap.sh
(gedit ~/bin/lib.trap.sh
), avec les éléments suivants à l'intérieur:
lib_name='trap'
lib_version=20130620
#changed from lib_version=20121026 found it at https://stackoverflow.com/a/13099228/2353900 to work well at initialization of the Shell
stderr_log="/dev/shm/stderr.log"
#
# TO BE SOURCED ONLY ONCE:
#
###~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
if test "${g_libs[$lib_name]+_}"; then
return 0
else
if test ${#g_libs[@]} == 0; then
declare -A g_libs
fi
g_libs[$lib_name]=$lib_version
fi
#
# MAIN CODE:
#
###~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
set -o pipefail # trace ERR through pipes
set -o errtrace # trace ERR through 'time command' and other functions
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
exec 2>"$stderr_log"
###~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
#
# FUNCTION: EXIT_HANDLER
#
###~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
function exit_handler ()
{
local error_code="$?"
test $error_code == 0 && return;
#
# LOCAL VARIABLES:
# ------------------------------------------------------------------
#
local i=0
local regex=''
local mem=''
local error_file=''
local error_lineno=''
local error_message='unknown'
local lineno=''
#
# PRINT THE HEADER:
# ------------------------------------------------------------------
#
# Color the output if it's an interactive terminal
test -t 1 && tput bold; tput setf 4 ## red bold
echo -e "\n(!) EXIT HANDLER\n"
#
# GETTING LAST ERROR OCCURRED:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
#
# Read last file from the error log
# ------------------------------------------------------------------
#
if test -f "$stderr_log"
then
stderr=$( tail -n 1 "$stderr_log" )
rm "$stderr_log"
fi
#
# Managing the line to extract information:
# ------------------------------------------------------------------
#
if test -n "$stderr"
then
# Exploding stderr on :
mem="$IFS"
local shrunk_stderr=$( echo "$stderr" | sed 's/\: /\:/g' )
IFS=':'
local stderr_parts=( $shrunk_stderr )
IFS="$mem"
# Storing information on the error
error_file="${stderr_parts[0]}"
error_lineno="${stderr_parts[1]}"
error_message=""
for (( i = 3; i <= ${#stderr_parts[@]}; i++ ))
do
error_message="$error_message "${stderr_parts[$i-1]}": "
done
# Removing last ':' (colon character)
error_message="${error_message%:*}"
# Trim
error_message="$( echo "$error_message" | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//' )"
fi
#
# GETTING BACKTRACE:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
_backtrace=$( backtrace 2 )
#
# MANAGING THE OUTPUT:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
local lineno=""
regex='^([a-z]{1,}) ([0-9]{1,})$'
if [[ $error_lineno =~ $regex ]]
# The error line was found on the log
# (e.g. type 'ff' without quotes wherever)
# --------------------------------------------------------------
then
local row="${BASH_REMATCH[1]}"
lineno="${BASH_REMATCH[2]}"
echo -e "FILE:\t\t${error_file}"
echo -e "${row^^}:\t\t${lineno}\n"
echo -e "ERROR CODE:\t${error_code}"
test -t 1 && tput setf 6 ## white yellow
echo -e "ERROR MESSAGE:\n$error_message"
else
regex="^${error_file}\$|^${error_file}\s+|\s+${error_file}\s+|\s+${error_file}\$"
if [[ "$_backtrace" =~ $regex ]]
# The file was found on the log but not the error line
# (could not reproduce this case so far)
# ------------------------------------------------------
then
echo -e "FILE:\t\t$error_file"
echo -e "ROW:\t\tunknown\n"
echo -e "ERROR CODE:\t${error_code}"
test -t 1 && tput setf 6 ## white yellow
echo -e "ERROR MESSAGE:\n${stderr}"
# Neither the error line nor the error file was found on the log
# (e.g. type 'cp ffd fdf' without quotes wherever)
# ------------------------------------------------------
else
#
# The error file is the first on backtrace list:
# Exploding backtrace on newlines
mem=$IFS
IFS='
'
#
# Substring: I keep only the carriage return
# (others needed only for tabbing purpose)
IFS=${IFS:0:1}
local lines=( $_backtrace )
IFS=$mem
error_file=""
if test -n "${lines[1]}"
then
array=( ${lines[1]} )
for (( i=2; i<${#array[@]}; i++ ))
do
error_file="$error_file ${array[$i]}"
done
# Trim
error_file="$( echo "$error_file" | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//' )"
fi
echo -e "ROW, FILE:\t\t${lines[2] }\n"
echo -e "ERROR CODE:\t${error_code}"
test -t 1 && tput setf 6 ## white yellow
if test -n "${stderr}"
then
echo -e "ERROR MESSAGE:\n${stderr}"
else
echo -e "ERROR MESSAGE:\n${error_message}"
fi
fi
fi
#
# PRINTING THE BACKTRACE:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
test -t 1 && tput setf 7 ## white bold
echo -e "\n$_backtrace\n"
#
# EXITING:
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #
test -t 1 && tput setf 4 ## red bold
echo "Exiting!"
test -t 1 && tput sgr0 # Reset terminal
exit "$error_code"
}
trap exit_handler ERR # ! ! ! TRAP EXIT ! ! !
#trap exit ERR # ! ! ! TRAP ERR ! ! !
###~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
#
# FUNCTION: BACKTRACE
#
###~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~##
function backtrace
{
local _start_from_=0
local params=( "$@" )
if (( "${#params[@]}" >= "1" ))
then
_start_from_="$1"
fi
local i=0
local first=false
while caller $i > /dev/null
do
if test -n "$_start_from_" && (( "$i" + 1 >= "$_start_from_" ))
then
if test "$first" == false
then
echo "BACKTRACE IS:"
first=true
fi
caller $i
fi
let "i=i+1"
done
}
return 0
Maintenant, la seule chose à faire est de mettre la ligne suivante au début du fichier /etc/profile
(Sudo -H gedit /etc/profile
):
source '/home/<user_name>/bin/lib.trap.sh'
Changez <user_name>
avec votre nom d'utilisateur. Comme cela, tous les fichiers contenant des commandes d’initialisation lorsqu’un shell est appelé passeront par le "piège".
Pour vérifier si, par exemple, /etc/profile
contient une mauvaise commande, exécutez la commande suivante dans le terminal:
source bash/etc/profile
Si quelque chose ne va pas, comme dans ce cas, le résultat sera:
Donc, nous savons maintenant avec certitude qu'il y a un problème (command not found
) dans le fichier /etc/profile
à la ligne 32 (ce n'est pas à la ligne 31 comme ci-dessus car nous avons inséré une nouvelle ligne au début du fichier).
Merci beaucoup à Luca Borrione pour son script de cette réponse qui m'a aidé à compléter cette solution généralisée.
Pour déboguer les scripts d’initialisation de bash, exécutez ce qui suit (après vous être connecté à la console virtuelle).
PS4='+ $BASH_SOURCE:$LINENO:' bash -xlic ''
La procédure ci-dessus s'exécute en mode interactif (-i
) (-l
), comme le programme login
lorsque vous vous connectez à une console virtuelle. -c ''
le fait sortir immédiatement après avoir exécuté les scripts d’initialisation, et le -x
et le PS4=...
l’affiche en sortie de chaque commande avant son exécution, avec le nom du fichier et le numéro de ligne de cette commande. Cela devrait vous aider à déterminer quelle ligne de quel fichier réside la commande non valide.
♦ Remarque est le symbole que la police par défaut de la console virtuelle utilise pour imprimer les caractères pour lesquels elle ne possède pas de symbole.
Lors de la recherche dans vos fichiers d'initialisation, il peut être utile de rechercher l'hexadécimal utilisé pour la sortie de ♦. Le code hexadécimal pour ♦ est 2666, selon caractère Unicode 'BLACK DIAMOND SUIT' . Remarque: Il existe au moins un autre code hexadécimal, 25C6, qui produit le même symbole ou un symbole similaire. Voir les résultats de la recherche pour "diamond". Recherche de caractères Unicode
Peut-être que quelque chose comme \u2666
est dans l'un des scripts. From Manuel de référence Bash pour écho - "\ uhhhh le caractère Unicode (ISO/IEC 10646) dont la valeur est la valeur hexadécimale HHHH (un à quatre chiffres hexadécimaux)"
Cela dépend du codage de caractères utilisé, vous pouvez donc commencer par rechercher les plus probables. echo $LC_CTYPE
devrait renvoyer le codage de caractères utilisé par votre shell. Voir Comment obtenir le codage de caractères du terminal
Ecrivez le chemin complet d'un outil connu qui vous permettra de modifier votre fichier bashrc, ainsi que le chemin complet de votre fichier bashrc.
/bin/nano /home/username/.bashrc
Recherchez tout abus concernant votre variable PATH
et mettez-le en commentaire. Probablement lorsque vous essayez d’ajouter quelque chose à votre chemin, il a été cité entre guillemets au lieu de guillemet double.
PATH='$PATH:/path/to/new/tool' # very BAD, single quotes won't expand PATH
# ^ ^
PATH="$PATH:/path/to/new/tool" # Good! The double quotes allow variable expansion
Copiez votre .bashrc dans un outil tel que https://www.shellcheck.net/ pour voir si vous avez des problèmes criants avec l'utilisation de bash.
J'espère que cela pourra aider.