GNU/LINUX
文章平均质量分 59
woyaoying
唯有懂得生活的人才能做出好产品,精益求精,不断追求卓越.致力于开发超大型MMO服务器!
展开
-
Linux text mode(console/文本模式)修改分辨率
http://wiki.antlinux.com/pmwiki.php?n=HowTos.VgaModesColours 640x400 640x480 800x600 1024x768 1152x864 1280x1024 1600x1200 -------+--------------------------------------------------------------转载 2008-10-31 13:53:00 · 2467 阅读 · 0 评论 -
ubuntu 执行shell出现cd命令不能执行的解决方案
shell在windows上写的,拿到linux稍微修改了下跑不了,竟然说cd命令找不到.我晕死,从国外站点查到是因为有^M字符结尾的原因 #!/bin/bashDOSFILE="$1"UNIXFILE="${DOSFILE}.unix"if [ ! -e "$DOSFILE" ] ; then printf "Usage: %s [file to convert]/n"原创 2010-02-04 17:04:00 · 4401 阅读 · 0 评论 -
Install an RPM Package on Ubuntu Linux(from how to geek)
Installingsoftware on Ubuntu usually entails using Synaptic or by using anapt-get command from the terminal. Unfortunately, there are still anumber of packages out there that are only distribu转载 2010-02-03 09:59:00 · 954 阅读 · 0 评论 -
linux下1023端口以下必须管理员权限才可以开启(包括1023端口)
linux下1023端口以下必须管理员权限才可以开启(包括1023端口)原创 2010-02-04 14:02:00 · 1492 阅读 · 0 评论 -
Problems with Eclipse buttons in Ubuntu 9.10(Cannot create/import project)
Posted on October 30th, 2009 at 14:44 in eclipseopen sourceubuntuAfterupgrading to Ubuntu 9.10 (Karmic Koala) some buttons no longer work inEclipse 3.5. Cli转载 2010-02-03 11:05:00 · 668 阅读 · 0 评论 -
Eclipse on Ubuntu(Linux) 字体很难看,下面贴出解决方案。
在你安装的Eclipse目录下新建文件ec,赋予可执行权限 #!/bin/shcd /usr/lib/eclipseGTK2_RC_FILES=gtkrc-sar ./eclipse 自行替换cd 你的ecilpse安装目录 然后再新建一个文件gtkrc-sar, 启动Eclipse的时候,用./ec启动即可 style "eclin" {Gtk原创 2010-02-04 09:46:00 · 5343 阅读 · 0 评论 -
FLASH安全沙箱服务器端程序代码(跨平台,C++/JAVA)
Main.cpp (Win/*nix) #include "FlexSecurityBox.h"int main(int argc, char ** argv) { char * address; short port; if (argc == 2) { address = "0.0.0.0"; port = atoi(argv[1]); }原创 2010-01-27 15:44:00 · 1930 阅读 · 0 评论 -
Ubuntu的并行启动
如果你在使用多核处理器,那么你可以配置Ubuntu的一个参数来使用Ubuntu的启动并行,以加快其启动速度。这个参数在文件/etc/init.d/rc中,其参数名是CONCURRENCY默认值是none,你可以把这个参数改成如下所示。于是,你就开启了Ubuntu的并行启动的功能。CONCURRENCY=shell但是,这个参数会导致dbus, hal和gdm的产生“race con转载 2010-01-22 17:52:00 · 1166 阅读 · 0 评论 -
Linux 的多线程编程的高效开发经验
原文章地址: http://www.ibm.com/developerworks/cn/linux/l-cn-mthreadps/index.html 应该说在循环锁的使用的时候,注意下FREEBSD和OPENBSD平台 #if defined(__FreeBSD__) || defined(__APPLE_CC__) || defined(__OpenBSD转载 2009-07-04 18:50:00 · 737 阅读 · 0 评论 -
Linux 技巧:让进程在后台可靠运行的几种方法
原文地址: http://www.ibm.com/developerworks/cn/linux/l-cn-nohup/index.html 自我感觉Screen好强大,就是个虚拟的控制台,为所欲为啊~~不过&加上()这个还是很好玩,不错的一篇技巧文章。 级别: 中级申 毅 (shenyyi@cn.ibm.com), 软件工程师,转载 2009-07-04 18:25:00 · 485 阅读 · 0 评论 -
Socket 函数集(linux)
原文地址不清楚,如有冲突,请原作者见谅! accept(接受socket连线)相关函数socket,bind,listen,connect表头文件#include#include定义函数int accept(int s,struct sockaddr * addr,int * addrlen);函数说明accept()用来接受参数s的socket连线。参数s的socket必需先经bind()、li转载 2008-12-12 17:34:00 · 668 阅读 · 0 评论 -
ubuntu 8.10 静态 ip 问题
Manual workaround for setting static IP address bug in Ubuntu 8.10 Intrepid IbexThere seems to be a known bug with the Gnome Network Manager included with the Ubuntu 8.10 release that resets any stati转载 2008-11-21 16:37:00 · 1447 阅读 · 0 评论 -
Ubuntu Server 更改时区(change timezone)
tzselect command just give you a view.if u wanna change the timezone, use "sudo dpkg-reconfigure tzdata"(without quotes) instead.原创 2008-11-03 13:49:00 · 1815 阅读 · 0 评论 -
ubuntu8.04关于公共环境变量的设置
经过查找,在/etc/init.d目录下的console-screen.sh里面有set -a这行代码,然后下来就是装载/etc/environment文件以及etc/default/local来加载语言设置。也就是说,如果需要公用的设置环境变量的文件就是/etc/environment文件。原创 2008-10-30 21:44:00 · 637 阅读 · 0 评论