Windows实用命令 VS Linux自制yum源
阅读本文大概需要3分钟
windows用了一茬又一茬,你都或许换了好几个妹子或汉子了,windows还在不断更新,万变不离其宗。今天为大家分享一些可以节省日常工作时间,提高工作效率的一些比较接地气的命令。想要有点逼格,少了这一波命令杂么行。
winver--检查Windows版本
write--写字板
winmsd--系统信息
mem.exe--显示内存使用情况
mspaint--画图板
mstsc--远程桌面连接
mmc--打开控制台
mobsync--同步命令
dxdiag--检查DirectX信息
notepad--打开记事本
shrpubw--创建共享文件夹
secpol.msc--本地安全策略
taskmgr--任务管理器
regedit--注册表
calc--启动计算器
odbcad32--ODBC数据源管理器
control--控制面板
Linux自制一个yum软件库
网上有很多的yum软件库自制教程,但是我会给大家一个简单易懂的方案。
我们yum的源repo都是在/etc/yum.repos.d/目录下的。如果我们没有制作软件库也就是repo文件的话,那么该文件下是没有内容的。
手动添加一个:
rhel7是可以直接通过挂载镜像来制作自己的repo的。
[rhel-media]
name=rhel7cdrom
baseurl=file:///media/cdrom
enabled=1
gpgcheck=0
这里的gpgcheck是是否开启文件检测,默认不开启,设置为0,enable表示启动repo,1为启动。然后按照配置文件里的baseurl,在media目录下新建一cdrom目录。
mkdir /media/cdrom
然后将镜像挂载到cdrom上
镜像设备是/dev/cdrom
先配置默认挂载文件fstab
vim /etc/fstab
添加上这一条
/dev/cdrom /media/cdrom iso9660 defaults 0 0
然后保存退出
使用挂载命令:
mount -a 将fstab文件中的所有设备挂载上对应的目录
yum clean all 清空yum缓存
yum makecache 重新获取yum列表
yum repolist 列出当前可使用的repo
至此:自制的本地的yum软件库就ok了
如果我们在使用的时候发现本地rhel的软件库并没有那么强大,而且在线的源又无法连接。那就可以考虑使用centos的阿里云的源或者是网易的源。
同样的在/etc/yum.repos.d/下新建一个软件库repo,名字自拟。后缀一定是repo。将baseurl改为相应的centos的源的链接。直接去下载一个现成的更好。
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
直接下载然后复制到yum.repos.d下
进入这个repo,然后更改对应的变量
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-7 - Base - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=7&arch=$basearch&repo=os
baseurl=http://mirrors.163.com/centos/7/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7
#released updates
[updates]
name=CentOS-7 - Updates - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=7&arch=
$basearch&repo=updates
baseurl=http://mirrors.163.com/centos/7/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7
#additional packages that may be useful
[extras]
name=CentOS-7
name=CentOS-7 - Extras - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=7&arch=
$basearch&repo=extras
baseurl=http://mirrors.163.com/centos/7/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7
#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-7 - Plus - 163.com
baseurl=http://mirrors.163.com/centos/7/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7
将$releasever改为7 ,$basearch改为x86_64即可。
然后我们使用,yum clean all 同上的命令。来重新导入文件。
最后yum repolist就能看见新鲜出炉的repo了。
yum list all 查看可以使用的服务。
最后来论一下责任心:责任心这个东西说句良心话,是指个人对自己和他人、对家庭和集体承担责任和履行义务的自觉态度。它是一个人应该具备的基本素养,是健全人格的基础,是家庭和睦的全然保障。也是抓住妹子心的必备利器。把实现组织的目标当成是自己的目标。懂的人自然懂,今天搬完砖、加完班有点累了,就不扯淡了。觉得这些东西有用,拿去练练手吧。相信可以节省你不少的工作时间,稍微可以提高一下你的工作效率。
我是0&1,如果觉得有一点帮助,请为这一波命令打call。
推荐阅读:
END