这篇文章是在工作上发现的一些Linux 的小技巧,不定时更新
修改bash提示符
/etc/profile 和 ~/.bashrc 或者直接在用户的.bash_profile中添加 export PS1="[/u@/h /`pwd/`]$"
或export PS1='[\u@\h \W]$'
/u代表 用户名; /h 代表机器名 /\
pwd/` 代表当前路径`
umount NFS 出现 device busy
由于NFS的各种问题,经常会出现umount NFS文件夹的时候出现device busy的error 而失败。这时候可以用 mount -l
命令进行umount. man umount 是这么说的:
-l Lazy unmount. Detach the filesystem from the filesystem hierarchy now, and cleanup all references to the filesystem as soon as it is not busy anymore. (Requires kernel 2.4.11 or later.)
翻译成中文就是延迟umount, 会立即卸载目录树里面的文件系统,等设备不再繁忙的时候才去清理所有的相关资源。所以用umount -l 从表面上看这个文件夹的确是被umount了。
网友评论