友情提示:
相信很多朋友在更新router os版本到7之后,mac上的老版本winbox就无法使用了(比如我之前使用的3.21版本),下面我给大家说下怎么在mac上安装winbox.
系统:mac os 12.5.1
1.安装HomeBrew
/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
2.安装HomeBrew-Cask
brew install cask
3.安装winbox
brew install --cask nrlquaker-winbox
4.更新winbox
bre...
centos7 pip安装插件报错解决
很多时候在centos7用pip2来装东西的时候会报下面的错误:
为了解决这个问题,在网上翻完了终于找到解决办法了.
解决办法:
更新pip
pip3:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
pip2:
curl https://bootstrap.pypa...
centos7 一键安装docker,docker-compose环境
docker环境相信大家都有在用,但安装环境过程太烦人了,所以我写成一键安装脚本来解放双手.
系统:centos7.x(64位)
cat /root/soft_shell/auto_install_docker.sh
#!/bin/env bash export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin clear # 检查是否 root 用户 if [ $(id -u) != "0" ]; then echo "Error: You must be root to run this sc...
标签: centos 安装 shell install 一键 docker centos7 docker-compose
centos7 shell脚本一键安装maven
最近装什么都希望自己有个一键脚本来搞定,今天看到以前的maven还没有写一键安装脚本,所以今天把他补起.
系统:centos 7(64位)
cat /root/soft_shell/auto_install_maven.sh
#!/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin export PATH # Check if user is root if [ $(id -u) != "0" ]; then echo "Error: You must be root to run this script, ...
centos7 shell脚本一键安装nodejs
好了,python的一键安装有了,当然nodejs也得有个一键安装,毕竟这两个东西是大家经常会用到,有需要的小伙伴可以拿去.
系统:centos 7.x(64位)
cat /root/soft_shell/auto_install_node.sh
#!/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin export PATH # Check if user is root if [ $(id -u) != "0" ]; then echo "Error: You must be root to run th...
centos7 shell脚本一键安装python3.7或3.8
在上一篇文章centos7 shell脚本一键安装python3.7发布了之后,我同事看到了问我,你为什么不用python3.8,当时我就蒙了,对啊,还有人需要装3.8的版本的,今天对其进行了修改,让其支持安装python3.8,有需要的朋友可以看看.
系统:centos 7.x(64为)
cat /root/soft_shell/auto_install_python3.sh
#!/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin export PATH # Check if user is root if [ $(i...
centos7 shell脚本一键安装python3.7
最近要安装个东西,发现要python3才能支持,为了方便以后不用进行重复性工作,我就写了个一键安装python 3.7的脚本.
系统:centos 7.x(64位)
cat /root/soft_shell/auto_install_python3.sh
#!/bin/bash PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin export PATH # Check if user is root if [ $(id -u) != "0" ]; then echo "Error: You must be root to ru...
debian 9安装nodejs和npm
在github上找了个socks5的代理,但他这个要npm才能安装,要nodejs才能使用,项目地址是https://github.com/Srar/telegram-socks5-proxy,下面来说说怎么在debian 9上安装nodejs和npm.
系统:debian 9
1.添加Node.js PPA
最新版安装命令:
apt-get install curl python-software-properties curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
安装LTS长期维护版:
apt-get install curl python-so...
centos安装unifi controller
1.安装mongodb
cat >/etc/yum.repos.d/mongodb-org-3.2.repo<<EOF [mongodb-org-3.2] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/amazon/2013.03/mongodb-org/3.2/x86_64/ gpgcheck=1 enabled=1 gpgkey=https://www.mongodb.org/static/pgp/server-3.2.asc EOF
yum -y install mongodb-org java-1...
centos一键自动安装tomcat7
此次脚本在上一个版本的基础上,增加了根据系统版本添加相应的自启动脚本,centos6和centos7都可以使用.
cat /root/soft_shell/auto_install_tomcat7.sh
#!/bin/sh PATH=/bin:/sbin:/usr/bin:/usr/sbin:/opt/bin:/opt/sbin:~/bin export PATH # Check the network status NET_NUM=`ping -c 4 www.baidu.com |awk '/packet loss/{print $6}' |sed -e 's/%//'` if [ ...
centos7安装plex影音媒体服务器
Plex的全称为Plex Media Server,主要功能是存储+索引+转码+在线播放,它不仅仅是简单的存储,它还能分析影片的信息从而从IMDB等数据库补全影片介绍等信息,并且进行索引以方便搜索,要知道影片的格式有很多种,很多情况下播放设备无法兼容,所以它还能实时转码,播放渠道从网页到全平台的客户端应有尽有.当然,Plex除了能存片,还能存图存歌等等.
1.下载软件
yum -y install https://downloads.plex.tv/plex-media-server/1.13.5.5291-6fa5e50a8/plexmediase...
centos7安装UniFi控制器rpm包
最近用了下ubnt的ap,感觉信号很好穿透很强,而且AC控制器都是软的,不想其他品牌的还要单独买个AC控制器,下面来给大家说说怎么在centos7上进行安装.
系统:centos 7(64位)
1.准备工作
systemctl stop firewalld.service
systemctl disable firewalld.service
yum -y install epel-release wget unzip gcc gcc-c++ make net-tools vim iptables-services
2.安装mongodb
vim /etc/yum.repos.d/mongodb-org.r...
centos7静默安装oracle 11g
系统: centos 7.x (64位)
oracle软件包: linux.x64_11gR2_database_1of2.zip
linux.x64_11gR2_database_2of2.zip
服务器ip: 192.168.12.252
1.安装前准备
###关闭selinux
[root@localhost ~]# vim /etc/selinux/config
设置SELINUX=disabled
然后执行:
[root@localhost ~]# setenforce 0
###关闭防火墙
[root@localhost ~]# systemctl stop firewalld
[root@localh...
centos7 yum安装vim 8
最近centos系统上出现了vim输入验证漏洞,vim patch 8.0.0056之前的版本中存在安全漏洞,该漏洞源于程序没有正确验证‘filetype’、‘syntax’和‘keymap’选项的值,攻击者可利用该漏洞执行任意代码.
系统:centos 7.x(64位)
1.先卸载老的vim
yum remove vim-* -y
2.下载第三方yum源
wget -P /etc/yum.repos.d/ https://copr.fedorainfracloud.org/coprs/mcepl/vim8/repo/epel-7/mcepl-vim8-epel-...
centos7编译安装ffmpeg
公司最近要使用音频转码,找到我说要用ffmpeg,让我安装一个,好吧,为了方便以后查阅,故写下这篇文章.
系统:centos 7.x(64位)
软件:ffmpeg 3.3.2
1.下载ffmpeg 3.3.2
wget http://www.ffmpeg.org/releases/ffmpeg-3.3.2.tar.gz
2.下载第三方源
yum -y install epel-release
wget https://www.mirrorservice.org/sites/dl.atrpms.net/el7-x86_64/atrpms/stable/atrpms-repo-7-7.el7.x86_64.rp...