Skip to main content

Office and Productivity

Windows apps    Linux apps    Description  
Windows Update, Add/Remove programs

apt-get, Aptitude, portage, rpm, urpmi, yast, yum, Synaptic

Every Linux distribution has an infrastructure to manage installed software which is quite different from Windows. For instance, all updates are handled by a single program. See package management.
Google Desktop

Beagle, Recoll, Google Desktop

Desktop Search

Alcohol 120%, Discjuggler, Easy CD Creator, Nero Burning ROM

K3b,
XCDRoast, more

CD burning
7-Zip, Winzip, Winrar

Karchiver,

File Roller,
ark,
hjsplit; command line tools

Archivers
Notepad, Wordpad, TheGun, EditPlus, SciTE

KWrite,
Kate, BlueFish, Gedit, Joe

Text Editors
WinMerge, SyncToy

Meld, Unison, Synkron, rSync


File synchronization
Daemon Tools

mount, GMount-ISO

ISO mounting
Norton Ghost

Partition Image, g4u, Mondo, dd

Disk imaging
Norton Partition Magic

QTparted, GParted

Disk partitioning
ActiveSync

SynCE

Synchronization with Windows Mobile devices
Veritas Backup Exec, Cobian Backup

UniSon, Veritas Netbackup, more

Backup

Outlook, Thunderbird + Lightning, Sunbird
Evolution, Kontact, BALSA, Thunderbird + Lightning, Sunbird

Personal information managers
chkdsk fsck check your file system (and the hard disk beneath it) for errors
Quicken, Microsoft Money, TurboTax

GnuCash, KMyMoney, jGnash, MoneyDance, Grisbi, PLCash, CrossOver Office with Quicken, lazy8ledger

Accounting
Disclib gWhere
Disk cataloging programs
Microsoft Project Manager
Imendio Planner, Kplato, MOOS Project Viewer, MrProject, RationalPlan

Project management
Access, dBase, Foxpro, Paradox
Kexi, OOBase
Database
WinEdt, TeXnicCenter
Kile, Texmaker, LyX

LaTeX IDEs
Visio
Kivio, Dia
Diagramming
Excel, Lotus123, QuattroPro
OOCalc, Gnumeric, KSpread

Spreadsheet
PowerPoint
OOImpress, KPresenter
Presentation
Word
OOWriter, AbiWord, KWord, LaTeX

Word Processing
Microsoft Office, OpenOffice.org
OpenOffice, KOffice, Siag Office
Office package
Filemon, Regmon

syscalltrack
system call tracking (file monitor & others)
WinRunner xautomation automating interactive applications
Disk Size Explorer

File Light, Konqueror
Disk usage analyzers

Comments

Popular posts from this blog

Real time Sinhala Unicode converter

Following Sinhala unicode translater is a very useful tool for all the Sinhala web users who needs a quick sinhala unicode typing. The main advantage of this tool is that user can type the sinhala characters using English (commonly known as Singlish) Use the following link to access the online unicode converter. http://www.ucsc.cmb.ac.lk/ltrl/services/feconverter/t1.html

Drupal : How to write the theme's region variables to the page.

If you're assigning your region to page.tpl.php, you don't need to worry about creating a variable for your region and assigning content to it; PHPTemplate handles this automatically. All you need to do is write the variables to the page, by editing your theme's page.tpl.php file. For each new region you've defined, include in page.tpl.php a print call. For the 'floater' region defined above, this would look like: . Of course, you'll probably want to use HTML, CSS, and possibly PHP (e.g., if tests) to get your new regions looking how you want them.

Replace a String in Multiple Files in Linux Using Grep and Sed

Command grep -rl matchstring somedir/ | xargs sed -i 's/string1/string2/g' Note: The forward slash '/' delimiter in the sed argument could also be a different delimiter (such as the pipe '|' character). The pipe delimiter might be useful when searching through a lot of html files if you didn't want to escape the forward slash, for instance. matchstring is the string you want to match, e.g., "football" string1 would ideally be the same string as matchstring, as the matchstring in the grep command will pipe only files with matchstring in them to sed. string2 is the string that replace string1. Example grep -rl '5.00.00.40' ./ | xargs sed -i 's/5.00.00.40\/vc/5.79.17.43\/BB/g' Extracted from : http://vasir.net/blog/ubuntu/replace_string_in_multiple_files/