Welcome Guest | RSS

乌班图

Wednesday, 2026-04-01, 9:59 PM
Main » 2010 » March » 24

SVN作为日常开发中不可缺少的工具,今天终于开始在Ubuntu下使用了。

1、首先需要安装SVN。Ubuntu下的SVN安装十分简单,sudo apt-get install subversion,然后根据提示一步一步,就完成了SVN的安装;

... Read more »

Views: 1079 | Added by: forestrex | Date: 2010-03-24 | Comments (0)

Windows上有vm、飞秋,对应在Linux上的有飞鸽
飞鸽原始版本在 ipmsg.org/
有deb版本

这个需要手工编译:
./configure
make
make install
应该就行了
Views: 1193 | Added by: forestrex | Date: 2010-03-24 | Comments (1)

ISO镜像是一张cd或者DVD的镜像文件,它能被储存在你的电脑里,并且能用来写入一张新的光盘里。在UBUNTU下挂载并使用它是很简单的。
使用指南

在linux下默认的ISO挂载点位于"/media"目录,下面是挂载一个ISO文件的方法:

sudo mkdir /media/cdimage  #建立一个文件夹作为ISO挂载点
sudo mount -o loop myfile.iso /media/cdimage   #挂载ISO文件,使用参数 -o loop 

使用你想挂载的iso文件代替myfile.iso。

挂载一个镜像文件使之能被写入,使用下面的命令:

sudo mkdir /media/cdimage
sudo mount -o rw,loop myfile.iso /media/cdimage

卸载镜像文件:

sudo umount /media/cdimage
rmdir /media/cdimage

其它格式

其它的CD,DVD镜像文件能被转换成ISO文件以被挂载

    * Nero 镜像(.nrg)文件能使用 nrg2iso 转换成ISO文件,或者使用mount挂载
          o 使用mount挂载: 

sudo mkdir /media/cdimage
sudo mount -o loop,offset=307200 myfile.nrg /media/cdimag ... Read more »
Views: 3002 | Added by: forestrex | Date: 2010-03-24 | Comments (2)

和Windows的Win+R一样,Linux中也存在运行程序对话框:Alt+F2
Views: 938 | Added by: forestrex | Date: 2010-03-24 | Comments (0)

http://www.getdeb.net/

Use the following instructions:

  1. Install the getdeb package.

  2. Or configure the repository manually:

    ... Read more »

Views: 1428 | Added by: forestrex | Date: 2010-03-24 | Comments (0)

打开终端
先做个备份
sudo cp /etc/apt/sources.list /etc/apt/sources.list_bak

... Read more »

Views: 1143 | Added by: forestrex | Date: 2010-03-24 | Comments (0)