缺少 CW 图像优化器 opt-jpg

缺少 CW 图像优化器 opt-jpg

我在 AWS(CentOS)上使用 Wordpress。我尝试安装 CW Image Optimizer。

我在插件设置页面上看到“CW Image Optimizer 需要 littleutils。您缺少:opt-jpg。”错误。

当我尝试使用 $ which opt-jpg 时,它会抛出一个错误,提示:

/usr/bin/which:没有 opt-jpg(/sbin:/bin:/usr/sbin:/usr/bin:/opt/aws/bin)

我也尝试运行 $ ln -s /usr/local/bin/opt-jpg /usr/bin/opt-jpg

我收到以下错误,

ln:无法创建符号链接‘/usr/bin/opt-jpg’:文件存在

我已经尝试过 yum install libjpeg* 但仍然存在同样的问题。

请帮帮我。提前谢谢您!

答案1

错误消息告诉你 littleutils 缺失,因此处理方法似乎很明显。安装指南CW 会告诉您如何在 Centos 32 位上执行此操作。您是否遵循了安装说明?

进一步搜索发现 64 位 Centos 的结果可能比这个更好

Log in as the root user.
Enable the rpmforge repository:
cd /usr/local/src/ && wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm && rpm -i rpmforge-release-0.5.2-2.el6.rf.i686.rpm
Install dependencies:
yum install gcc libpng libpng-devel gifsicle pngcrush p7zip lzip
Download the latest version of littleutils:
cd  /usr/local/src; wget http://downloads.sourceforge.net/project/littleutils/littleutils/1.0.27/littleutils-1.0.27.tar.bz2?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Flittleutils%2F   
Uncompress littleutils:
tar jxvf littleutils-1.0.27.tar.bz2 && cd littleutils-1.0.27
Configure and install littleutils:
./configure--prefix=/usr && make && make install && make install-extra

相关内容