Visualizzazione dei risultati da 1 a 6 su 6

Discussione: /etc/profile

  1. #1
    Utente di HTML.it
    Registrato dal
    Dec 2003
    Messaggi
    8

    /etc/profile

    ehm... credo di aver fatto una boiata qualcuno gentilmente potrebbe postarmi il suo file "profile" sotto /etc?



    Grazie mille

    Luca
    Powered by Slackware 9.1 Kde 3.2.1 Kernel 2.4.25 || 2.6.4 on Toshiba Satellite M30-154

  2. #2
    Utente di HTML.it L'avatar di gianiaz
    Registrato dal
    May 2001
    Messaggi
    8,027
    codice:
    # /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
    # and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
    
    PATH="/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games"
    
    if [ "$PS1" ]; then
      if [ "$BASH" ]; then
        PS1='\u@\h:\w\$ '
      else
        if [ "`id -u`" -eq 0 ]; then
          PS1='# '
        else
          PS1='$ '
        fi
      fi
    fi
    
    export PATH
    
    umask 022
    io uso debian però, non so se ci sono delle opzioni diverse rispetto alla slack.

    ciao

  3. #3
    Io ho gentoo... comunque, eccolo:

    codice:
    # /etc/profile:
    # $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/profile,v 1.23 2003/04/29 21:23:18 azarah Exp $
    
    if [ -e "/etc/profile.env" ]
    then
            . /etc/profile.env
    fi
    
    # 077 would be more secure, but 022 is generally quite realistic
    umask 022
    
    ESC="\033"
    ROSSO=33
    BLU=34
    
    if [ `/usr/bin/whoami` = 'root' ]
    then
            # Do not set PS1 for dumb terminals
            if [ "$TERM" != 'dumb'  ] && [ -n "$BASH" ]
            then
                    export PS1='[\h] (\W) \\$ '
            fi
            export PATH="/bin:/sbin:/usr/bin:/usr/sbin:${ROOTPATH}"
    else
            # Do not set PS1 for dumb terminals
            if [ "$TERM" != 'dumb'  ] && [ -n "$BASH" ]
            then
                    export PS1='\u@\h\ \W\ \$ \[\033[00m\]'
            fi
            export PATH="/bin:/usr/bin:${PATH}"
    fi
    unset ROOTPATH
    
    if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]
    then
            export INPUTRC="/etc/inputrc"
    fi
    
    # Extract the value of EDITOR
    [ -z "$EDITOR" ] && EDITOR="`. /etc/rc.conf 2>/dev/null; echo $EDITOR`"
    [ -z "$EDITOR" ] && EDITOR="`. /etc/conf.d/basic 2>/dev/null; echo $EDITOR`"
    [ -z "$EDITOR" ] && EDITOR="/bin/nano"
    export EDITOR
    ... :master: riconosco l'esistenza di un limite a tutto , ma non l'accetto ...

  4. #4
    Utente di HTML.it L'avatar di Burns
    Registrato dal
    Nov 2002
    Messaggi
    160
    io su slack:
    codice:
    # /etc/profile: This file contains system-wide defaults used by
    # all Bourne (and related) shells.
    
    # Set the values for some environment variables:
    export MINICOM="-c on"
    export MANPATH=/usr/local/man:/usr/man:/usr/X11R6/man
    export HOSTNAME="`cat /etc/HOSTNAME`"
    export LESSOPEN="|lesspipe.sh %s"
    export LESS="-M"
    
    LC_ALL="it_IT"
    export LANG="it_IT@euro"
    export CHARSET="iso8859-15" 
    
    # If the user doesn't have a .inputrc, use the one in /etc.
    if [ ! -r "$HOME/.inputrc" ]; then
      export INPUTRC=/etc/inputrc
    fi
    
    # Set the default system $PATH:
    PATH="/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games"
    
    # For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
    # the $PATH.  Some means of connection don't add these by default (sshd comes
    # to mind).
    if [ "`id -u`" = "0" ]; then
      echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
      if [ ! $? = 0 ]; then
        PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
      fi
    fi
    
    # I had problems using 'eval tset' instead of 'TERM=', but you might want to 
    # try it anyway. I think with the right /etc/termcap it would work great.
    # eval `tset -sQ "$TERM"`
    if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
     TERM=linux
    fi
    
    # Set ksh93 visual editing mode:
    if [ "$SHELL" = "/bin/ksh" ]; then
      VISUAL=emacs
    #  VISUAL=gmacs
    #  VISUAL=vi
    fi
    
    # Set a default shell prompt:
    #PS1='`hostname`:`pwd`# '
    if [ "$SHELL" = "/bin/pdksh" ]; then
     PS1='! $ '
    elif [ "$SHELL" = "/bin/ksh" ]; then
     PS1='! ${PWD/#$HOME/~}$ '
    elif [ "$SHELL" = "/bin/zsh" ]; then
     PS1='%n@%m:%~%# '
    elif [ "$SHELL" = "/bin/ash" ]; then
     PS1='$ '
    else
     PS1='\u@\h:\w\$ '
    fi
    PS2='> '
    export PATH DISPLAY LESS TERM PS1 PS2
    
    # Default umask.  A umask of 022 prevents new files from being created group
    I'm not a geek!
    I'm a level 12 Paladin.
    [Jabber|ICQ|GPG]

  5. #5
    Fedora Core 1:

    codice:
    # /etc/profile
     
    # System wide environment and startup programs, for login setup
    # Functions and aliases go in /etc/bashrc
     
    pathmunge () {
            if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
               if [ "$2" = "after" ] ; then
                  PATH=$PATH:$1
               else
                  PATH=$1:$PATH
               fi
            fi
    }
     
    # Path manipulation
    if [ `id -u` = 0 ]; then
            pathmunge /sbin
            pathmunge /usr/sbin
            pathmunge /usr/local/sbin
    fi
     
    pathmunge /usr/X11R6/bin after
     
    unset pathmunge
     
    # No core files by default
    ulimit -S -c 0 > /dev/null 2>&1
     
    USER="`id -un`"
    LOGNAME=$USER
    MAIL="/var/spool/mail/$USER"
     
    HOSTNAME=`/bin/hostname`
    HISTSIZE=1000
     
    if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
        INPUTRC=/etc/inputrc
    fi
     
    export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC
     
    for i in /etc/profile.d/*.sh ; do
        if [ -r "$i" ]; then
            . $i
        fi
    done
     
    unset i

  6. #6
    Utente di HTML.it
    Registrato dal
    Dec 2003
    Messaggi
    8
    grazie a tutti


    ma continua ad esserci qualcosa che non va...
    Powered by Slackware 9.1 Kde 3.2.1 Kernel 2.4.25 || 2.6.4 on Toshiba Satellite M30-154

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.