0

我在旧的tomatousb上进行了ipkg升级,这似乎至少导致了一个损坏的ls命令:

  [root@tomatousb root]$ /bin/ls /
   /
  [root@tomatousb root]$ ls /bin
   /bin

但是,结果以不同的颜色显示。还有奇怪的行为:

   [root@tomatousb root]$ echo $PATH
   echo $PATH
   sh: echo: Permission denied

   [root@tomatousb root]$ /bin/echo $PATH
   /bin/echo $PATH
   /opt/bin:/opt/sbin:/bin:/sbin:/usr/bin:/usr/sbin

我没有胶水有什么问题。我看到的日志如下:

 /var/log/messages
 Jan  1 04:00:11 tomatousb user.info kernel: ipt_recent v0.3.1: Stephen Frost <sfrost@snowman.net>.  http://snowman.net/projects/ipt_recent/
 Jan 31 23:10:21 tomatousb user.notice root: <<<< MPCSD: Config-files not found in /jffs/config/mpcs & /opt/etc/mpcs!!! Exit. >>>>
 Jan 31 23:11:02 tomatousb cron.err crond[143]: time disparity of 25290430 minutes detected
 Jan 31 23:37:26 tomatousb authpriv.info dropbear[505]: Child connection from *.*.*.*:*

所以,基本上,当我使用 SSH 时,我会使用 dropbear。似乎在上一次 ipkg 升级期间,我得到了新的 bash、tcpdump 和另外两个项目,但我不记得具体是哪一个。而且我找不到 ipkg 日志文件……

4

1 回答 1

0

最后,当我在同一个盒子上遇到同样的问题时,我碰到了自己的旧讨论,这就是原因:

    [root@tomatousb mnt]$ cat /opt/etc/profile
    #
    # Bash initialization script
    #

    PS1="[\u@\h \W]$ "
    PATH=/opt/sbin:/opt/bin:/sbin:/bin:/usr/sbin:/usr/bin
    LD_LIBRARY_PATH=/opt/lib:${LD_LIBRARY_PATH}

    export PS1 PATH LD_LIBRARY_PATH
    [root@tomatousb mnt]$ rm /opt/etc/profile

然后我重新启动,一切恢复正常运行!不知道该配置文件中究竟是什么破坏了一切并在运行 vi 时导致“内存耗尽”错误。

于 2018-01-31T20:32:58.887 回答