12 2017 档案

摘要:使用波浪键的时候会输出>或<。 解决办法:http://atodorov.org/blog/2015/04/30/fixing-tilde-and-function-keys-mapping-for-macbook-air-on-linux/ 在终端输入:echo 0 > /sys/module/h 阅读全文
posted @ 2017-12-25 21:15 笨笨coding 阅读(449) 评论(0) 推荐(0)
摘要:Please run $ source /opt/anaconda/bin/activate root $ source /opt/anaconda/bin/deactivate rootto activate and deactivate the anaconda enviroment. pych 阅读全文
posted @ 2017-12-20 14:22 笨笨coding 阅读(430) 评论(0) 推荐(0)
摘要:出错信息: ==> Creating package "anaconda"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTRE 阅读全文
posted @ 2017-12-19 21:23 笨笨coding 阅读(1645) 评论(0) 推荐(0)
摘要:1。Targets, Prerequisites, Commands Targets: 大意是生成的可执行文件。 Prerequisites: 生成可执行文件的目标文件或C 语言源文件。 Targets和Prerequisites应该不是固定的,只是相对的。Prerequisites是Targets 阅读全文
posted @ 2017-12-19 21:12 笨笨coding 阅读(634) 评论(0) 推荐(0)
摘要:解决方法:https://videoconverter.wondershare.com/vlc/flv-not-displaying-video-vlc-media-player.html。 在preference 中的video选项把output调到opengl或x11什么的都可以,automat 阅读全文
posted @ 2017-12-19 16:46 笨笨coding 阅读(2642) 评论(0) 推荐(0)
摘要:解决方法:https://forum.manjaro.org/t/no-sound-solved/3517 LOL i feel like such a noob. Fixed my problem after searching these forums and found this thread 阅读全文
posted @ 2017-12-19 13:55 笨笨coding 阅读(4224) 评论(0) 推荐(0)
摘要:首先有两个.c文件:circle.c和circulararea.c。 分别对两个源文件生成目标文件,circle.o和circulararea.o。 gcc -c circle.c circularrea.c。 阅读全文
posted @ 2017-12-18 21:26 笨笨coding 阅读(220) 评论(0) 推荐(0)
摘要:-Wall: 使输出中包含警告信息,提示一些可以避免的错误。如果没有错误,则不会输出信息。 -o:后面加上可执行文件的名字。如果不加-o选项,会默认生成a.out可执行文件。举例:gcc -Wall -o circle circle.c。因为加了-o circle,所以会生成circle可执行文件, 阅读全文
posted @ 2017-12-18 19:48 笨笨coding 阅读(321) 评论(0) 推荐(0)