免费注册 查看新帖 |

Chinaunix

广告
  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4630 | 回复: 3
打印 上一主题 下一主题

[系统安装] ubuntu 12.04 命令行不显示用户名和路径了 [复制链接]

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-02-25 18:10 |只看该作者 |倒序浏览

请各位帮我看看这是咋个回事。


Welcome to Ubuntu 12.04.2 LTS (GNU/Linux 3.5.0-23-generic x86_64)

* Documentation:  https://help.ubuntu.com/

  System information as of Wed Feb 26 02:08:34 CST 2014

  System load:  0.0                Processes:           177
  Usage of /:   76.1% of 31.55GB   Users logged in:     2
  Memory usage: 40%                IP address for eth0: 172.16.1.15
  Swap usage:   0%                 IP address for eth1: 192.168.1.12

  Graph this data and manage this system at https://landscape.canonical.com/

*** /dev/sdc1 will be checked for errors at next reboot ***
*** /dev/sdc2 will be checked for errors at next reboot ***
*** /dev/sdc3 will be checked for errors at next reboot ***

Last login: Wed Feb 26 02:07:37 2014 from 10.0.17.139
$
$
$

论坛徽章:
22
丑牛
日期:2014-08-15 14:32:0015-16赛季CBA联赛之同曦
日期:2017-12-14 15:28:14黑曼巴
日期:2017-08-10 08:14:342017金鸡报晓
日期:2017-02-08 10:39:42黑曼巴
日期:2016-11-15 15:48:38CU十四周年纪念徽章
日期:2016-11-09 13:19:1015-16赛季CBA联赛之同曦
日期:2016-04-08 18:00:03平安夜徽章
日期:2015-12-26 00:06:30程序设计版块每日发帖之星
日期:2015-12-03 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-09 06:20:002015亚冠之吉达阿赫利
日期:2015-07-03 08:39:42
2 [报告]
发表于 2014-02-25 18:56 |只看该作者
设置环境变量PS1

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
3 [报告]
发表于 2014-02-26 08:29 |只看该作者
回复 2# amarant


    版主你还,我设置过PS1,
  1. $ cat /etc/bash.bashrc
  2. # System-wide .bashrc file for interactive bash(1) shells.

  3. # To enable the settings / commands in this file for login shells as well,
  4. # this file has to be sourced in /etc/profile.

  5. # If not running interactively, don't do anything
  6. [ -z "$PS1" ] && return

  7. # check the window size after each command and, if necessary,
  8. # update the values of LINES and COLUMNS.
  9. shopt -s checkwinsize

  10. # set variable identifying the chroot you work in (used in the prompt below)
  11. if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
  12.     debian_chroot=$(cat /etc/debian_chroot)
  13. fi

  14. # set a fancy prompt (non-color, overwrite the one in /etc/profile)
  15. PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '

  16. # Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
  17. # If this is an xterm set the title to user@host:dir
  18. #case "$TERM" in
  19. #xterm*|rxvt*)
  20. #    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
  21. #    ;;
  22. #*)
  23. #    ;;
  24. #esac

  25. # enable bash completion in interactive shells
  26. #if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
  27. #    . /etc/bash_completion
  28. #fi

  29. # sudo hint
  30. if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; then
  31.     case " $(groups) " in *\ admin\ *)
  32.     if [ -x /usr/bin/sudo ]; then
  33.         cat <<-EOF
  34.         To run a command as administrator (user "root"), use "sudo <command>".
  35.         See "man sudo_root" for details.

  36.         EOF
  37.     fi
  38.     esac
  39. fi

  40. # if the command-not-found package is installed, use it
  41. if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
  42.         function command_not_found_handle {
  43.                 # check because c-n-f could've been removed in the meantime
  44.                 if [ -x /usr/lib/command-not-found ]; then
  45.                    /usr/bin/python /usr/lib/command-not-found -- "$1"
  46.                    return $?
  47.                 elif [ -x /usr/share/command-not-found/command-not-found ]; then
  48.                    /usr/bin/python /usr/share/command-not-found/command-not-found -- "$1"
  49.                    return $?
  50.                 else
  51.                    printf "%s: command not found\n" "$1" >&2
  52.                    return 127
  53.                 fi
  54.         }
  55. fi
复制代码

论坛徽章:
31
CU大牛徽章
日期:2013-03-13 15:15:08CU大牛徽章
日期:2013-05-20 10:46:18CU大牛徽章
日期:2013-05-20 10:46:25CU大牛徽章
日期:2013-05-20 10:46:31CU大牛徽章
日期:2013-05-20 10:46:38CU大牛徽章
日期:2013-05-20 10:46:44CU大牛徽章
日期:2013-09-18 15:16:55CU大牛徽章
日期:2013-09-18 15:18:22CU大牛徽章
日期:2013-09-18 15:18:43CU十二周年纪念徽章
日期:2013-10-24 15:41:34丑牛
日期:2013-12-01 10:11:07水瓶座
日期:2014-01-15 08:47:25
4 [报告]
发表于 2014-02-26 08:35 |只看该作者
amarant 发表于 2014-02-25 18:56
设置环境变量PS1



找到原因了,是/etc/passwd的权限问题。

昨天把这个文件的权限改成了600,然后就处问题了。
应该是644.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP