欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu14.04配置问题记录

程序员文章站 2022-03-31 19:14:45
...

启用root用户

使用sudo passwd root设置root的密码
使用su root验证密码是否设置正确

开启root用户ssh登录

安装OpenSSH server:

1. 使用apt命令安装openssh server

$ sudo apt-get install openssh-server

2. 可以对 openssh server进行配置

$ sudo vim /etc/ssh/sshd_config
找到PermitRootLogin without-password一行,改为PermitRootLogin yes

3. 重启 openssh server

$ sudo service ssh restart

4. 在本地进行测试验证

$ ssh 127.0.0.1

在Ubuntu terminal(终端)命令提示行隐藏当前工作目录

[email protected]:$ vim ~/.bashrc
#将PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' 中的\w\去掉即可。

#修改前
if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi

#修改后
if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:$ '
fi

添加path目录

root@virtual-machine:$ vim ~/.bashrc
#在文件最后添加如下两行:
export ZEPHYR_GCC_VARIANT=mipssde
export MIPSSDE_TOOLCHAIN_PATH=/home/chroot/mips-2014.11

路径生效:
root@virtual-machine:$ source ~/.bash
相关标签: Ubuntu