Linux Debian提示setlocale: LC_ALL: cannot change locale (en_US.UTF-8)的解决办法
此处以 en_US.UTF-8 为例(排错其他语言包也同理):cat /etc/locale.gen | grep en_US.UTF-8 #查看是否有 en_US.UTF-8 内容 vim /etc/locale.gen 去掉 en_US.UTF-...
此处以 en_US.UTF-8 为例(排错其他语言包也同理):cat /etc/locale.gen | grep en_US.UTF-8 #查看是否有 en_US.UTF-8 内容 vim /etc/locale.gen 去掉 en_US.UTF-...
BT的PHP扩展没有FFmpeg组件,所以是需要自己手动去安装的1、在终端输入:wget http://download.bt.cn/install/ext/ffmpeg.sh && sh ffmpeg.sh 2、安装完后可输入以下命令是...
查看CPU高的进程ps -eo user,pid,pcpu,pmem,args --sort=-pcpu |head -n 10
MYSQL筛选中文字段select * from table where not name regexp '^[1-9A-Za-z]'; MYSQL筛选英文字段SELECT column_name FROM `table_name` WHERE colu...
根據單列刪除且保留ID最小的一條delete from `pictures` where `内容` in(select `内容` from (select `内容` from `pictures` group by `内容` having count(`...