____change debian language.
# export LANG=es_ES.UTF-8
# sudo dpkg-reconfigure locales
then a window will let you choose the language, use space to select"es_ES.UTF-8 " , a reboot will be needed.
____set virtual box share folder
virtual box->device-->set share folder
sudo mount -t vboxsf Share /home/sefi-user/working
the command need to be excuted on reboot.
___tab 自动补全功能要自己安装
apt-get install bash-completion
___debian ifconfig 不能用
https://linuxtoy.org/archives/debian-non-privilege-user-how-to-use-ifconfig.html
“ifconfig 在 /sbin 目录下,新建一个用户时, Debian 默认从 /etc/skel/ 复制配置文件,
在 ~/.profile 修改 $PATH 环境变量,在末尾加上一行
export PATH=$PATH:/sbin
或者,修改 /etc/skel/.profile,这个会影响所有新创建的用户。
/sbin 并不在 $PATH 中,所以导致默认非特权用户无法使用 ifconfig (terminal 会提示说找不到该命令)”
这个妹子写得好详细 http://francinelin.blogspot.com/2012/05/debianifconfig.html