<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.ubuntu-fr.org/extern.php?action=feed&amp;tid=1093831&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Forum Ubuntu-fr.org / Terminal demande le sudo au demarage]]></title>
		<link>http://forum.ubuntu-fr.org/viewtopic.php?id=1093831</link>
		<description><![CDATA[Les sujets les plus récents dans Terminal demande le sudo au demarage.]]></description>
		<lastBuildDate>Mon, 05 Nov 2012 08:33:13 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Réponse à&#160;:  Terminal demande le sudo au demarage]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11396401#p11396401</link>
			<description><![CDATA[<p>Je dirais même ces deux dernières lignes, le &quot;0 : commande introuvable &quot; n&#039;étant pas l&#039;effet du ctrl+C mais bien le contenu de la dernière ligne.</p>]]></description>
			<author><![CDATA[dummy@example.com (slasher-fun)]]></author>
			<pubDate>Mon, 05 Nov 2012 08:33:13 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11396401#p11396401</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Terminal demande le sudo au demarage]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11395391#p11395391</link>
			<description><![CDATA[<p>Et bien cette dernière ligne est responsable de la demande de mot de passe. Fais exécuter le script par root au démarrage ou lance le manuellement.<br />(En plus, ici ta commande est lancée à chaque fois qu&#039;un terminal est ouvert, ce qui n&#039;est sûrement pas idéal…)</p>]]></description>
			<author><![CDATA[dummy@example.com (nesthib)]]></author>
			<pubDate>Mon, 05 Nov 2012 04:29:49 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11395391#p11395391</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Terminal demande le sudo au demarage]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11394371#p11394371</link>
			<description><![CDATA[<div class="codebox"><pre class="vscroll"><code>[sudo] password for pilou: 
0 : commande introuvable ( effet du Ctrl+C )
pilou@pilou-desktop:~$ cat ~/.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&#039;t do anything
[ -z &quot;$PS1&quot; ] &amp;&amp; return

# don&#039;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&#039;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 &quot;**&quot; 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 ] &amp;&amp; eval &quot;$(SHELL=/bin/sh lesspipe)&quot;

# set variable identifying the chroot you work in (used in the prompt below)
if [ -z &quot;$debian_chroot&quot; ] &amp;&amp; [ -r /etc/debian_chroot ]; then
    debian_chroot=$(cat /etc/debian_chroot)
fi

# set a fancy prompt (non-color, unless we know we &quot;want&quot; color)
case &quot;$TERM&quot; 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 &quot;$force_color_prompt&quot; ]; then
    if [ -x /usr/bin/tput ] &amp;&amp; tput setaf 1 &gt;&amp;/dev/null; then
        # We have color support; assume it&#039;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 [ &quot;$color_prompt&quot; = yes ]; then
    PS1=&#039;${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ &#039;
else
    PS1=&#039;${debian_chroot:+($debian_chroot)}\u@\h:\w\$ &#039;
fi
unset color_prompt force_color_prompt

# If this is an xterm set the title to user@host:dir
case &quot;$TERM&quot; in
xterm*|rxvt*)
    PS1=&quot;\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1&quot;
    ;;
*)
    ;;
esac

# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dircolors &amp;&amp; eval &quot;$(dircolors -b ~/.dircolors)&quot; || eval &quot;$(dircolors -b)&quot;
    alias ls=&#039;ls --color=auto&#039;
    #alias dir=&#039;dir --color=auto&#039;
    #alias vdir=&#039;vdir --color=auto&#039;

    alias grep=&#039;grep --color=auto&#039;
    alias fgrep=&#039;fgrep --color=auto&#039;
    alias egrep=&#039;egrep --color=auto&#039;
fi

# some more ls aliases
alias ll=&#039;ls -alF&#039;
alias la=&#039;ls -A&#039;
alias l=&#039;ls -CF&#039;

# Add an &quot;alert&quot; alias for long running commands.  Use like so:
#   sleep 10; alert
alias alert=&#039;notify-send --urgency=low -i &quot;$([ $? = 0 ] &amp;&amp; echo terminal || echo error)&quot; &quot;$(history|tail -n1|sed -e &#039;\&#039;&#039;s/^\s*[0-9]\+\s*//;s/[;&amp;|]\s*alert$//&#039;\&#039;&#039;)&quot;&#039;

# 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&#039;t need to enable
# this, if it&#039;s already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] &amp;&amp; ! shopt -oq posix; then
    . /etc/bash_completion
fi

echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope
0</code></pre></div><p>Merci beaucoup !</p><p>La dernière ligne, un ajout. Merci beaucoup ! Une ligne que j&#039;avais add pour lancer cette comande direct au demarage en sudo, pour pouvoir jouer a Diablo 3 sur cette machine...</p>]]></description>
			<author><![CDATA[dummy@example.com (Lrnv)]]></author>
			<pubDate>Sun, 04 Nov 2012 23:11:42 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11394371#p11394371</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  Terminal demande le sudo au demarage]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11393781#p11393781</link>
			<description><![CDATA[<p>Bonjour,</p><p>Peux-tu poster le retour de</p><div class="codebox"><pre><code>cat ~/.bashrc</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (slasher-fun)]]></author>
			<pubDate>Sun, 04 Nov 2012 22:32:05 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11393781#p11393781</guid>
		</item>
		<item>
			<title><![CDATA[Terminal demande le sudo au demarage]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11393591#p11393591</link>
			<description><![CDATA[<p>A chaque fois que je lance L&#039;app Terminal ou l&#039;app console, meme en tapant &quot;konsole&quot; dans un autre Terminal ou j&#039;ai juste fais un Ctrl+C pour eviter ce problème, il me fait :</p><div class="quotebox"><cite>Terminal a écrit&#160;:</cite><blockquote><div><p>[sudo] password for pilou:</p></div></blockquote></div><p>Que ce passe-til ?</p><p>Meme en fesant un Ctrl + Alt + F1 et en me logant en user normal, j&#039;ai ce problème.</p>]]></description>
			<author><![CDATA[dummy@example.com (Lrnv)]]></author>
			<pubDate>Sun, 04 Nov 2012 22:09:12 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11393591#p11393591</guid>
		</item>
	</channel>
</rss>
