ubuntu
charlay_yu
这个作者很懒,什么都没留下…
展开
-
ubuntu wine
重装了一次ubuntu系统,可是装wine的时候使用命令:sudo apt-get install wine或者是用ubuntu软件中心安装后。安装cs不能正常运行,以前装系统之后都是没有问题的。找了很多原因,最终的解决方法是,装最新的wine版本。 首先,ubuntu的软件中心的wine版本过于陈旧。所以需要加载新的源。在ubuntu软件中心中加载新的源:ppa:ubuntu-wine/ppa原创 2013-04-16 14:59:10 · 573 阅读 · 0 评论 -
Cinelerra教程
说明:本教程翻译自网站http://www.g-raffa.eu/Cinelerra/HOWTO/ 版权归其所有,本教程只能用于个人学习之用,不能用于任何商业目的。转载请注明出处。 译者:lingbofeiyun邮箱:lingbofeiyun@aliyun.com 1 必备知识 要理解本教程你需要具备基本的ubuntulinux 的知识。下面讲述的是必不可少的基本概念。翻译 2014-01-04 22:21:39 · 2073 阅读 · 0 评论 -
64位处理器进行32位at&t汇编-编译与连接
如果直接编译: as -o cpuid_c.o cpuid_c.s 出错信息如下: ThinkPad:~/assembly$ as -o cpuid_c.o cpuid_c.s cpuid_c.s: Assembler messages: cpuid_c.s:18: Error: invalid instruction suffix for `push' cpuid_c.s:19: Error: invalid instruction suffix for `push' cpuid_c.s:22: Er原创 2015-04-16 12:19:01 · 1250 阅读 · 0 评论 -
C语言getopt()函数的使用
getopt(分析命令行参数) 相关函数表头文件 #include 定义函数 int getopt(int argc,char * const argv[ ],const char * optstring); 函数说明 getopt()用来分析命令行参数。参数argc和argv是由main()传递的参数个数和内容。参数opt转载 2016-10-23 10:13:17 · 360 阅读 · 0 评论