Linux&安卓
不要做程序员的小松鼠
愉快的调bug......
展开
-
CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found
解决办法: sudo apt-get install g++安装g++原创 2016-04-12 18:26:02 · 8619 阅读 · 0 评论 -
Error found when loading /root/.profile错误
使用root账户登录时候报Error found when loading /root/.profile错误终端输入:nano /root/.profilemesg n 进行注释,在前面加上#增加一行 tty -s && mesg n,ctrl+x 保存并退出,输入Y,回车。重启系统 终端输入 init 6原创 2016-04-12 18:44:13 · 3310 阅读 · 0 评论 -
Ubuntu 14.04安装及使用(添加root用户,与windows共享文件夹)
使用visualbox,在win7下,之前用vmware,但是这货一开机就占地方,为了安装Genymotion直接转用visualbox。建一个Linux虚拟机,一直点next到完成。设置->存储->控制器->分配光驱 选择下载的ubuntu镜像即可。ubuntu安装就是一直 继续即可。安装visualbox的增强功能 设备->安装增强功能重启虚拟机,就可以调节分辨率了。视图->原创 2016-04-12 18:20:49 · 2054 阅读 · 0 评论 -
Genymotion出现virtualbox cannot start the virtual device
打开Genymotion,点击虚拟机的扳手。将Processor(s)设为1即可,默认是4。原创 2016-04-13 18:50:32 · 1222 阅读 · 0 评论 -
Linux+C(一)
gccGNU编译器套件(GNU Compiler Collection):由 GNU 开发的编程语言编译器,支持很多编程语言。基本用法gcc [options] [filenames]-c,只编译,不链接成为可执行文件,编译器只是由输入的.c等源代码文件生成.o为后缀的目标文件,通常用于编译不包含主程序的子程序文件。 -o output_filename,确定输出文件的名称为outp原创 2016-07-19 10:58:20 · 797 阅读 · 0 评论 -
Linux 共享内存 errno 13 Permission denied
我的代码发生这个错误,Permission denied实际上指的是key冲突了,修改个key就好了。查看可以用ipcs -m。原创 2016-08-08 20:57:49 · 2829 阅读 · 0 评论