neofetch是一个终端美化脚本,可以在ssh登录后显示系统的信息。
Ubuntu的使用方法:
apt install neofetch
安装好之后,在终端输入:neofetch就会显示。
neofetch配置文件在:
vim /home/你的用户名/.config/neofetch/config.conf
前面的#号是注释,想要添加多一些参数,可以把前面的#号删除。
如果想打开终端就显示,可以编辑以下文件。
vim ~/.bashrc
在末尾输入以下代码,保存。
neofetch
然后输入以下命令更新
source ~/.bashrc
重新启动terminal终端,就会自动加载neofetch命令
实现了打开终端就调用neofetch命令,显示系统的硬件信息。
MacOS的使用方法
打开终端输入以下命令安装
brew install neofetch
安装完 输入 neofetch即可显示系统信息
设置打开终端自动显示系统信息
在neofetch配置文件目录下 /home/你的用户名/.config/neofetch 新建一个文件
vim show_neofetch_start
输入:
neofetch
保存。
然后修改bash配置文件
vim ~/.bash_profile
在打开的文件输入:
source ~/.config/neofetch/show_neofetch_start
保存,退出终端再打开就可以看到效果了。
CentOS的安装
yum install epel-relase
curl -o /etc/yum.repos.d/konimex-neofetch-epel-7.repo https://copr.fedorainfracloud.org/coprs/konimex/neofetch/repo/epel-7/konimex-neofetch-epel-7.repo
yum install neofetch
另:Linux系统SSH登录的欢迎信息位置在 /etc/motd
放一个服务器镇楼神器
// _ooOoo_ //
// o8888888o //
// 88" . "88 //
// (| ^_^ |) //
// O\ = /O //
// ____/`---'\____ //
// .' \\| |// `. //
// / \\||| : |||// \ //
// / _||||| -:- |||||- \ //
// | | \\\ - /// | | //
// | \_| ''\---/'' | | //
// \ .-\__ `-` ___/-. / //
// ___`. .' /--.--\ `. . ___ //
// ."" '< `.___\_<|>_/___.' >'"". //
// | | : `- \`.;`\ _ /`;.`/ - ` : | | //
// \ \ `-. \_ __\ /__ _/ .-` / / //
// ========`-.____`-.___\_____/___.-`____.-'======== //
// `=---=' //
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ //
// 佛祖保佑 永不宕机 永无BUG //
修改主机名字
hostname
hostnamectl set-hostname 你的主机名
hostnamectl set-hostname 你的主机名 --static
vim /etc/hosts
评论 (0)