不灭的焱

革命尚未成功,同志仍须努力 下载Java21

作者:AlbertWen  添加时间:2016-01-23 21:55:42  修改时间:2026-05-03 10:19:03  分类:06.Linux软件安装  编辑

apt-get update 升级软件列表;

apt-get install 安装新软件包

apt-get remove 卸载已安装的软件包(保留配置文档)

apt-get –purge remove 卸载已安装的软件包(删除配置文档)

作者:AlbertWen  添加时间:2017-10-29 21:26:37  修改时间:2026-04-25 00:24:22  分类:06.Linux软件安装  编辑

1、罗技的“无线优联技术”还是非常强大的,它跟具体的操作系统无关;

2、你只需要 让“优联接收器(一个USB设备)”跟 “无线键盘/鼠标” 配对即可,配对完之后,就无需再配对,即使把“优联接收器”插到其他电脑,无线设备(键盘/鼠标)也照用可用;

3、官方提供了一个让“优联接收器”跟 “无线设备”配对的中间软件(点击下载),但可惜的是,只有 Windows 版本!

所以,我们随便找一台 Windows 机,装上上述的配对中间软件,然后参考教程(如何安装 罗技“优联技术”无线鼠标、无线键盘?),完成配对即可;

作者:AlbertWen  添加时间:2017-10-26 13:01:43  修改时间:2026-05-03 11:09:13  分类:06.Linux软件安装  编辑

Linux系统有个让人蛋疼的通病,软件包依赖,好在当前主流的两大发行版本都自带了解决方案,Red hat有 yum,Ubuntu有 apt-get

 Mac os 中没有类似的东东,不过有第三方库支持:Homebrew。Homebrew简称brew,是Mac OSX上的软件包管理工具,能在Mac中方便的安装软件或者卸载软件,可以说Homebrew就是mac下的apt-get、yum神器。

作者:AlbertWen  添加时间:2012-05-30 19:13:50  修改时间:2026-04-30 21:56:52  分类:06.Linux软件安装  编辑
作者:AlbertWen  添加时间:2016-01-06 11:13:44  修改时间:2026-05-01 14:07:00  分类:06.Linux软件安装  编辑

问题1:编译PHP,执行 sudo make 时,报错:

undefined reference to `libiconv_open'
undefined reference to `libiconv_close'
undefined reference to `libiconv'

解决方案:

那表示在 ./configure 沒抓好一些环境变数值。错误发生点在建立“-o sapi/cli/php”时出错,没給到要 link 的 iconv 函式库参数。

编辑 Makefile 大约77 行左右的地方: EXTRA_LIBS = ..... -lcrypt在最后加上 -liconv,例如: EXTRA_LIBS = ..... -lcrypt -liconv

作者:AlbertWen  添加时间:2017-10-29 21:23:29  修改时间:2026-04-27 20:41:05  分类:06.Linux软件安装  编辑

编译 Nginx

#安装依赖库
sudo apt-get -y install libpcre3 libpcre3-dev
sudo apt-get -y install libssl-dev openssl libcurl4-openssl-dev
sudo apt-get -y install build-essential libtool
 
#安装pcre库
cd /alidata/tmp/deepin-sdk/source2/nginx
sudo tar -xzvf ./pcre-8.36.tar.gz
cd ./pcre-8.36
sudo ./configure
sudo make && sudo make install
作者:AlbertWen  添加时间:2016-03-20 00:54:09  修改时间:2026-05-03 07:36:36  分类:06.Linux软件安装  编辑

根据Linux(Ubuntu)下面SecureCRT 完全破解(地址:http://www.boll.me/archives/680

添加了Linux(Ubuntu)下面SecureFX 完全破解,原理是一样的。

破解文件下载地址:

http://pan.baidu.com/s/1jG1Trro 密码: 9cme

作者:AlbertWen  添加时间:2014-06-07 23:06:00  修改时间:2026-04-27 07:05:58  分类:06.Linux软件安装  编辑
作者:AlbertWen  添加时间:2017-10-27 09:46:12  修改时间:2026-04-30 07:07:21  分类:06.Linux软件安装  编辑

Redis官方下载地址:http://redis.io/download

Redis安装

cd /usr/local/src/redis-3.2.3
sudo make
sudo make install

cp ./src/redis-benchmark /usr/local/redis/redis-3.2
cp ./src/redis-check-aof /usr/local/redis/redis-3.2
cp ./src/redis-check-rdb /usr/local/redis/redis-3.2
cp ./src/redis-cli /usr/local/redis/redis-3.2
cp ./src/redis-sentinel /usr/local/redis/redis-3.2
cp ./src/redis-server /usr/local/redis/redis-3.2
cp ./src/redis-trib.rb /usr/local/redis/redis-3.2

cp ./redis.conf /usr/local/redis/redis-3.2
作者:AlbertWen  添加时间:2017-10-26 13:03:23  修改时间:2026-05-01 14:10:40  分类:06.Linux软件安装  编辑

在 Linux 下习惯使用 ll、la、l 等ls别名的童鞋到 mac os 可就郁闷了~~

其实只要在用户目录下建立一个脚本“.bash_profile”,

vim ~/.bash_profile