在Linux上的IDE 开发环境 列表
Integrated Development Environments / RAD tools / GUI-builders on Linux:
General/Editors:
Amy (HTML, C, C++, Java, SQL, LaTeX, Makefiles and many more languages)
blIDE (incomplete; no downloads as of yet)
IBM's Eclipse (an extensible IDE kit; Java, C/C++, plus other languages via plug-ins that are becoming increasingly available, such as Perl via the EPIC plug-in)
Code Crusader (supports just about everything) with the Code Medic debugger
Glimmer
InfoDock
SGI's Jessie (doesn't seem to exist any more)
Emediat Solutions's RadBuilder
RHIDE
CYGNUS's Source Navigator with the Insight debugger
SciTE
Titano
WideStudio
wxStudio
Ada:
GNAT Programming System (GPS)
TIA (for GNAT Ada 95)
BASIC:
TrueBASIC (Linux version to be released soon)
C/C++:
Amy
Anjuta
ICS's BX Pro (for Motif/C++)
Code Forge's C-Forge
Code Blue
Metrowerks's Code Warrior
Bloodshed Software's Dev-C++ (for C/C++)
DiaSCE
IBM's Eclipse (an extensible IDE kit; Java, C/C++ in late beta, other plug-ins pending)
gIDE
Glade
GNAT Programming System (GPS)
CYGNUS's GNUPro
FLTK & Fluid (for C++)
IDEntify
KDbg
KDevelop
KDE Studio
Suite 3220 Software's Moonshine and Moonshine Professional
OpenAmulet
RHIDE
QtEZ (for C++ w/Qt)
Scintilla (for GTK+/C++)
Wind River Systems / TakeFive Software's SNiFF+ and SNiFF Penguin
CYGNUS's Source Navigator
with the Insight debugger
TogetherSoft's Together
VisKProg
MicroEdge's Visual SlickEdit
Q Software Solutions's Wedit
VDKBuilder
VIDE (for C++ and Java)
WideStudio
wxBuilder
wxDesigner
wxStudio (for C++ and Python)
Xwpe-alpha
Objective-C:
GNUStep's ProjectCenter
ECMAScript (formerly "Javascript"):
TrollTech AS's Qt Scripter (for the Qt Script extension of ECMAScript)
Nombas, Inc.'s ScriptEase (for ECMAScript)
Eiffel:
Interactive Software Engineering's EiffelBench
HTML:
Java:
Amy
AnyJ (for Java)
VioSoft Arriba
BlueJ
Chicory
Omnicore Softwar
相关文档:
Unix基础
登录和退出
登陆:可以用Neterm、SecureCRT等终端登陆工具〔192.168.25.12 常用软件下有〕或者
telnet、ftp命令。
1. telnet 远程终端访问
命令格式:telnet [hostname|IP address]
退出:ctrl+d or logout or exit
2. ftp 远程文件传输
......
Linux Grep命令使用的详细介绍
1. grep简介
grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行
打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的
grep家族包括grep、 egrep和fgrep。egrep和fgrep的命令只跟grep有很小不 ......
一、svn客户端安装及环境配置.
果所在的linux机器上没有安装svn客户端,则首先安装svn客户端:
1. subversion-1.4.3.tar.bz2 subversion-deps-1.4.3.tar.bz2
2. 使用
tar xvfj subversion-1.4.3.tar.bz2
t ......
Linux下启动oracle10g的em和isqlplus的方法:
注:$ORACLE_HOME为oracle的安装路径
1,使用EM(enterprise managment)
1.1启动EM
$ORACLE_HOME/bin/emctl start dbconsole
如果出现下面相关信息,说明服务启动
Z set to PRC
Oracle Enterprise Manager 10g Database Control Release 10.1.0.3.0
Copyright (c) 1996, 200 ......
备份MBR分区
0. 备份硬盘的分区信息:
#fdisk /dev/sda -l > /tem/sda.txt
1.使用fdisk -l 确定MBR位置
2.备份MBR
dd if=/dev/sda1 of=/root/mbr bs=512 count=1
3.恢复MBR
dd if=/root/mbr of=/dev/sda1 bs=512 count=1
......