sudo apt-get install lm-sensors

sudo apt-get install lm-sensors sensors-applet

Right click on an empty are of your panel, and choose Add to Panel…. Then choose the Hardware Sensors Monitor entry out of the list.

cd /sys/devices/system/cpu/cpu0/cpufreq

ls

cat scaling_min_freq

cpufreq-selector -f 798000

sudo cat scaling_cur_freq

1.

sudo apt-get install apache2 apache2-utils

2.

 sudo apt-get install subversion libapache2-svn

3.

sudo svnadmin create /home/svn

4.

sudo nano /etc/apache2/mods-enabled/dav_svn.conf

  • <Location /svn>
  • DAV svn
  • SVNPath /home/svn
  • AuthType Basic
  • AuthName “Subversion Repository”
  • AuthUserFile /etc/apache2/dav_svn.passwd
  • Require valid-user
  • </Location>

5.

sudo htpasswd -c  /etc/apache2/dav_svn.passwd <username>
sudo htpasswd /etc/apache2/dav_svn.passwd <username>

6.

sudo chown -R www-data:www-data /home/svn

7.

sudo /etc/init.d/apache2 restart

8.

http://127.0.0.1/svn/

ubuntu 8.04 终于较为完整的解决了拼音输入的问题。

系统默认安装的 SCIM 智能拼音基本超过windows下的系统自带的拼音输入法。

关于自然双拼时,不同之处:

an ai en 做首音时,如 安,爱,恩
需要改用 j’ , l’, f’ 来替代, 不像windows下 用输入 an ai en

安装软件                        apt-get install softname1 softname2 softname3……
卸载软件                        apt-get remove softname1 softname2 softname3……
卸载并清除配置              apt-get remove –purge softname1
更新软件信息数据库       apt-get update
进行系统升级                 apt-get upgrade
搜索软件包                    apt-cache search softname1 softname2 softname3……

安装deb软件包              dpkg -i xxx.deb
删除软件包                    dpkg -r xxx.deb
连同配置文件一起删除    dpkg -r –purge xxx.deb
查看软件包信息              dpkg -info xxx.deb
查看文件拷贝详情           dpkg -L xxx.deb
重新配置软件包              dpkg-reconfigure xxx

查看已安装软件             dpkg -l
查看指定已安装软件       dpkg -l | grep -i softname

1. 使用 phpMyAdmin,备份 WordPress 使用的数据库。

2. FTP 工具下载服务器上位于 WordPress 安装目录内的所有文件的一份复本

3. 上传最新版本 WordPress到 WordPress 目录,覆盖所有存在的文件

4. 运行升级程序 http://xxxxxx.com/wordpress/wp-admin/upgrade.php

1. start phpMyAdmin

http://xxxx.com/phpMyAdmin

2.select wordpress table

3.select export

4.select all table

5.format: sql

6.select: Add DROP TABLE / DROP VIEW

7.select: Complete inserts

8.select: Save as file

9. GO

__________________

after backup file will download to you local computer

1)install tool chain

apt-get install build-essential

2) edit

bluefish Hello.c


#include
int
main(void)
{
puts(”Hello World!”);
return 0;
}

3) Compiling
gcc -Wall Hello.c -o Hello
or
make Hello

4) Running
./Hello

Result:
Hello World!

« Articoli Precedenti    
坐看云起时 based on WordPress, RSS and comments design by Gx3.