LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1726|回复: 5

开机能进入登陆窗口,输入密码切进不了桌面了。

[复制链接]
发表于 2006-10-1 23:46:33 | 显示全部楼层 |阅读模式
开机能进入登陆窗口,输入密码切进不了桌面了。
昨天我也记不清楚是改了什么。。
我只记得昨天晚上睡之前一会,在console中输入任何原来的命令都说找不到。
比如。
#ls
#can't found ls

就是这样。。。
今天开机就进不了桌面了,但可以进到登陆窗口,(我用的KDE),我试着进了一个别的窗体去(xfce),也不行。。。
于是我进入F6控制台,准备还原一下xorg.conf试一下,看行不行,可是在控制台中仍然不能用命令。。。。。。。。。

高手帮帮忙。。


(还顺随问个问题,是不是~/.kde/Autostart下的所有sh文件开机进KDE桌面时都会自动运行这脚本文件?)
发表于 2006-10-2 02:16:38 | 显示全部楼层
echo $PATH,是不是没有设置阿。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-10-2 22:30:28 | 显示全部楼层
我想起来了。/


我是把~/.bash_profile原来的qt配置变量都删了。。。

to楼上。我现在都不能用命令。怎么echo啊?

5555
回复 支持 反对

使用道具 举报

发表于 2006-10-3 19:14:27 | 显示全部楼层
你真衰...新版本出来的前一天装10.2
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-10-4 13:39:46 | 显示全部楼层
我的/etc/profile


  1. # /etc/profile: This file contains system-wide defaults used by
  2. # all Bourne (and related) shells.

  3. # Set the values for some environment variables:
  4. export MINICOM="-c on"
  5. export MANPATH=/usr/local/man:/usr/man:/usr/X11R6/man
  6. export HOSTNAME="`cat /etc/HOSTNAME`"
  7. export LESSOPEN="|lesspipe.sh %s"
  8. export LESS="-M"
  9. export XMODIFIERS="@im=fcitx"

  10. # If the user doesn't have a .inputrc, use the one in /etc.
  11. if [ ! -r "$HOME/.inputrc" ]; then
  12.   export INPUTRC=/etc/inputrc
  13. fi

  14. # Set the default system $PATH:
  15. PATH="/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games"

  16. # For root users, ensure that /usr/local/sbin, /usr/sbin, and /sbin are in
  17. # the $PATH.  Some means of connection don't add these by default (sshd comes
  18. # to mind).
  19. if [ "`id -u`" = "0" ]; then
  20.   echo $PATH | grep /usr/local/sbin 1> /dev/null 2> /dev/null
  21.   if [ ! $? = 0 ]; then
  22.     PATH=/usr/local/sbin:/usr/sbin:/sbin:$PATH
  23.   fi
  24. fi

  25. # I had problems using 'eval tset' instead of 'TERM=', but you might want to
  26. # try it anyway. I think with the right /etc/termcap it would work great.
  27. # eval `tset -sQ "$TERM"`
  28. if [ "$TERM" = "" -o "$TERM" = "unknown" ]; then
  29. TERM=linux
  30. fi

  31. # Set ksh93 visual editing mode:
  32. if [ "$SHELL" = "/bin/ksh" ]; then
  33.   VISUAL=emacs
  34. #  VISUAL=gmacs
  35. #  VISUAL=vi
  36. fi

  37. # Set a default shell prompt:
  38. #PS1='`hostname`:`pwd`# '
  39. if [ "$SHELL" = "/bin/pdksh" ]; then
  40. PS1='! $ '
  41. elif [ "$SHELL" = "/bin/ksh" ]; then
  42. PS1='! ${PWD/#$HOME/~}$ '
  43. elif [ "$SHELL" = "/bin/zsh" ]; then
  44. PS1='%n@%m:%~%# '
  45. elif [ "$SHELL" = "/bin/ash" ]; then
  46. PS1='$ '
  47. else
  48. PS1='\u@\h:\w\$ '
  49. fi
  50. PS2='> '
  51. export PATH DISPLAY LESS TERM PS1 PS2

  52. # Default umask.  A umask of 022 prevents new files from being created group
  53. # and world writable.
  54. umask 022

  55. # Set up the LS_COLORS and LS_OPTIONS environment variables for color ls:
  56. if [ "$SHELL" = "/bin/zsh" ]; then
  57. eval `dircolors -z`
  58. elif [ "$SHELL" = "/bin/ash" ]; then
  59. eval `dircolors -s`
  60. else
  61. eval `dircolors -b`
  62. fi

  63. # Notify user of incoming mail.  This can be overridden in the user's
  64. # local startup file (~/.bash.login or whatever, depending on the shell)
  65. if [ -x /usr/bin/biff ]; then
  66. biff y
  67. fi

  68. # Append any additional sh scripts found in /etc/profile.d/:
  69. for profile_script in /etc/profile.d/*.sh ; do
  70.   if [ -x $profile_script ]; then
  71.     . $profile_script
  72.   fi
  73. done
  74. unset profile_script

  75. # For non-root users, add the current directory to the search path:
  76. if [ ! "`id -u`" = "0" ]; then
  77. PATH="$PATH:."
  78. fi
复制代码


有什么问题吗?要怎么改啊
回复 支持 反对

使用道具 举报

发表于 2006-10-13 10:27:56 | 显示全部楼层
你的PATH好像没问题。你进console mode有问题吗?可以cd吗?只是不可以ls?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表