Ubuntu 10.04 RC 发布

2010-04-23 xiao H Posted in 新闻评论 | 2 Comments »

Ubuntu 10.04 “Lucid Lynx” 正式版发布前最后一个测试版发布。

“The Ubuntu team is pleased to announce the Release Candidate for Ubuntu 10.04 LTS (Long-Term Support) Desktop and Server editions and Ubuntu 10.04 LTS Server for Ubuntu Enterprise Cloud (UEC) and Amazon’s EC2, as well as Ubuntu 10.04 Netbook edition. We consider this release candidate to be complete, stable, and suitable for testing by any user”

标签:,

Ubuntu 10.04 新壁纸

2010-04-22 xiao H Posted in 日常桌面 | 2 Comments »

Ubuntu 10.04 新增了15张壁纸,几乎全是自然风光类。

标签:,

Red Hat Enterprise Linux 6 Beta 发布

2010-04-21 xiao H Posted in 新闻评论 | 3 Comments »

经过长久的等待今天 Red Hat Enterprise Linux 6 Beta 终于发布了。
“Red Hat is pleased to announce the availability of Red Hat Enterprise Linux 6 Beta, the next generation of the Red Hat Enterprise Linux platform. Red Hat Enterprise Linux 6 blurs the lines between virtual, physical, and cloud computing to address shifts taking place in the modern IT environment. Featuring updated core technology, from the kernel to the application infrastructure to the development toolchain, Red Hat Enterprise Linux 6 is designed

标签:, ,

gedit 为CSS 文件添加换行符

2010-04-15 xiao H Posted in 日常桌面 | 1 Comment »

今天在用gedit 编辑一个CSS 文件时遇到原文件是经过压缩的,全文没有空格还行看着那叫一个眼晕啊,想改点东西非常的痛苦。
还好gedit 有换行符可用,用gedit 的替换功能,将所有} 替换为} /r 这样gedit 就能在每行css 语句结束的地方自动换行了。

标签:, ,

ubuntu 9.10 停止系统服务

2010-04-13 xiao H Posted in 系统管理 | 2 Comments »

给系统装了Vidalia + tor 套件,但每次tor 都当系统服务自己先启动了,弄的我每次用vidalia 时还要自己先停掉tor 。于是想用chkconfig 停用tor,结果安装后使用 chkconfig tor off 给我一堆报错。google 之原来ubuntu 9.10 已经不支持chkconfig 了而用了update-rc.d,停用服务用命令

update-rc.d servername disable

关于 update-rc.d 的一些使用介绍
Debian 的update-rc.d与RH的chkconfig工具相类似。然而chkconfig是一个二进制程序,而update-rc.d是一个Perl脚本。这些工具有不同的命令行选项,但是却执行类似的功能。下表列出了update-rc.d的一些用法。如果要查看完整的信息,我们可以查阅相关的和册页。

标签:, ,

ffmpeg 批量转换脚本

2010-04-02 xiao H Posted in shell | 1 Comment »

从playingforchange.com 下载了好多FLV 文件放到手机上看,不过由于分辨率太高手机放起来一卡一卡的,所以要转换一下分辨率。

#/bin/sh
for f in *.flv
do
ffmpeg -i $f -s 320x240 sm-$f
done

检查当前目录下所有.flv 结尾的文件将其转换为 320×240 分辨率,新文件名为老文件名前加sm- 前缀。

标签:,

openSUSE 11.3 Milestone 4 发布

2010-03-26 xiao H Posted in 新闻评论 | 3 Comments »

openSUSE 11.3 Milestone 4 发布,新版本OpenOffice.org更新为 3.2.1 Beta1 , NetworkManager更新为 0.8 改善Bluetooth 和 GSM的支持。详细更新信息请查看发布公告

下载: (mirrors):

标签:

添加Linux 一句话

2010-03-24 xiao H Posted in Linuxbyte 之路 | 2 Comments »

添加Linux 一句话功能,主要是一些一句话就能说明白的linux 技巧,命令等。功能由PageCookery Microblog 配合digu 实现,用嘀咕是为了更新方便。
另:去掉了左侧栏中的digu flash 插件和Google Friend。

该日志未加标签

Centos 下安装配置 PowerDNS

2010-03-23 xiao H Posted in 服务器应用 | No Comments »

关于PowerDNS?
PowerDNS 是一个跨平台DNS server 软件,他使用Access/MySQL 记录DNS 信息。这里简单记录在centos系统下PowerDNS 的安装配置及PowerDNS WEB 管理工具PowerAdmin的安装。

安装设置 MySQL

[hew@linuxbyte.org ~]# yum -y install mysql mysql-server
[hew@linuxbyte.org ~]# service mysqld start
[hew@linuxbyte.org ~]# mysqladmin -u root password password123
[hew@linuxbyte.org ~]# mysql -u root -p

标签:, , ,


Page 13 of 38« ...9101112131415161718...253035...