Skip to main content

标  题: 基本上不用windows了, 晒下常用软件

发信人: boubalos (boubalos), 信区: Ubuntu
标  题: 基本上不用windows了, 晒下常用软件
发信站: 水木社区 (Wed Mar 30 00:48:15 2011), 站内

latex:  kile
office: 永中office, 用来看word2003/2007, powerpoint, 但MythType公式不能正常显

文本文档比较差异:  Meld (替代ultraedit compare)
辞典:   StarDict
图像处理: Gimp
矢量图:  Inkscape
流程图:  Dia
pdf:     evince, Adobe reader 9
QQ:     QQ for linux
飞信:    OpenFetion  完美支持,防机器人登录的文字识别窗口都弹
MSN:     Pidgin
邮箱: thunderbird[+lightning, +MinimizeToTray PLus 插件]
听音乐: Songbird(界面似itune,但自动找歌词的功能尚不好用)
看电视   : ppstream (赞阿)
虚拟光驱: gCDEmu(支持.cue; 打命令我会:) 但这更方便)
单位换算:ConvertAll
思维导图: FreeMind
运行DOS/命令行程序: DOSBox Emulator (比wine轻量)
基本编程: emacs23
C++ IDE: Codeblock, 个人感觉非常够用
数值工具: Matlab

画数据图: Qtiplot (Origin完美替代品)
从Paper的Figure中提取坐标 engauge-digitizer

CAD:     Pro/E 3.0
CFD 网格: Pointwise, Ansys-ICEM
CFD 求解: Fluent, Ansys-CFX
CFD 后处理: tecplot, Paraview

文献管理: bibus


--

※ 修改:·boubalos 于 Jun 23 09:46:50 2011 修改本文·[FROM: 166.111.57.*]
※ 来源:·水木社区 http://newsmth.net·[FROM: 59.66.210.*]

发信人: kuo (路人甲), 信区: Ubuntu
标  题: Linux下推荐应用程序列表
发信站: 水木社区 (Fri May 20 18:00:20 2011), 站内

这些软件有些比较老了,而且有些我用着非常不好。。。。
我说说我常用的软件吧,大家也都说一说,到时候我整成一个列表


桌面环境:ubuntu-desktop kubuntu-desktop lubuntu-desktop(确实快,而且界面还不错
,可能是我电脑有点老吧,不过2.73Ghz的cpu,2g的内存玩ubuntu有时候还是吃力)
Term: qterm
影音: vLC、smplayer、audacity(音频编辑,录音)、audacious(很好的播放列表管理
,很多选项,而且%f之后就没有乱码了)、rhythmbox(用来听豆瓣电台的)
词典:golderdict
聊天:pidgin(libqq 2010,openfeion的插件),skype(唯一一个真正跨平台,功能俱全
的软件)
虚拟机:virtualbox(现在好像都开源了) wine(魔兽争霸,office2007,有些软件需要拷
贝xp的一些dll过来) dosbox(新版的dosbox不卡了)
科学计算:qtoctave
虚拟光驱:acetoneiso(我目前用到最好的虚拟光驱)
邮件管理:thunderbird
输入法:fcitx

还有一些非开源的,比如adobe reader,这个只有8版才完美支持中文。。。。

Comments

Popular posts from this blog

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...