摘要: 将/etc/apt/source.list中内容用下列代码覆盖。 ## Major bug fix updates produced after the final release of the ## distribution. deb http://old-releases.ubuntu.com/ubuntu/ maverick main restricted deb-src htt... 阅读全文
posted @ 2013-06-22 16:00 helloweworld 阅读(258) 评论(0) 推荐(0) 编辑
摘要: # deb cdrom:[Ubuntu 12.04 LTS _Precise Pangolin_ - Release i386 (20120423)]/ precise main restricted# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to# newer versions of the distribution.deb http://archive.ubuntu.com/ubuntu precise main restricteddeb-src http://archive.ubuntu. 阅读全文
posted @ 2013-06-22 15:16 helloweworld 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 一、查看U盘是否挂载。 root用户进行下列操作。 (1)#fdisk –l 显示所有磁盘,一般最后一行/dev/sdb1指的就是U盘。 (2)#mount –l 显示所有挂载的文件系统及其位置,如果/dev/sdb1已经挂载,则会列出挂载点位置(我的对应/media/….)。 如果已经自动挂载,则只需将文件拷到/media/….即可。 二、挂载U盘。 (1)mkdir MountPoint ... 阅读全文
posted @ 2013-06-22 15:00 helloweworld 阅读(432) 评论(0) 推荐(0) 编辑
摘要: #df –T 显示磁盘文件系统类型和磁盘挂载点。 阅读全文
posted @ 2013-06-22 14:53 helloweworld 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 详细配置见官网quick start 1、服务器安装。 安装OpenVPN server openvpn-as-1.8.3-Ubuntu10.i386.deb (直接双击安装) 2、客户端安装。 windows客户端安装openvpn-2.2.2-install.exe linux客户端安装openvpn-2.2.2.tar.gz 3、服务端开启。 (1)服务器开启其openvpn... 阅读全文
posted @ 2013-06-22 13:28 helloweworld 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 求矩阵A的行列数 intput: A = [22,1,3;44,2,4][hang,lie]=size(A) output: A = 22 1 3 44 2 4 hang = 2 lie = 3 求矩阵A的行数 input: A = [22,1,3;44,2,4]hang=size(A,1) output: A = 22 1 3 44 2 4 hang = ... 阅读全文
posted @ 2013-06-22 12:26 helloweworld 阅读(1694) 评论(0) 推荐(0) 编辑