windowns 7如何看gl inet openwrt-GL版本

Errors while using opengl buffers using visual studio 2010 in windows7 - Stack Overflow
to customize your list.
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.
J it only takes a minute:
Join the Stack Overflow community to:
Ask programming questions
Answer and help your peers
Get recognized for your expertise
I am writing CUDA C codes and trying to use OpenGL for the visualization of simulation data.
I am using Visual Studio 2010 for development.
I was going through the "CUDA by example" book and tried to reproduce the examples in the book. So in the CUDA OpenGL interoperability section everything did work fine until I began making use of glGenBuffers. Other functions related to buffer objects, like glBindBuffer did not identify during compilation either. I googled a lot about this and there are many suggestions like including "GL/glext.h", which I all tried.
I would also like to mention that all of the headers (glut.h, glew.h, glxew.h and wglew.h) and lib files (glut.lib, glew32.lib, glew32s.lib) are present in the Visual Studio SDK lib and inc directories. In the VS 2010 Project → properties → linker → input → additional dependencies I added the library files in the following order:
cudart.lib
glut32.lib
glew32.lib
glew32s.lib
freeglut.lib
opengl32.lib
Here's my program's source core for reference
#include &stdio.h&
#include &stdlib.h&
#include &string.h&
#define GL_GLEXT_PROTOTYPES
#include &GL/gl.h&
#include &GL/glut.h&
#include &GL/freeglut.h&
#include &GL/glew.h&
#include &GL/glext.h&
#include &cuda.h&
#include &cuda_runtime.h&
#include &cutil.h&
#include &cudagl.h&
#include &cuda_gl_interop.h&
#define DIM 512;
GLuint bufferO
cudaGraphicsResource *
void display (void)
glClearColor(1.0f, 0.0f, 0.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
glLoadIdentity();
glFlush();
void reshape (int width, int height)
glViewport(0, 0, (GLsizei)width, (GLsizei)height);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(60, (GLfloat)width / (GLfloat)height, 1.0, 100.0);
glMatrixMode(GL_MODELVIEW);
int main(int argc,char **argv)
cudaDeviceP
memset(&prop,0,sizeof(cudaDeviceProp));
prop.major = 1;
prop.minor = 0;
cudaChooseDevice(&dev,&prop);
cudaGLSetGLDevice(dev);
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGBA);
glutInitWindowSize(512, 512);
glutInitWindowPosition (100, 100);
glutCreateWindow("Bitmap");
glutDisplayFunc(display);
glutReshapeFunc(reshape);
glutMainLoop();
glGenBuffers(1,&bufferObj);
//glBindBuffer()
When compiling, I'm presented with the following errors:
1& C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.2\C\common\inc\GL/glut.h(574) : see previous definition of 'GLUT_GAME_MODE_DISPLAY_CHANGED'
1&C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.2\C\common\inc\GL/glew.h(84): fatal error C1189: #error : gl.h included before glew.h
1&C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\BuildCustomizatio ns\CUDA 4.2.targets(361,9): error MSB3721: The command ""C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v4.2\bin\nvcc.exe" -gencode=arch=compute_10,code=\"sm_10,compute_10\" --use-local-env --cl-version 2008 -ccbin "c:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin" -I"C:\ProgramData\NVIDIA Corporation\NVIDIA GPU Computing SDK 4.2\C\common\inc" -I"C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v4.2\include" -G --keep-dir "Debug" -maxrregcount=0 --machine 32 --compile -g -Xcompiler "/EHsc /nologo /Od /Zi /MDd " -o "Debug\OPENGL_PRAC_1.cu.obj" "C:\Users\umdutta\Desktop\SANKHA_ALL_MATERIALS\PRO GRAMMING_FOLDER\CUDA_OPENGL_C\2_PRACTICE_PROG_FOLD ER_(OPENGL_PRAC)\PROJ_NUM_1_OPENGL\PROJ_NUM_1_OPEN GL\OPENGL_PRAC_1.cu"" exited with code 2.
1&Build FAILED.
109k786186
It really helps to read the error messages. Your problem is, that you mindlessly include a bunch of headers. First, you need only glew.h, and don't use glext.h. Then it's also important to include the headers in the right order.
This should work:
#include &stdio.h&
#include &stdlib.h&
#include &string.h&
/* GLEW covers everything OpenGL.
When you use GLEW you do not need any other OpenGL header */
#include &GL/glew.h&
/* GLUT is not part of OpenGL. Either use glut.h or freeglut.h – not both. */
#include &GL/glut.h&
#include &cuda.h&
#include &cuda_runtime.h&
#include &cutil.h&
#include &cuda_gl_interop.h&
BTW: cudagl.h is for the old, deprecated GL interaction API. If you use cuda_gl_interop.h you should not use cudagl.h.
109k786186
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Not the answer you're looking for?
Browse other questions tagged
Stack Overflow works best with JavaScript enabledLinuxinstantmessenginternetexplorwinpopupsmbcli【windows和linux】常用软件的对应_CTO技术网
windows和linux常用软件的对应
周海汉 按:
转载自:http://www.linuxrsp.ru/win-lin-soft/table-chn.html
关于本主题,也可以参考:
但因为原文已经二三年没有更新了,一些软件尤其是应用软件已经废弃或被替代。仅供参考。
下面是原文。
视窗软件的Linux类似/替换/相近品.
最后更新:16.07...2005
最后版本:http://www.linuxrsp.ru/win-lin-soft/.
其他译本:English,Russian,Italian,Spanish,French,German,Hungarian, Polish, ,中文
Linux新手的一个大问题就是不熟悉与视窗相近软件的Linux新版本。新手们通常搜索与视窗 软件相近的Linux软件,同时高级Linux用户并不能回答这些问题因为他们对视窗不熟。这个视窗
软件Linux 类似 /替换 /相近列表是给予我们的经验和这个网页的访问者的建议而建成的。
本列表仍在更新中,两栏均是。一些特有Linux软件可能并未录入。将来,我们计划将之移入PHP/MySQL,这样将方便访问者加入建议或意见。
如果有意见建议,请发信到winlintable[a]linuxrsp.ru(注明软件名称等信息),
操作系统,描述 (用途,等),最好加上链接。欢迎留下意见建议winlintable[a]linuxrsp.ru。
注意:1)一般所有Linux程序都是自由软件。(自由软件定义: FSF
和Debian)。 版权软件被标识为[版权]。非自由软件(开源或自由,但有限制)被标识为[非自由软件]。2)如果相应栏里一无所有,除了&未知&- 作者并不知到具体地址。3)如果标识为 (未知)的软件或程序-作者并不知到具体相应内容。
视窗,Linux间理念上重要差别:大多视窗程序的开发基于&大而全&的策略(每个产品保含所有功能)。同样,这被称为&视窗-方式&。UNIX/Linux的理念-一个部件程序仅执行一个功能,但做的最好。(&UNIX-方式)。Linux程序可被认为建筑的砖石。(例如,如果有个拼写检查程序,那他一定能被文本编辑器或电子邮件客户端软件使用;或有个功能强大的文件下载命令行软件,写个图形界面(前端)是件轻而易举的事)。这个原则在搜索相近视窗-程序的Linux程序中是很重要的:)。
读一下&Linuxand the Unix Philosophy&这本书。中间有一章专门揭晓视窗、Linux间理念的差别。
注意! 本文可能还有错误!(报告错误).
为那些对视窗-软件感兴趣的:1)视窗-软件非本文重点.故没有列出所有软件 -仅常用程序。2)许多Linux程序可在视窗下运行 -用CygWin或其他Linux模拟器。
Linux软件可从下列地点获得:FreshMeat.net| SourceForge.net - 两大网站。应有尽有!!|
| -推荐./ Linux | LinuxSoftware.org| 文件Watcher.org | -其他.程序 / 软件包 / 软件库搜索系统:&RPMseek.org
| RPMfind.net
可以用Wine/WineX运行的视窗程序游戏:1) 运行在Wine下视窗
软件的官方列表(来自Codeweavers)。数据库大约有超过1000软件,配有导航系统。2)可在WineX下运行视窗游戏官方列表(来自Transgaming)。搜索论坛,完整游戏列表(极大)。
类别:1)网络2) 文件3) 桌面 / 系统 软件4)多媒体:&&4.1) 音频 /CD&&4.2)图形&&4.3)视频及其他5)办公商务6)游戏7)编程开发8)服务器 软件9)科学与专用程序10)模拟器11)其他
InternetExplorer, Netscape / Mozilla, Opera[版权],Firefox,等
1)Netscape / Mozilla.2)Galeon.3)Konqueror.4) Opera.[版权]5)Firefox.6) Nautilus.7)Epiphany.8)连接.(用 &-g&键).9)Dillo.10) Encompass.
命令行浏览器
1)Links2) Lynx3) Xemacs
1)Links.2)ELinks.3) Lynx.4)w3m.5) Xemacs
电子邮件客户端软件
OutlookExpress, Netscape / Mozilla, Thunderbird, The Bat, Eudora, Becky,Datula, Sylpheed /Sylpheed-claws,Opera
1)Evolution.2)Netscape /Mozilla/Thunderbirdmessenger.3) Sylpheed/ Sylpheed-claws.4) Kmail.5) Gnus.6)Balsa.7) BynariInsight GroupWare Suite. [版权]8)Arrow.9)Gnumail.10) Althea.11)Liamail.12) Aethera.13) MailWarrior.14) Opera.
电子邮件客户端软件/个人信息管理MSOutlook 风格
1)Evolution.2)Bynari Insight GroupWare Suite.[版权]3)Aethera.4) Sylpheed.5)Sylpheed-claws.
电子邮件客户端软件TheBat 风格
1)Sylpheed.2)Sylpheed-claws.3)Kmail.4) Gnus.5)Balsa.
命令行电子邮件客户端软件
Mutt[de],Pine, Pegasus, Emacs
1)Pine. [非自由软件]2)Mutt.3) Gnus.4)Elm.5) Emacs.
1)Agent [版权]2)Free Agent3) Xnews4)Outlook5) Netscape / Mozilla6) Opera[版权]7)Sylpheed /Sylpheed-claws8)Dialog9) Gravity10) BNR2
1)Knode.2) Pan.3) NewsReader.4) Netscape /Mozilla.5) Opera[版权]6) Sylpheed /Sylpheed-claws.命令行:7)Pine. [非自由软件]8)Mutt.9) Gnus.10)tin.11) slrn.12) Xemacs.13) BNR2.
Flashget,Go!zilla, Reget, Getright, DAP, Wget,WackGet, MassDownloader, 等
1)Downloader for X.2)Caitoo(former Kget).3) Prozilla.4) Wget (命令行,标准).5) Wget图形界面:Kmago, GnomeTransfer Manager, QTget, Xget, 等6) Aria.7) Axel.8)Download Accelerator Plus.9) GetLeft.10) Lftp.
TeleportPro, Httrack, Wget,等
1)Httrack.2) WWW OfflineExplorer.3) Wget (命令行,标准).图形界面:Kmago, QTget, Xget,等4) Downloaderfor X.5) Pavuk.6) XSiteCopy.7)GetLeft.8) Curl (命令行).9)Khttrack.
FTP-客户端软件
BulletProof FTP, CuteFTP, WSFTP, SmartFTP, 文件Zilla,等
1)Gftp.2) Konqueror.3) KBear.4)IglooFTP.[版权]5)Nftp.6)Wxftp.7) AxyFTP.8)mc. (cd ftp://等)9)tkFTP.10) Yafc.11) Dpsftp.(消亡项目)
命令行FTP-客户端软件
FTPin Far, ftp.exe, Ncftp
1)Ncftp.2) Lftp.3)Avfs. (从任意程序:/#ftp:等)
IRC-客户端软件
Mirc,Klient, VIRC, Xircon, Pirch, XChat
1)Xchat.2) KVirc.3) Irssi.4) BitchX.5)Ksirc.6) Epic.7)Sirc.8)PJIRC.
本地网络聊天客户端软件无服务器
1)QuickChat2) Akeni3) PonyChat4) iChat
1)talk (命令行),ktalk.2) Akeni.3)Echat.4)write, wall (同机用户间聊天)
视窗机器的本地消息系统
smbclient(命令行).图形界面:1)LinPopUp 2.2)Kpopup.3)Kopete.
即时通讯客户端软件
ICQLite, ICQ Corp, MSN, AIM, Yahoo,等Trillian ICQ (自由软件,可替代所有IM客户端软件),Miranda, Gaim
1)Licq (ICQ).2) Centericq(近似IM协议,命令行).3)Alicq (ICQ).4)Micq (ICQ).5) GnomeICU(ICQ).6) Gaim.(几乎所有IM协议)7)Ayttm. (几乎所有IM协议)8)Kopete.9) Everybuddy.10)Simple InstantMessenger.11) ImiciMessenger.12) Ickle(ICQ).13) aMSN(MSN).14) Kmerlin (MSN).15) Kicq(ICQ).16) YSM.(ICQ, 命令行).17)kxicq.18) YahooMessenger for Unix.19) Kmess(MSN).20) AIM.21) MSNre.(命令行)
JabberIM 客户端软件
JAJC,Tkabber( activestate tcl), Psi,Exodus, WinJab,myJabber, RhymBox, Rival, Skabber, TipicIM, Vista, Yabber,Miranda, Gaim,Akeni MessengerJabber Edition
1)Tkabber.2)Gabber.3) Psi.4)Gaim.5) Centericq(命令行).6) Ayttm.7) AkeniMessenger Jabber Edition.
监视站点邮箱,显示邮件台头
1)Web Secretary.2)Knewsticker &korn.3) Mozilla (未知).4)watch -n seconds lynx -dump
视频/音频会议
NetMeeting
1)GnomeMeeting.2)vat/vic/wb.3)rat/wbd/nte.4)NeVoT.5)IVS.
SpeakFreely
1)Speak Freely forUnix.2) TeamSpeak.
防火墙 (包过滤)
BlackICE,ATGuard, ZoneAlarm, Agnitum Outpost 防火墙,WinRoute Pro, Norton InternetSecurity, SygatePersonal 防火墙PRO,Kerio Personal 防火墙,等
iptables或更多过时IPchains(命令行,标准).前端:1)Kmy防火墙.2)Easy 防火墙Generator.3)防火墙Builder.4)Shorewall.5)Guarddog.6)FireStarter.7)Smoothwall. [版权]8)IPCop.9) Zorp.
IDS(入侵检测系统)
1)BlackICE2) Agnitum Outpost 防火墙3)Tripwire [版权]4)Kerio Personal 防火墙
1)Snort.2) Portsentry/ Hostsentry / Logsentry.3) Tripwire [GPL].4)Tripwall.5) AIDE.6) ViperDB.7) Integrit.8)CerberusIntrusion Detection System.9) MIDASNMS.
端口扫描检测
增强系统安全
1)Bastille.2)Linux Security AuditingTool.
VisualRoute[版权]
1)Xtraceroute.2) VisualRoute.[版权]3) Mtr.4)Geotrace.
Proxomitron,ATGuard, Agnitum Outpost 防火墙,Privoxy, MS ISA 服务器,Guidescope, 等
1)DansGuardian.2)Squid.3) Squidguard.4) Privoxy.5)JunkBuster.6)Zorp.7) Fork.8)Redirector.
流量控制 /shaping
WinRoutePro, 等
1)IP Relay.2)CBQ (从IP路由2 包).3) tc (从IP路由2 包).4) LARTC.
流量控制统计
Netstat,Tmeter, 等
1)Tcp4me.2) Getstatd.3) Ipacct.4)Ipac-ng.5)Ipaudit.6)Lanbilling.7) SARG(完全Squid交通).8)Talinux.9) NetUPUserTrafManager.10) MRTG.11)NetTop.
点对点客户端软件 /服务器,文件共享(p2p)
Morpheus(Gnutella), WinMX, Napster, KaZaA (Fasttrack), eDonkey[版权],eMule, TheCircle,Bittorrent,SoulSeek, Direct Connect
1)Mldonkey.(eDonkey, Soulseek, Fasttrack, Gnutella, Open Napster, DirectConnect, BitTorrent)2) LimeWire.(Gnutella)3) Lopster.(OpenNAP)4) Gnapster.(OpenNAP)5) eDonkey.(eDonkey) [版权]6) cDonkey.(eDonkey)7) Giftclient / 服务器/fasttrackplugin (Fasttrack)8) ed2k_图形界面.9)Gtk-Gnutella.(Gnutella)10) Qtella.(Gnutella)11) Mutella.(Gnutella, 命令行)12)TheCircle.13) Freenet.(匿名点对点)14)GNUnet.15)Lmule. (eDonkey)16) Xmule.(eDonkey)17) Bittorrent.18) PySoulSeek(Soulseek).19) Loophole.(WinMX) [版权]20)Direct Connect.21)QuickDC. (DirectConnect).22) OverNet.23) Apollon.24)GrapeWine.(匿名点对点)25)Snark.(Bittorrent)
&Hotline&点对点协议客户端软件 /服务器
客户端软件:1)Gtkhx.2)Fidelio.3) GHX.[版权]服务器:1)Synapse.2) HSX.
调制解调器-从回叫和AON到传真设备
VentaFax, PrimaFax
1)Gfax. (未知)2)PrimaFax.[版权,99$]3) mgetty
sendfax.4) vgetty.
1)HylaFax.2) Fax2Send.[版权]3) Efax.4)VSI-FAX.[版权]
Vdialer,etc
1)Kppp.2) X-isp.3)wvdial. (前端:X-wvdial,kvdial, gtkdial).4) Gppp.5)Kinternet.6) Rp3.7) pppconfig
poff.8) ModemLights.9) Netcount.(命令行)
1)Golded.2) Golded .3)Msged.4) Qded.
FastEcho,hpt
1)hpt.2) CrashEcho.3)Qecho.4) CrashMailII.5) Fidogate -新闻组门户.6)ifmail - 新闻组门户.
SF-Mail,T-Mail
1)ifcico.2) qico.3)Bforce.4) Binkd.
1)VNC, Virtual NetworkComputing2) RemoteAdministrator (Radmin) [版权]3)Remote Assistance [版权]4)Symantec pcAnywhere [版权]5)Windows Terminal 服务器 [版权]6)Rdesktop [版权]7)Radmin [版权]8)PC-Duo [版权]9)Huey PC 远程Control(only for NT)[版权]10)Timbuktu Pro [版权]11)LapLink [版权]12)GoToMyPC [版权]13)Bo2k and other trojans
1)VNC, Virtual NetworkComputing.2) ssh.3)远程管理XFree86.4)远程管理KDE3.1. (&桌面共享&).5) Rdesktop Client.6)rsh / rlogin.7) telnet.8) Gtelnet.9) x0rfb服务器.10) KDE Universal 远程桌面.
HyperTerminal,Terminate, etc
Kermit.2)Msterm.3) Xtel.4) uucp.5) lrzsz 从uucp到cu.
Putty,Irlex, cygwin
1)Kssh.2) ssh / openssh.3)GTelnet.(Telnet, SSH, Rlogin)
Dumeter,Netmedic
1)Gkrellm.2)Big Brother.3) Etherape.4) Nagios.5)Tkined.6)MRTG.7)Rrdtool.8) PIKT.9)Autostatus.10)bcnu.11) mon.12)Sysmon.13) Spong.14)SNIPS.15)iptraf (命令行).16) Ksysguard.17) OpenNMS.18) tcpdump.
惠普OpenView,MS SMS, Tivoli
1)HP OpenView agents. [版权]2)Big Brother.3) Cheops.4)Tkined.5)OpenNMS.
协议分析,探测
SnifferPro, EtherPeek (TokenPeek, AiroPeek), Windump,Ethereal, MS 网络Monitor,Iris, LanExplorer, NetSniffer,Snort, 等
1)Ethereal.2) Tcpdump.3)Etherape.4)Ntop.5) IPxdump.( IPxparse解析)6) Snort.
ShadowScan,ISS, Retina, Internet Scanner
1)Nessus.2) Nmap.
1)IP路由2 IPtables.2) GateD.[版权]3)GNU Zebra.
以太网/IP测试工具,软件库
Buddyphone[版权],Cisco SoftPhone
1)GNUBayonne.2) Openh323.3)OpenPhone.4) tkPhone.5) NauPhone.
数据/文件共享
Windows共享
1)NFS.2) Samba.3)Samba-TNG.4) FTP.
WindowsDomain, Active Directory
1)Samba.2) Ldap.3)yp.
查看视窗-网络
1)Samba.2) KDE Lan Browser, lisa3) Lin邻居.4)xSMBrowser.5)Komba2.6)Konqueror.
1)RASPPPOE
1)rp-pppoe.2) Pptpclient.
分布式计算
所有项目.1)United Devices.2) Seti@ Home.3) Folding @Home.4) Genome@ Home.
所有项目.1)Distributed.net.2)Seti @ Home.3)Folding @ Home.4)Genome @ Home.5)D2ol.* 有些Linux版本仅在命令行模式下运行.
VRML查看,编辑器
1)WhiteDune.
1)Bidwatcher.
文件管理(FAR和NC风格)
FAR,Norton Commander, Disco Commander, Volcov Commander, etc
1)Midnight Commander.2)X Northern Captain.3) Deco(Demos Commander).4) PortosCommander.5) Konquerorin MC style.6) Gentoo.7) VFU.8)Ytree.
文件管理(WindowsCommander 风格)
TotalCommander (Windows Commander前身)
1)Krusader.2)Kcommander.3)文件Runner (TCL/TK).4) LinuxCommander.5) LinCommander.6) Rox,Rox-文件r.7)Emelfm.8)Midnight Commander.9)Worker.
文件管理视窗风格
WindowsExplorer / Internet Explorer
1)Konqueror.2)Gnome-Commander.3)Nautilus.4)Endeavour Mark II.5) XWC.
1)vshnu: theNew Visual Shell.
快速查看本地 HTML文档
1)Internet Explorer2) Microsoft Document Explorer
1)Dillo. (俄语补丁-here).2)Konqueror.3)Nautilus.4)Lynx / Links.
查看所有文件操作
Roxio(former Adaptec) UDF Reader, Roxio Direct CD
Linux-UDF.
多路CD 从多CD中恢复信息
1)WinZip2) WinRar3) 7-Zip4)WinACE5) UltimateZip
1)Ark (kdeutils).2) Gnozip.3)KArchiveur.4)Gnochive.5)文件Roller.6)Unace.7) LinZip.8)TkZip.
命令行归档
arj,rar, zip, tar, gzip, bzip2, lha等
1)tar, gzip, bzip2.2) Unarc.3)Lha.(日语)4)Infozip.5)Arj.6) Avfs.(支持各种程序格式 -file.zip#/等).7) Zoo.8) RAR.9) CABExtract.
文件、目录压缩
1)Beyond Compare.2)Araxis Merge.3) WinMerge4) Minimalist GNU For Windows(diff.exe)5) Unison
1)Mgdiff.2) diff, patch.3) Xemacs.4) Xdelta.(为二进制文件打补丁)5) Meld.6)Xxdiff.7)Unison.
批文件重命名
TotalCommander插件,等
1)GPRename.(基于Perl)2)插件 forMC (未知)
3)桌面系统软件
文本编辑器
Notepad,WordPad, TextPad, Vim, Xemacs,等
1)Kedit (KDE).2) Gedit (Gnome).3) Gnotepad.4)Kate (KDE).5) KWrite(KDE).6) Nedit.7) Vim.8)Xemacs.9) Xcoral.10) Nvi.11)Ozeditor.
命令行文本编辑器
1)Vim2) Emacs3)FAR编辑器,DN编辑器,等
1)Vim.2) Emacs.3)Nano. (pico的一个自由版本)4)joe.5)Fte.6) Jed.7)CoolEdit.
多用途文本、代码编辑器
SciTE,UltraEdit, MultiEdit, Vim,Xemacs, 等
1)Kate (KDE).2) Nedit.3)CodeCommander.4)SciTE.5)Quanta Plus.6)Vim.7) Xemacs.8) Mcedit (同mc一起发布).9) Jed.10)Setedit. (Turbo Vision looking 风格)11)HT编辑器.
文本编辑器 (古代斯拉夫语)支持
Bred,Rpad32, Aditor, Vim, Xemacs
1)Kate (KDE).2) Nedit.3)Fte (命令行).4)Patched version of Midnight Commander.5) Vim.6)Xemacs.
查看PostScript
1)RoPS2) GhostView
1)GhostView.2)Kghostview.3) GV.4) GGV.
1)Adobe Acrobat Distiller2) GhostView
1)Acrobat Reader.[版权]2) Xpdf.3) GV.4) GGV.5) GhostView.6)Kghostview.
1)Adobe Acrobat Distiller2) GhostView3) Ghostscript
1)任何Linux所见所得程序 -&打印到文件 -&ps2pdf. (这里有专门介绍文章).2)Adobe不偿失Acrobat Distiller. [版权]3)PStill. [共享软件]4)PDFLatex.5) Xfig.6) Ghostscript.7)Tex2Pdf.8) Reportlab.9) GV.10) GGV.11) GhostView.12)Kghostview.13) Panda PDF Generator.
WindowsPrivacy Tools
1)GnuPG (命令行)
GPA,KGpg, 和其他前端s.2)PGP. [版权]
磁盘卷加密
EFS(标准),PGP-Disk, BestCrypt, PrivateDisk Light
1)Loop-aes.2)CFS.3) TCFS.4)BestCrypt.5) CryptFS.
mstask,nnCron
cron,at (标准,命令行).图形界面:Kcron.
Outlook日程安排
Outlook日程安排
1)KOrganizer.
VirtualDrive,VirtualCD, Daemon 工具,等
1)VirtualCD Kernel Modul.2) &cp /dev/cdrom mycd.iso&
&mount -o loop mycd.iso /mnt/cdrom/&.
文本辨识(OCR)
Recognita,FineReader
1)ClaraOcr.2) Gocr.3)Kooka.
翻译(古代斯拉夫语)
Promt,Socrat
Ksocrat(未知)
英-俄字典 (古代斯拉夫语)
1)ABBYY Lingvo2) Socrat3) JaLingvo4)phpMyLingvo
1)Mueller.2)Ksocrat.3)JaLingvo.4)phpMyLingvo.5) dict Kdict.6) DictX.7) Groan.8)Mova.9) Slowo.10) Stardict.
随扫描仪CD的程序, VueScan
1)Xsane.2) Kooka.3)Xvscan. [版权]4) VueScan. [版权]
AVG杀毒软件,NAV, Dr. Web, TrendMicro,F-Prot, Kaspersky, 等
1)Dr. Web. [版权]2)Trend ServerProtect.[版权]3)RAV 杀毒软件.[版权](Boughtby Microsoft?)4) OpenAntivirus
AMaViS / VirusHammer.5) F-Prot. [版权]6)Sophie / Trophie.7)Clam Antivirus.8)Kaspersky. [版权]9)YAVR.
控制面板,Msconfig, RegEdit, WinBoost, TweakXP, Customizer XP, X-Setup,PowerToys, Config NT, 等
1)setup (Red Hat).2) chkconfig (Red Hat).3)redhat-config-&feature&. (Red Hat 8.0).4) xf86config,xf86cfg.5) Linuxconf.6)Drakeconf.7) Webmin.8) yast and yast2 (SuSE).9)sysinstall (FreeBSD).10) /dev/hands :).
系统 Commander,PowerQuest Boot Magic, GAG,等
1)Grub.2)Lilo.3) ASPLoader.4) AcronisOS Selector [版权].5)RanishPartition Manager.6) osbs.7)Symon.8)SmartBoot Manager.9) Xosl.10) GAG.
硬盘分区管理
1)PowerQuestPartition Magic [版权]2)Acronis PartitionExpert[版权]3)ParagonPartition Manager [版权]4)PartitionCommander [版权]
1)Part图形界面.(partimage和parted图形界面)2)GNUParted. (图形界面 -QTParted).3)Partition Image.4)fips.5) Diskdrake(Mandrake).6) ParagonPartition Manager [版权].7)Acronis PartitionExpert[版权].(review)
ntbackup(标准),Legato 网络er[版权]
1)LegatoNetworker. [版权]2) Lonetar. [版权]3) Disk Archive.4)Bacula.5) Taper.6) dump / restore. (命令行,标准)7)Amanda (命令行).8) Mondo Rescue.(备份自启动,自动恢复到磁盘)
硬盘分区映象
1)DriveImage2) Ghostpe
1)PartitionImage (图形界面-部分图形界面).2)dd (命令行,标准).3)Mondo Rescue.
1)ImageCast2)Norton Ghost
1)UDP Cast.2) Techteam'sUDP Cast Disks.3) Ghostfor Unix (g4u).
TaskMan(标准),TaskInfo, ProcessExplorer NT.
1)top (命令行,标准).2)Gtop, Ktop.3) Ksysguard.4) &ps aux|more&, &kill&pid&&
自动切换英语、俄语
PuntoSwitcher, KeyboardNinja, Snoop
1)Kgesture.2) wayV.3)Optimoz.
HomePortal.
文本语音转换
MS文本 tospeech
1)KDEVoice 插件.2) Festival.3)Emacspeak.4)VoiceText.
ViaVoice,DragonNaturally Speaking
目前没有可用语音识别软件包.但:1)Sphinx.2)ViaVoice. (基本上消亡了)
流文本处理
1)Minimalist GNU For Windows(sed.exe)2) perl
1)sed, awk.2) perl.
PIM/ DB / hierarchical 树形视图写字板
TreePad[版权],Leo, CueCards
1)TreePad Lite.[版权]2) Yank.3)TreeLine.4)Gjots.5) Leo.6)Hnb - hierarchical notebook.7) TuxCards.
快速切换解析度频率
Integratedwith 系统,comes on CD with 视频 card
1)Multires.2)Ctrl Alt &-&, Ctrl Alt & &.3) Fbset.(使用帧缓存时)
文件中查找替换文字
1)Integrated with 系统2)Indexing service3) HTMLChanger4) Any file 管理
1)find (命令行,标准).2) slocate (命令行,标准).图形界面:1)Gsearchtool.2) Kfind.3) Any file 管理
本地搜索引SGBD
1)Indexing service (未知)2)mnoGoSearch. [版权,视窗版]
1)mnoGoSearch.2) ASPSeek.
系统监视 (built-in)
1)top (命令行,标准).2)Gkrellm.3)Ksysguard.4) Survivor.5)&Hot-babe&. (有特殊副作用,不要使用他 :).
EventViewer (built-in)
1)Xlogmaster.2)Analog.3) Fwlogview.(防火墙)
数据恢复工具
R-Studio(supports Linux 分区)
1)e2undel.2)myrescue.3)TestDisk.4)unrm.5)Channel 16.
文本文件编码器,字符集自动探测
1)Enca.2)Jconv.3) Xcode.(古代斯拉夫语)4) Asrecod.(古代斯拉夫语)
1)Kpilot.2)Jpilot.
处理掌上电脑.html文件
1)iSilo.2)Plucker.
硬件优化(芯片组,PCI总线)
Powertweak
1)Powertweak-Linux.
On-LineBible, The SWORD
1)BibleTime (KDE)2)Gnomesword (Gnome)
桌面背景切换
1)Background Buddy.
键盘语言切换
1)GSwitchIt.
视窗注册表编辑器
Kregedit:).
4.1) 多媒体 (音频/CD).
LinuxMIDI &声音应用程序-许多连接资源.声音软件.
音乐 /mp3 / ogg 播放器
1)Winamp2) Zinf3)SnackAmp4)Soritong5) Apollo6)K-jofol 20007) Sonique8)C-49) MediaBox Audio / 视频Workstation510) BlazeMedia Pro11) NEX312) Real Jukebox13)Windows Media 播放器
1)XMMS (X multimedia system).2)Noatun.3) Zinf.(Freeamp前身)4)Winamp.5) Xamp.6)GQmpeg.7)SnackAmp.8)Mplayer. (前端:Kplayer).9)Xine. (前端:Sinek, Totem)
命令行 音乐 /mp3 / ogg 播放器s
mpg123,dosamp, Mplayer
1)Cplayer.2) mpg123.3)ogg123.4) mpg321.5)Orpheus.6)Mp3blaster.7)Madplay.8)Console utilsfor xmms.9) Mplayer.
图形界面CD录制程序
Nero,Roxio Easy CD Creator, 等
1)K3b. (KDE)2)XCDRoast.3) KOnCd.4)EcliptRoaster.5) GnomeToaster.6) CDBake Oven.7) KreateCD.8) SimpleCDR-X.9) GCombust.10) WebCDWriter.(CD刻录服务器,适于任何远程有Java浏览器)11)CDR Toaster.12)Arson.13) CD-Me(音频-CD创建).
CD播放器,Winamp, Windows Media 播放器,等
1)KsCD.2)Gtcd (Gnome)
tcd (命令行).3)Orpheus.(命令行)4)Sadp.5) WorkMan.6) Xmcd.7) Grip.8) XPlayCD.9) ccd / cccd. (命令行)10) cdp. (命令行)11)BeboCD.
CD降速软件
Slowcd,Cdslow
1) mount-o speed=&速度&2)hdparm -E &速度&3)eject -x &速度&4)cdspeed.
1)Cdex2) MusicMatch3)StreamboxRipper4) Audiocatalyst5)WinDac6) Audiograbber7)Media Box Audio / 视频Workstation8)CD-Copy9) BlazeMedia Pro10) Real Jukebox11) Windows Media 播放器12)Nero13) VirtualDrive14) VirtualCD15) Audacity
1)Grip.2)Audacity.3)RipperX.4)tkcOggRipper.5)CD 编码器.6)cdda2wav.7) GnomeToaster.8) Cdparanoia.9)Cd2mp3.10)Dagrab.11)SimpleCDR-X.12) RatRip.13) AutoRip.14) SoundJuicer.
音轨播放器
Winamp,Windows Media 播放器,等
MikMod-plugin. 与xmms共同发布.2)xmms
xmp-plugin. 使用xmp.3)MikMod. (命令行)4)xmp. 播放音轨Midi设备.5)TiMidity
.仅mod文件.
Midi播放器
Winamp,Windows Media 播放器,等
midi-plugin. (使用 TiMidity)2)xmms
awemidi-plugin. (使用 drvmidi)3)xmms
playmidi-plugin. (使用 playmidi)4)TiMidity
.支持gus路径和sf2banks, 后端联到到其他软件.4)timidity-eawpatches.TiMidity
的Gus-补丁.5)Kmid.6)drvmidi/ awemidi.7) pmidi(命令行,为ALSA).8)playmidi.9) atmidi.
Midi 卡拉OK播放器
1)Kmid.2)Gkaraoke.3)TiMidity
1)Lame2) Cdex3)MusicMatch4)StreamboxRipper5) Audiocatalyst6)Blaze Media Pro7) MediaBox Audio / 视频Workstation8)AudioSlimmer9) RealJukebox
1)Lame.2)Bladeenc.3) NotLame.4)L3enc. [版权]5)gogo.
RealPlayer协议
1)RealPlayer. [版权]2) Mplayer
1)RealPlayer.[版权]2) Mplayer
软件库.3)ReMedial.
VC广播,FMRadio, Digband 广播
1)xradio.2) cRadio.3)Xmradio.4) RDJ.5) RadioActive.6)XMMS-FMRadio.7)Gqradio.8) Qtradio.
音频编辑器
声音Forge,Cooledit, Audacity,等
1)Glame.2)Rezound.3) Sweep.4)WaveForge.5)Sox.6) Audacity.7)GNUSound.8)Ecasound.9) 声音Studio.10) mhWaveEdit.
多规音频处理
1)Ecasound.2) Ardour.
Fasttracker,ImpulseTracker
1)Soundtracker.2)Insotracker.3)CheeseTracker.
1)Opmixer.2)aumix.3) mix2000.4) KMix.5) Alsamixer.6)GMix.7)wmix(WindowMaker)8) Mixer_app (WindowMaker)9) 许多appletsfor AfterStep / WindowMaker / FluxBox.
Finale,Sibelius,SmartScore
1)LilyPond.2)Noteedit.3)MuX2d.
Midi-平衡器
1)RoseGarden.2)Brahms.3)Anthem.4)Melys.5)MuSE.6) MidiMountain.(KDE)更多信息:Midi-Howto.
Cakewalk,FruityLoops
1)RoseGarden.2)Ardour.
Virtualwaves, Csound
1)Csound.2)FluidSynth.3) ArtsBuilder (未知).
ID3-标识编辑器
1)EasyTAG.2) Cantus.3)id3tool (命令行).4)id3ed(命令行).5)id3edit (命令行).
乐器调试软件
1)In-TuneMulti-Instrument Tuner2) Digital Guitar Tuner
流音频录制转换MP3
TwinsStream Ripper
StreamRipper.
4.2)多媒体(图形).
图形文件查看
1)ACDSee2) IrfanView3) Xnview4)CompuPic [版权]5) Windows 传真和Imageviewer5) Any web browser
1)Xnview.2) GQview.3)Qiv.4) CompuPic[版权]5) Kuickshow.6)Kview.7) GTKSee.8)xv. [版权]9)pornview.10) imgv.11)Gwenview.12)Gliv.13) Showimg.14)Fbi.15) Gthumb.16) PixiePlus.17) Electric Eyes (Gnome).18) Eyeof Gnome.19) GImageView.20)Hugues ImageViewer.21) 任何浏览器.
命令行图形文件查看
1)zgv.2) aalib.
简单图形文件编辑器
1)Kpaint.2) Tuxpaint.3)Xpaint.4)Gpaint.5)Killustrator.6) Graphtool.
专业编辑器,PhotoShop风格
1)Adobe Photoshop [版权]2)Gimp3) Paint Shop Pro[版权]4)Pixel32 [版权]5) Corel PhotoPaint [版权]6)Macromedia Fireworks
1)Gimp.2) ImageMagick.3)Pixel32. [版权]4)CinePaint.5)RubyMagick.6)CorelPhotoPaint 9. [版权]
矢量图形程序
AdobeIllustrator, Corel Draw, Freehand, AutoSketch, OpenOfficeDraw
1)Sodipodi.2)xfig.3) Sketch.4)Karbon14 and Kontour.5)OpenOffice Draw.6)Dia.7)Tgif.8)Gestalter.9)ImPress.10)Tkpaint.11)Tgif.12)Corel Draw 9. [版权]
WebDraw[版权]
1)Sodipodi.2)Dia.3)Sketch.
1)Squiggle2) X-Smiles3) SVGsupport in Mozilla
1)Squiggle.2) X-Smiles.3) SVGsupport in Mozilla.4) SVGsupport in Konqueror.
文本 decoration
Wordart,OpenOffice Draw
OpenOfficeDraw.
ASCII-drawing
ANSIDRAW, Mazaika
1)CanvASCII.2)Jave.3) ANSI Draw.4)EDASCII.
图形文件伪图形转换
Flash播放器
1)SWF Macromedia Flash 播放器.2)Flash播放器.[版权]3) Netscape/Mozilla插件 (下载hereor here).
MacromediaFlash
1)DrawSWF.2)Ming.(从编程语言创建FlashSWF输出)
3DStudio MAX, Maya[版权],Povray, 等
1)Blender.2) Maya.[版权]3)KPovModeler.4)K3Studio.5)Moonlight.6)GIG3DGO.7) Povray.8) MegaPov.9)K3D.10) Wings3D.11) SoftimageXSI. [版权]12) Kludge3d.
基于ArchiCAD3D-模型图形转换
ArtLantisRender
图标编辑器
Microangelo
1)Gnome-iconedit.2) Kiconedit.
Integratedwith 系统 (PrintScreen),Snag it, 等
1)Ksnapshot.2) Xwpick.3) Xwd, xgrabsc.4) Motv (xawtv)5)Streamer (视频)6) 视窗管理集成 (不同热键)
数据库结构图形
1)Dia.2)Toolkit for ConceptualModelling.
BroderbundPrint Shop
下载数码相机图片
PolaroidDrivers
1)Camera Tool (gtkam)2) Gphoto2.
4.3)多媒体(视频)
视频 /mpeg4 播放器s
1)BSplayer2)Zoomplayer3) Windows Media 播放器4)VideoLAN5) Winamp36)Mplayer7) RealPlayer8)Xing9) Simplayer
1)Mplayer. (前端:Kplayer).(Mplayer演示CD版-MoviX).2) Xine.(前端:Sinek, Totem)3) VideoLAN.4)Aviplay.5) Winamp3.6)Noatun.7) KDE Media播放器.8)XMovie.9) Kaboodle.10) MpegTV.11)Avifile.12) Xmps.13) Ogg Tarkin. (未知)14)Theora. (未知)
命令行视频 /mpeg4 播放器s
1)Mplayer.2) QuickView.
DVD播放器s
PowerDVD,WinDVD, MicroDVD, Windows Media 播放器,VideoLAN
1)Ogle.2)Mplayer.3) Xine.4)Aviplay.5) VideoLAN.6) OMS.
DVDrippers / 编码器
GordianKnot, Mencoder (fromMplayer)
1)Drip.2)Transcode.3)Mencoder. (源自Mplayer)4)Ffmpeg.5)DVD::Rip.
简单视频创作编辑
WindowsMovie Maker
1)iMiraEditing. [版权]2)MainActor.[版权]3)Broadcast 2000.4) Avidemux.
专业视频产品环境
AdobePremiere, Media Studio Pro
1)iMiraEditing.2) Cinelerra.3)MainActor.4) Broadcast 2000.5) Lives.6) CinePaint.7)Heroine Virtual.
VirtualDub
1)Avidemux.2)Kino.
VirtualDub, Mencoder (fromMplayer)
1)Transcode.2)Mencoder. (源自Mplayer)3)Ffmpeg.
AVerTV,PowerVCR 3.0, CinePlayer DVR, Mplayer,等
1)Tvtime.2)Kwintv.3) Xawtv.4)Zapping.5)GnomeTV.6)Mplayer.7) Xawdecode.
命令行电视
1)Mplayer.2) fbtv.3)aatv.
QuickTimeformat
QuickTime播放器
1)QuickTime.2)Mplayer
Sorensoncodec.3) OpenQuicktime.4)Xanim.
AdobeAfter Effects
1)Shake. [版权,$129.95]2) Gimp插件.
AnimationShop, 等
1)CinePaint.2)Gimp插件.
Terraform.
Worldconstruction
WorldConstruction Set, AnimatekWorld Builder
视频程序开发框架
1)Gstreamer.2) Live.
5)办公/商务
MSOffice, StarOffice/ OpenOffice, 602Software
1)OpenOffice.2)StarOffice.[版权]3)Koffice.4) HancomOffice.[版权]5)Gnome Office.6)Applixware 办公.[版权]7)Siag Office.8) TeX, LaTeX,等
WordPerfect办公 2000
WordPerfect办公 2000Linux.版 (Corel网站不再提供.原是视窗程序,Wine下运行:).
Word,StarOffice /OpenOffice Writer,602Text, Abiword
1)Abiword.2) TextMaker[版权]3) WordPerfect.4)Ted.5) StarOffice/ OpenOffice Writer.6)Kword.7) LyX.8) Kile(KDE Integrated LaTeX Environment).
Excel,StarOffice /OpenOffice Calc, 602Tab
1)Gnumeric.2)Abacus.3) StarOffice/ OpenOffice Calc.4)Kspread.
图形/图表数据
Excel,MicroCall Origin, 等
1)Kivio.2) Dia.3)KChart.4) xfig.5)Gnuplot.6) GtkGraph.7)GNU Plotutils.8)Ploticus.
MSPowerPoint, StarOfficePresentation, OpenOfficeImpress
1)StarOfficePresentation.2) OpenOfficeImpress.3) Kpresenter.4)MagicPoint.5) Kuickshow& gimp :).
本地数据库
MSAccess, InterBase6,OpenOffice
1)KNoda.2) GnomeDB Manager.3) OpenOffice
MySQL.4) InterBase7.[版权]5)InterBase6.6) Berkley DB.7)Rekall.[版权]8)StarOfficeAdabase.
短信,新闻,建图分析财务市场.
OmegaResearch Trade Station 2000
1)The Market AnalysisSystem (MAS)
电子商务网站商务软件
1)Weblogic [版权]2)IBMWebSphere Application 服务器[版权]3)iPlanet4) osCommerce5)JOnAS6) COCOON
1)Weblogic. [版权]2)JBoss.3) IBMWebSphere Application 服务器.[版权]4)osCommerce.5) JOnAS.6) COCOON.
个人财务管理
1)MS Money2) Quicken3) Moneydance[版权]
1)GNUcash.2) GnoFin.3)Kmymoney.4)Grisbi.5) Moneydance.[版权]
MSProject, Project Expert 7
1)Mr Project.2)Outreach.
财务会计包 (全球)
1)Hansa Business Solutions.[版权]2)Quickbooks.
财务会计包 (俄语)
&1C:Accounting&
1)Hansa Business Solutions.[版权]2)IceB.3) &Financeswithout problems&.4) Ananas.5) E/AS.6) 1L:Project.
财务会计包 (亚洲)
Kalculate.[版权]
企业自动化(俄语)
&1C:Enterprise&
1)Keeper. [版权]2)Oblik. [版权]3)IceB.4) Compiere.
ERP/CRM(英语)
1)Compiere.2) Dolibarr.3) Tutos.
ERP/CRM(俄语)
&BOSS-Corporation&
1)NauRP.2)Compiere.3) Dolibarr.
合作文档流系统 (俄语).
1)&Boss-Referent&2) Documentum3) &Delo&4)Lanit:LanDoc
1)NauDoc.2)Documentum.3) &Boss-Referent& (没有客户端软件)
TheLinux Game Tome (happypenguin.org) | | Kde Games | LinuxGame Publishing
Linux游戏列表
http://www.icculus.org/lgfaq/gamelist.php
可在WineX下运行的视窗游戏
搜索论坛,游戏列表(极大)
1)LTris.2) XWelltris.3)Emacs
&Meta-X tetris&.4) Ksirtet.
标准视窗游戏
1)Kde游戏.2)Gnome-游戏.
1) K扫雷.2) Perl扫雷.3) D扫雷.
文明: Call to Power
文明: Call to Power.
SidMeyer Alpha Centauri
SidMeyer Alpha Centauri.
模拟城市 3000
模拟城市 3000.
Command&Conquer
Warcraft2, Starcraft (?)
FreeCraft.
(Win)Digger
1)Digger.2) XDigger.
Arkanoid,Zball, 等
Lbreakout2
Quake 1,2, 3
1)Quake 1, 2, 3.2)QuakeForge.3)DarkPlaces.
1)Quake 1, 2, 3.2)QuakeForge.3)DarkPlaces.
CounterStrike
WineX.下CounterStrike
UrbanTerror
Urban Terror.
1)jDoom / Doomsday.2)Zdoom.3) DOOMLegacy.4) LxDOOM.5)PrBoom.6)EDGE.7) Vavoom.8)Original Doom.
1)jDoom / Doomsday.2)Zdoom.3) DOOMLegacy.4) LxDOOM.5)PrBoom.6)EDGE.7) Vavoom.8)OriginalLinux Doom (X11/svgalib).
1)DOOM Legacy.2)jHeretic / Doomsday.3)Vavoom.4) OriginalHeretic.
1)DOOM Legacy.2)Vavoom.3) Heretic,GL Heretic.
1)jHexen / Doomsday.2)Vavoom.3) OriginalHexen.
1)Hexen/SDL.2)Vavoom.
Returnto Castle Wolfenstein
Returnto Castle Wolfenstein. [版权]
NeverWinter Nights
NeverWinter Nights.
UnrealTournament / Unreal Tournament 2003
UnrealTournament / Unreal Tournament 2003.
7) 编程开发
集成开发环境
1) 微软VisualStudio .net
2) Emacs, XEmacs
vim.sf.net脚本
4) Boa Constructor
5) PythonCard
1) CodeForge.2) Kdevelop
Designer.3) Eclipse.4) Glade
任何编辑器.5) Emacs, XEmacs.6) Vim
vim.sf.net脚本.7) Boa Constructor.8) PythonCard.
集成开发环境
Builder, MS Visual C
2) KDE Studio Gold. [版权]
4) Kylix. [版权] (Kylix个人版免费).
5) vtkBuilder.
6) foxBuilder.
7) wxDesigner.
8) Arriba. [版权]
9) Code Crusader. [版权]
10) CodeWarrior. [版权]
11) Gbuilder.
12) Source Navigator.
13) TimeStorm. [版权]
14) Understand for C
15) SlickEdit. [版权]
16) Vide.C
集成开发环境
Borland Turbo C
3.0 for DOS, , Minimalist GNU For Windows (mingw32-gcc.exe)
Xwpe).2) LinEdit.3) Rhide.4) Wxstudio.5) Eclipse.
Object Pascal 集成开发环境
1) Kylix. [版权] (Kylix个人版免费).
2) Lazarus
FPC.Pascal
Pascal, BP
1) Freepascal.
2) GNU Pascal (gpc).
3) RShell (Borland Pascal 7.0风格)Basic
1) Hbasic.
2) X-basic.
3) Yabasic.
4) SmallBASIC.Prolog
VisualProlog, Mercury, SICStus Prolog [版权]
1) GNU Prolog.
2) Mercury.
3) SWI-Prolog.
4) SICStus Prolog. [版权]
5) CIAO Prolog.汇编
TASM, MASM, NASM
1) NASM. (Intel语法)
2) FLAT Assembler.
3) gas. (AT&T语法,binutils部件).反汇编, 逆向工程
源码公开 :)
1) ldasm.调试器
1) WinDbg2) Minimalist GNU For Windows (gdb.exe)
gdb. 前端:
2) xxgdb, mxgdb.
4) Vim scripts.
5) [X]Emacs C-mode.
7) NANA. (类库)所见所得HTML编辑器
1) Macromedia Dreamweaver
2) MSFrontpage
3) Netscape / Mozilla
4) Openoffice HTML 编辑器1) Netscape / Mozilla
2) Openoffice HTML 编辑器.
4) GINF (Ginf is not Frontpage)
5) IBM WebSphere Homepage Builder. [版权]
6) JXHTMLEDIT (Java).专业编辑器站点创建,包含范本和各种插件
Dreamweaver Ultradev
HTML/DHTML 编辑器
HomeSite, Coffeecup
1) Quanta Plus.
2) Bluefish.
3) WebMaker.
4) Screem.
5) Toppage.
6) WebDesigner.
7) ScriptEditor.
8) August.
9) Coffeecup / Linux.
10) FCKeditor.HTML/DHTML编辑器
Arachnofilia
Arachnofilia. [版权]
XMLSpy [版权]
1) XMLMind XML 编辑器.
Emacs.Perl/Python/Tcl 集成开发环境
1) Komodo. [版权]2) Perl Dev Kit.
Java 集成开发环境
JBuilder, IDEA
链接: Linux下Java工具.
1) Jbuilder.
2) NetBeans.
3) Eclipse.
4) Sun ONE Studio.
[Forte前身]
5) Vide.基于J2EE的应用程序服务器
Oracle数据库集成开发环境
T.O.A.D., SQL Navigator,PL/SQL Developer
UML CASE-工具
ArgoUML, Together ControlCenter
1) Umbrello UML Modeller.
2) Dia Dia2Code.
3) PoceidonCE (community edition).
4) ArgoUML.
5) Together ControlCenter
[版权]顶级CASE工具系统
Rational Rose.
Rational Rose. [版权]
HEX-编辑器
2) KHexEdit.
3) hexedit (控制台).
4) GHex.Clipper 编译器、预编译器
CA-Clipper, The Harbour Project
2) The Harbour Project.
3) xHarbour.dot-Net风格平台
2) DotGNU/Portable.NETCVS(并行版本系统)
WinCVS, TortoiseCVS,
cvs for Windows, BitKeeper
1) cvs (console).
2) Cervisia (KDE).
3) Lincvs. (Front-end for CVS)
4) BitKeeper.
5) SubVersion. (加强版,类CVS平台
WebDAV -& SCM)Interbase/Firebird集成开发环境
1) IBAccess
2) IBAdmin [版权]
3) IBWebAdmin (apache / php)Visual Basic
Visual Basic
1) Phoenix.2) KBasic.3) HBasic.4) Mono.
1) WinAPI, MFC, VCL (C, C
2) Tk (Tcl, C)
3) Tkinter (通过Tk为Python,
Perl,等服务)
4) wxWindows (C
) (通过winapi)
5) wxPython (Python) (通过wxWindows)
(link #2) (C, C
8) FLTK (C
9) AWT, Swing (Java)
10) Xaw - X-server部分 (C)
如果图形库是用C编写的,那其他古老语言一般也可用。 对这些语言,通常使用对象绑定技术是他们能使用C
和其他面向对象语言. 一开始就被定位为C++的工具集,
通常不能被C调用,同时也不能被其他语言调用.1) X11/Xext (C) - 底层库,被其他调用.2) Xt - X Toolkit (C) - 参考X11工具集3) Xaw - MIT Athena (C) - 参考X11工具集4) Xaw3d - MIT Athena
3D (C) - Athena 3D视图5) LessTif - 与Motif 1类似开源 (C)6) OpenMotif (C)7) Tk (Tcl, C)8) Tkinter (通过Tk为Python,
Perl,等服务)9) wxWindows (C
) (over GTK
- wxGtk or Motif - wxMotif)10) wxPython (Python) (over wxWindows)11) Qt (C
)13) PyQt (通过Qt为Python服务)14) PyGTK
(通过GTK 为Python服务)15) Gtk::Perl (通过GTK 为Perl服务)16) Qt for Perl (通过Qt为Perl服务)17) GtkAda (通过GTK 为Ada95服务)18) FLTK (C
)19) XView
(C)20) FOX (C
)21) AWT, Swing (Java)22) WinAPI and MFC through wine (C)
源码文档系统
1) Doxygen.
2) CWEB.内存泄漏跟踪
1) Numega Bounds Checker
2) Rational Purify1) MallocDebug.
2) Valgrind.
3) Kcachegrind.
4) ElectricFence.
5) dmalloc.
6) ccmalloc.
7) LeakTracer.
8) memprof.
9) BoundsChecker. [版权]
10) mprof.
11) Insure. [版权]
12) dbx. (for Sparc)
14) Njamd.
15) Mpatrol.应用程序开发测试 (代码性能,单元测试)
1)nUnit(类似JUnit)
2) JUnit.(Java)软件项目
1) Rational Rose
2) Enterprise Architec
1) DirectX
3) ClanLib1) libSDL
2) ClanLib XML Schemas, DTD, XSL/XSLT, SOAP, WSDL工具(编辑,调试,检验,等)
1) Altova XMLSpy Suite
源代码-& HTML高亮显示
1) Webcpp.
缺陷追踪系统
1) Bugzilla.
Object Request Broker (ORB)
1) Autoconf, Automake & Libtool.
源代码索引和交叉引用
1) GNU GLOBAL.
2) LXR. 动态追踪系统调用
1) Syscalltrack.
XML C 解析器
1) libxml (无,不明)
1) Libxml2.
Visual FoxPro
8) 服务器软件
网络服务器
5) cern-httpd
7) caudium
8) aolserver
9) Boa1) Apache.
2) Xitami.
TUX (Red Hat Content Accelerator).
5) Public文件.
7) Caudium.
9) Zeus. [版权]
10) Thy.FTP服务器
Internet Information Server, ServU, War FTP, BulletProof FTP 服务器, 文件Zilla 服务器, 等
1) pure-ftpd.
2) vsftpd.
3) wu-ftpd.
4) proftpd.
5) gl-ftpd.
7) Public文件.
8) Teepeedee.网络开发语言
网络开发语言
网络开发语言
Apache ASP模块
数据库系统
MS SQL, MySQL
1) Sybase Adaptive Server Enterprise. [版权]
2) PostgreSQL. 推荐
3) MySQL. 推荐
5) SAP DB.数据库系统
IBM DB2. [版权]
数据库系统
1) Oracle. [版权]
2) PostgreSQL.
3) Linter. (古代斯拉夫语)数据库系统
Informix [版权]
Informix. [版权]
数据库系统
Borland Interbase, FireBird
邮件服务器
MDaemon, Hamster
1) Sendmail.2) Qmail.3) Postfix.4) Exim.
邮件/个人信息系统/群件服务器
Microsoft Exchange
1) CommuniGate Pro. [版权]
2) Bynari's Insight GroupWare Suite. [版权]
3) Samsung Contact. [版权]
4) Teamware Office. [版权]
5) Novell Netmail.[版权]
6) Amphora. (Zope / Qmail).
7) Tutos. (Apache / PHP / Mysql / Sendmail).
8) Kroupware. 本项目KDE PIM开发人员,受德国政府资助。
9) SuSe Linux Openexchange Server.[版权]
10) PHPGroupware.
11) SCOoffice Mail Server. [版权](SCO - m.d. :).
12) LinuXchangE.
13) OpenOffice.org Groupware Project.
14) Tiki CMS/Groupware. (Apache / PHP / Mysql).邮件过滤/垃圾邮件清理
cygwin Exim port
1) SpamAssassin.
2) Procmail.
3) Mailfilter.
4) Virus-imap.
6) POP文件.邮件下载
Fetchmail.
Lotus Domino
Lotus Domino. [版权]
单碟服务器/路由器
举不胜举:).
1) muLinux.
2) Dachstein
(防火墙/ dhcp).
3) Serverdisk (http / ftp).
4) Fli4l.代理服务器
MS代理服务器, WinGate
3)Privoxy.
4) Wwwoffle.
5) OOPS.工作在Apache下支持Java Servlets 和JSP服务器
高级服务器数据统计
1) AWStats
1) AWStats. (所有网络, ftp-,
代理,邮件, wap- 和流-服务器s).
2) ANALOG. (网络服务器).服务器集群
1) LVS - Linux虚拟服务器
文件系统集群
2) ADIC1) GFS.
2) OpenGFS.
3) Lustre. (不兼容SAN?)
4) Matrix Server. [版权]
7) Oracle Cluster 文件 System (OCFS).
9) Intermezzo.
10) Convolo cluster.
11) ADIC.网络邮件
2) CAMAS. (Caudium网络服务器).9) 科学和专用程序.
Linux下科学程序- 许多程序,包括有版权的.
Math system in
MathCad style
Matlab风格的数学系统
1) Matlab. [FTP]
2) Octave. (
3) Scilab.
5) Yorick.
8) Euler.Mathematica风格的数学系统
Mathematica
1) Mathematica. [版权]
2) Maxima.
4) NumExp.
5) Mathomatic.Maple风格的数学系统
1) Maple. [版权]
2) Maxima.
3) MuPad.等式/数学编辑器
Mathtype, MS等式编辑器, OpenOffice Math
1) OpenOffice Math.
2) MathMLed.
3) Kformula (Koffice).
5) Texmacs.三维建模
SolidWorks, 等
ProEngineer Linux. [版权]
CATIA. 原设计于Unix下, 自版本4(2000年)移植到视窗下(不很成功).
SolidEdge (Unigraphics的一个子集).
CAD/CAM/CAE
AutoCAD, Microstation, ArchiCAD
1) Varkon.
2) Linuxcad. [版权, ~100$]
3) Varicad. [版权]
4) Cycas. [版权]
5) Tomcad.
6) Thancad.
7) Fandango (测试版).
8) Lignumcad.
11) QSCad.
12) FreeEngineer.
13) Ocadis.
14) PythonCAD.
15) OpenCascade.CAD/CAM/CAE,简化版
AutoCAD Lite
桌面出版系统
Adobe PageMaker, QuarkXPress
Framemaker. [版权,已取消]
小型桌面出版系统
MS Publisher
1) Scribus - Linux桌面出版系统.
2) KWord.图表设计
Microsoft Visio
1) Kivio (Koffice).
3) KChart.
7) Poseidon for UML. [版权 &免费版]
JGraphPad. (Java)地理图像处理软件
Erdas Imagine, ER Mapper, ENVI
GIS (地理信息系统)
所有项目:FreeGIS 项目
2) Quantum GIS.
3) PostGIS.
4) FreeGIS.
5) MapQuest.
6) MapBlast.互动地理数据查看
1) Thuban.
1) Thuban.
向量化点阵图
MapEdit, Easy Trace
1) Autotrace.
软件CNC,机械控制软件工具
OpenCNC [版权]
TeX风格的高级文本处理
MikTex, emTeX (DOS)
2)TeTeX / LaTeX
3) LyX (所见所得).
4) Kile.方便,耐用的TeX-文件/ dvi-文件编辑器.
1) Kile (KDE集成LaTeX环境).
2) Ktexmaker2.
3) Tk LaTeX 编辑器.数理统计语言和环境
SPSS, Statistica, SalStat
更多链接 - here.1) PSPP.2) OpenStat2.3) &Linux用户概率统计工具&4) SalStat.
Eviews, Gretl
1) Electronic Workbench
2) Altera MaxPlus 1) Geda.
2) Oregano.
3) Xcircuit.
4) Gnome Assisted Electronics.
6) SPICE OPUS.
7) NG-SPICE.化学结构图形
Chemdraw, Isisdraw
Xdrawchem.
Olympus 采访机下载播放器
Olympus DSS播放器
3) Visio1) Eagle.
2) Geda.示波器模拟
Winoscillo
主板温度,电压监控
MBMonitor, PCAlert, Speedfan
1) KSensors.2) KHealthCare (KDE).3) Gkrellm
S.M.A.R.T-硬盘特征温度检测
跟随CD主板发布, Active
1) smartctl.
2) Hddtemp-0.3.
3) IDEload-0.2.
4) Smartsuite-2.1.
5) Smartmontools.
6) Ide-smart.
7) Smartsuite.内存测试
SiSoft SANDRA
Memtest86.
温度,封山转速测试
SiSoft SANDRA, SiSoft SAMANTHA
1) Ksensors.
2) Lm_sensors.
3) xsensors.
4) wmsensormon and other applets for
AfterStep / WindowMaker / FluxBox.HDD测试/评估
SiSoft SANDRA, SiSoft SAMANTHA, IOzone
1) hdparm.2)
.3) IOzone.4) Dbench.5) Bonnie.6) IO Bench.7) Nhfsstone.8) SPEC SFS. [版权]
视频测试/评估
Final Reality
1) X11perf.
2) Viewperf.实时控制
Sybera Hardware Access
DIAPM RTAI - Realtime Application Interface.
网络模拟器
神经网罗模拟器
2) Stuttgart Neural Network 模拟器 (SNNS).LCD传感器
1) Sensors-lcd.
电子线路查看
1) ecg2png.
转换X86到全能类PLC控制器
1) MatPLC.
软件翻译器
Linux翻译器
1) Trados Translators Workbench2) Deja Vu3) Star Transit4) SDLX5) OmegaT
1) OmegaT.
1) SchoolForge.
2) Seul / EDU.DTD设计查看
NearFar Designer [版权]
有限元分析
1) FELT (有限元分析)
10)模拟器.
虚拟机模拟器
1) VMWare [版权]
2) Connectix Virtual PC [版权]1) VMWare. [版权]
2) Win4Lin. [版权, $89].
4) Plex86.
5) Linux用户模式Linux模拟器
1) CygWin.2) MKS Toolkit.3) Bash for Windows.3) Minimalist GNU For Windows.
1) Linux用户模式
X Window System (XFree) 模拟器
XFree under CygWin.
视窗模拟器
1) Wine. (图形界面: gwine, tkwine)
2) Transgaming WineX. (图形界面: tqgui) [非自由软件]
3) Crossover Office.DOS 模拟器
1) DOSBox.
2) Dosemu.Sony PlayStation模拟器
1) ePSXe.2) Pcsx.
ZX Spectrum 模拟器
X128, Speccyal, SpecX, SpecEmu, UnrealSpeccy, 等
2) Glukalka.
4) ZXSP-X.
6) SpectEmu.Arcade机模拟器
2) Xmame / Xmess.
3) Advancemame.
advancemenu.
ckmame. flynn.
gmame. gnomame.
grok. grustibus.
gxmame.kmamerun.
kmamu. qmamecat.
startxmame.
setcleaner.
tkmame.ST 模拟器
2) Steem.C64 模拟器
2) Frodo.Amiga 模拟器
2) WinUAE.Mac 68k 模拟器
1) Basilisk II.
GameBoy 模拟器
1) Visual Boy Advance
1) Visual Boy Advance.
2) VGBA.(图形界面: vgb-gui)Atari 2600计算机视频模拟器
1) Stella.
2) Saint.NES / SNES 模拟器
2) Snes9x.
2) Snes9x.
4) GTuxNes.M680x0 Arcade 模拟器
1) Rainemu.
1) Rainemu.
多/其他模拟器
1) M.E.S.S.
2) Zinc.11) 其他/搞笑 :)
空间模拟器
1) Openuniverse.
2) Celestia.
3) Zetadeck.1) Openuniverse.
2) Celestia.
3) Kstars.
4) Zetadeck.TV驱动
无安装运行(LiveCD)
1) Windows PE.
2) PE Builder.1) Knoppix.
2) Cool Linux.
4) DemoLinux.
5) DyneBolic.
6) Gentoo (live CD).
8) Virtual Linux.
9) Bootable Business Card (LNX-BBC).
10) ByzantineOS.
11) FreeLoader Linux.
12) MoviX.
13) Freeduc CD.
14) SuSE live-eval CD.
15) Freedom Linux.
16) Eagle Linux.
17) Kurumin
(仅巴西,葡萄牙)启动拯救工具盘
视窗系统盘
1) Linux系统盘
2) Tomsrtbt.
3) BanShee Linux.
4) RIP.创建系统恢复LiveCD
1) Make CD-ROM Recovery.
FAT16, FAT32, NTFS, FS长脚
Ext2, Ext3, ReiserFS, XFS, 等
本地文件系统加载
ext2fs(驱动), explore2fs
(程序) - 视窗下ext2/3
Linux-NTFS. (加载NTFS分区驱动程序)
安装、卸载
InstallShield, WISE, GhostInstaller, Microsoft Installer - the analog of rpm
1) Rpm.2) Urpmi.3) GnoRpm.4) Nautilus
RPM.5) Apt-get & 前端 (synaptic, aptitude,
等).6) Apt-rpm. (RedHat, SuSE,
ALT Linux,等)7) yum (Yellowdog Updater
Modified)8) yum enhanced by ASPLinux.9) Gentoo Portage
从源代码安装、卸载
Minimalist GNU For Windows
1) make install, make uninstall
2) CheckInstall.
3) Sinstall.
4) Emerge (Gentoo).
5) Apt-get & 前端(synaptic, aptitude,
等).系统升级
1) Ximian Red Carpet.
2) Red Hat Network.
3) MandrakeOnline.
4) SuSE YaST Online Update.
5) Caldera Volution Online.
7) Gentoo ebuilds
(portage).
8) Debian GNU/Linux package search.
9) Yum.认证
MCSD, MCT, MCSE
1) Red Hat Certification.
2) Sair Linux and GNU Certification.
3) Linux Professional Institute Certification (LPIC).
4) Linux .
5) Prometric.
6) VUE.桌面图标
1) 桌面文件管理器
2) Idesk.屏保
2) xlockmore.
3) xscreensaver.
4) kscreensaver.保存已删除文件地点
1) 垃圾箱.
2) Libtrash.硬盘检验
fsck -check or reiserfsck -check.
对日志文件系统则没必要(reiserfs, ext3, jfs, xfs).碎片整理
系统图形界面
Windows Explorer
Kde, Gnome, IceWM, Windowmaker, Blackbox, Fluxbox, 等
视窗XP图形界面
Windows XP
快速用户,屏幕切换
Windows XP feature for non- networked computers
1) Ctrl Alt F1, 在命令行界面登入, 输入startx 开始图形界面- - :1. 根据不同用户用Ctrl Alt F7或F8屏幕间切换。
2) 命令&gdmflexiserver -n&.
3.1内建各个系统
9x, NT, XP
RedHat, Mandrake,
Knoppix, Debian, SuSE, ALT, ASP, Gentoo, Slackware,
Linux From Scratch, 等
开源! &开始你被忽略,又被嘲笑, 再又反击,最后你会赢&.
源代码可见
Of course :)
命令行脚本
3) Windows Scripting Host
4)4DOS / 4NT
5) Minimalist GNU For Windows
6)Unix tools for Windows (AT&T)
7) KiXtart
8) ScriptLogic [版权]1) Bash.
5) Tcsh.费用
Linux-免费操作系统
Wincih, klez,等
后门,暗箭
你自己决定
Easter eggs, 未建挡事务
视窗开发员标识, Doom in Excel 95, 3D-racing in Excel 2000, etc, etc等
1) Linux Journal.
2) Linux Gazette.
3) Linux magazine.
Linux pratico (Italy).
5) Australian Linux.-
Blue Screen Of Death (BSOD)
1) Kernel panic.
2) Screensaver &bsod& :).谁为系统错误负责
M$, Bill Gates个人
1) 发行版开发员.
2) 所有Linux开发者合Linus Torvalds本人:).
3) 你自己:)).-
GNU.org, FSF.org
Bill Gates, &Road ahead&
Linus Torvalds, &闹着玩儿& :).
Bill Gates, &Business @ the speed of thought&
Richard M. Stallman, &The right to read&.
书&Free Software, Free Society:
Selected Essays of Richard M. Stallman&本网页采用GNU FDL许可证
Fiodor Sorex- 项目主管,协调支持(自2005年一月),
更新列表, HTML,编码, 网管,设计.
Valery V. Kachurov- 项目主管,协调支持(到2003年七月),
更新列表, HTML.Nesov Artem- 创意并完成第一版
纠正添加.Timofey Korolev- 托管.苗华樑- 中文编辑,翻译.网页浏览者- 有许多关于添加内容,纠正或仅是一些期望的来信,在此深表感谢 :). 多谢那些支持本项目的人员!!! (带等级的里表正在施工中).
[责任编辑:linzhao]
(请登录发言,并遵守)

我要回帖

更多关于 open gl es 的文章

 

随机推荐