无损转换ext3到ext4(UBUNTU)

分类:Ubuntu分类:KernelUbuntu Jaunty 9.04开始正式支持ext4文件系统,关于ext4,其优点应该早有听闻,对任何用户而言都具有难以拒绝的诱惑:对一般用户而言,有更好的磁盘性能,快速的预分配、删除,更可靠的日志,更迅速的磁盘检查(不会像ext3可能花几分钟来check,ext4经常是瞬间完成的)……更专业的描述可以看看IBM文库的这篇《Migrating to ext4》。

从Ubuntu 8.10升级到9.04,一定程度上是看上其对ext4的支持,不过如果为此重新格式化分区重装系统,对于使用积累较多的系统来说代价太高了点(PT现在用的系统是去年的8.04,后来升级8.10,再到现在的9.04……),不过根据《Migrating to ext4》的说法,从ext3到ext4的无损转换是可能的,而且并不耗时间,就如Kernel Wiki里面的Ext4 Howto提到转换所用的命令,其实也很简单:

继续阅读 »

linux后台运行程序及恢复

分类:Ubuntu分类:RedHat分类:Debian1. 后台运行的两个命令 & 和 ctr+z

[命令]空格[&] 

比如:

[root@pcmxexweb etc]# find / -name xml &

这样,这个查找程序就会在后台运行。它运行的同时不影响你干别的事情。

但是有的时候忘记了在命令之后加上‘&’符号,又不愿意停下此命令重新改写。这是可以按[ctrl+z],把当前程序切入后台。 继续阅读 »

Debian/Ubuntu:让apt-get install 有自动补齐功能

分类:Ubuntu分类:Debian在 ~/.bashrc 里加入以下几行就行了。

# enable programmable completion features
if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi

iptraf 命令行的网络****软件

分类:Ubuntu今天在找一个命令行下的网络****软件,发现有个叫 iptraf 的,很不错,功能也很全面.
ubuntu下安装可以直接 apt-get install iptraf  继续阅读 »

ubuntu下ssh慢的解决办法

分类:Ubuntu在ubuntu下ssh登陆某些服务器,会发生需要等到十来秒才提示输入密码下现象,其实这个是debian做的一个配置上的修改引起的.
ssh_config(5) 的man页上有这样的说明:

Note that the Debian openssh-client package sets several options as stan-
dard in /etc/ssh/ssh_config which are not the default in ssh(1): 继续阅读 »

Clone Your Ubuntu installation

分类:UbuntuIf you want to create a system that is similar to a different system you have already set up, it can be difficult to remember each and every package you had installed.This method works best when you are exporting to and importing from the same distribution and, specifically, the same releasefor example, exporting from Ubuntu Dapper to Ubuntu Dapper or ubuntu edgy to ubuntu edgy. 继续阅读 »

2007-12-27Ubuntu

没有评论
128

基于 poptop 的 VPN 服务

分类:UbuntuOS: Ubuntu Gutsy
kernel: 2.26.14-server
内网网卡: 192.168.1.254
外网网卡: 172.18.11.220
pptpd : v1.3.4 继续阅读 »


返回顶部