CentOS7 WiFi自动连接问题

#安装CentOS7后,登陆发现

1.无线网卡没有启动

2.启动后无法自动连接WiFi

3.使用ip link set xxx up,wpa_xxx启动网卡连接WiFi后重新登陆无法自动启动连接WiFi

##解决:

1.设置NetworkManager自动启动

: chkconfig NetworkManager on

2.安装NetworkManager-wifi

: yum -y install NetworkManager-wifi

3.开启WiFi

: nmcli r wifi on

4.测试(扫描信号)

: nmcli dev wifi

5.连接

: nmcli dev wifi connect password

Mac os 安装 Apache+PHP7+Mysql环境搭建

首先,需要安装brew,关于安装说明,请点此处

1、安装 Apache2.4

<span class="hljs-attribute">brew</span> tap homebrew/apache
brew tap homebrew/php
 brew install httpd24

2、安装 mysql

方法有两种,直接去官网下载dmg包,然后下一步,下一步,下一步安装了事。

也可以 brew install mysql 安装mysql-5.7

浏览全部

ARM 的 NAS 安装 Plex 的优化方案-节省root根路径的空间占用

原创文章,转载请注明出处!

前面有篇文章已经有相关的mycloud安装plex的一键包了,不过需要占用500M左右的根空间,安装过程中还需要挂载500mb的/tmp临时目录。

这次,我要说的是,全手动安装plex到nas,实现自定义存放路径+自启动。

1、下载:去官网(www.plex.tv)下载群晖的插件,一个spk为扩展名的包。

例如: PlexMediaServer-0.9.11.16.958-80f1748-arm7.spk   //红色部分,请自行更换成你自己的

下载好后,仍到 /share/scjtqs/(我的4T硬盘的存储挂载点)下

浏览全部

在mycloud/debian-armhf 上安装plex server

sudo su
# add my public key
wget -O - https://dev2day.de/pms/dev2day-pms.gpg.key | apt-key add -
# add my PMS repo
echo "deb [arch=armhf] https://dev2day.de/pms/ jessie main" >> /etc/apt/sources.list.d/pms.list
# activate https
apt-get install apt-transport-https
#enable armhf support
dpkg --add-architecture armhf 
# update the repos
apt-get update
# install PMS
apt-get install plexmediaserver-installer:armhf

安装完成后,replace ip.address with your actual local IP http://ip.address:32400/web or http://ip.address:32400/manage/index.html#!/setup

进行续集。

浏览全部

在你的debian/ubuntu安装Plex Media Server

Plex is an awesome media server software that is ‘family-proof’, even my technically challenged stepmom can use plex which makes it perfect if you are trying to create an htpc home media server solution for friends or family. Plex will stream to practically any device in your house: iPad, iPhone, Android tablets, Roku, Raspberry Pi and other PCs. Let’s install it on Debian Wheezy for x86 and x64 systems. If you are on an ARM device then use the Raspberry Pi guide.

1、先安装源和密钥

浏览全部