Looking at alternative computer software solutions for a variety of reasons. This includes price, computer security, virus prevention and reliability. Here are my notes and great that if it helps you, otherwise please understand what you are doing and not follow blindly. All works expressed are my own and does not necessarily express the products or organisations mentioned here.
Saturday, October 30, 2010
MyGOSSCON 2010
Monday, October 25, 2010
Setting up Flex on Eclipse for Linux
By the time I wrote this rticle, Adobe placed a notice that they will no longer continue with the Flex Builder development. This means that you can only use command lines to work on Flex. I guess this will affect FB4LINUX.
I refer to a number of sites before starting the installation and found one worth mentioning here. Matthew wrote with clarity and did cover what most other instructions provided and maybe a bit more.
Pre-installation checks: Have you installed Eclipse 3.5+ and Java Development Kit 1.5+
Step 1. Download the fb4linux files in 4 parts from http://code.google.com/p/fb4linux/downloads/list
- FB4Linuxaa
- FB4Linuxab
- FB4Linuxac
- FB4Linuxad
cat FB4Linux* >FB4Linux.tar.bz2
bunzip2 FB4Linux.tar.bz2
tar -xvf FB4Linux.tar
I renamed the folder to Adobe_Flash_Builder4 since I did not want spaces between the folder name.
Step 2. Download the eclipse plugin for FB4Linux from http://www.brighthub.com/hubfolio/matthew-casperson/media/p/78806.aspx
Unzip the file ecplise and copy the plugins to /usr/lib/eclipse/plugins
The plugins are;
com.adobe.coldfusion.rds.client_1.0.266425.jar
javax.wsdl_1.6.2.v200806030405.jar
org.apache.commons.lang_2.3.0.v200803061910.jar
org.apache.xerces_2.8.0.v200803070308.jar
org.apache.xml.resolver_1.1.0.v200806030311.jar
Step 3. Start Eclipse and apply the plugins.
In Eclipse select Window->Preferences->General->Capabilities and make sure that the Classic Update option is checked.
Click Help->Software Updates->New Feature to Install.
Click the New Local Site button, and type in the location where you extracted FB4Linux in step 1 (you will need to specify the eclipse subdirectory to be specific).
With the Adobe Flash Builder 4 site selected, click the Finish button. You will be asked which features to install. Tick the Adobe Flash Builder 4 feature and click Next.
Accept the terms and click the Next button and click Finish button.
Restart Eclipse.
Step 4: Install the Flex SDK from http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4
Download and extract a copy of the Flex SDK from Adobe into a folder flex4.1.0
Set Eclipse to use the Flex SDK by right clicking on your Flash project and selecting Properties. Select the ActionScript Compiler option.
Click the Add button to add the location of the Flex SDK you have extracted.
Click on the Run toolbar menu item and select the External Tools Configuration option.
Right click on the Program option and select the New option. Then fill out the Location and Arguments settings to point to your Flash standalone player and SWF file respectively.
Done...next to look for more flash tutorials.
Tuesday, October 5, 2010
Installing Libre Office 3.3
Open source licensing is now showing how main stream OSS products can be shifted if those in control is not respected. The OpenOffice.org (I hope this name wont be part of power tussle) is now looking at a branch off called Libre Office. Though its in Beta but I expect lots of the bugs I am facing with the present OpenOffice.org provided by the long term support version of Ubuntu 10.04 to be fixed.
Most notable is the page numbering of the slide handout in Impress. Impress is still showing page 1 in the footer for all pages in OpenOffice.org 3.2.1.
Currently all testing packages of the first Libre Offfice can be found at http://download.documentfoundation.org/libreoffice/testing/
From what I have read, looks like this will override the OOo in Windows but should co-exist with OOo in Linux. I will update this page with progress I make in installing the Libre Office(beta) 3.3. The Java Runtime Environment (JRE) 6 (size of upto 92Mb) needs to be installed before installing the Libre Office. This can be done with synaptic or at the command prompt type
sudo apt-get install openjdk-6-jre sun-java6-fonts icedtea6-plugin
Step 1: open a terminal prompt. Download the Libre Office (LO) which is about 150Mb with either of these commands;
wget http://download.documentfoundation.org/libreoffice/testing/LO_3.3.0-beta1_Linux_x86_install-deb_en-US.tar.gz
OR
wget http://ftp.yz.yamagata-u.ac.jp/pub/tdf/libreoffice/testing/LO_3.3.0-beta1_Linux_x86_install-deb_en-US.tar.gz
Step 2: Extract the tar.gz
Step 3: Switch to the folder en-US then install the DEB packages
cd en-US
sudo dpkg -i DEBS/*.deb
sudo dpkg -i DEBS/desktop-integration/*.deb
Internet crawling so slow. Will Unifi change things?
Wednesday, September 29, 2010
[Kubuntu] Updating OpenOffice.org 3.2.1
- When I create a macro to delete selected cells, it does not work. (Solved on 3.2.1)
- Impress printout of handouts, I do not get the page foot numbers. All pages display as number 1.
Backup all of the extensions you have for OpenOffice.org 3.2.0, if you intend to use it in the future. Now, the steps to upgrade to OOo 3.2.1
Method 1:
- Download OOo 3.2.1 from
ftp://mirror.upm.edu.my/openoffice/stable/3.2.1/OOo_3.2.1_Linux_x86_install-deb_en-US.tar.gz - Open a terminal line and extract the tar.gz file
tar -xzvf OOo_3.2.1_Linux_x86_install-deb_en-US.tar.gz - Remove existing OOo 3.2.0
sudo apt-get remove openoffice*.* - Enter the extracted directory and install the .deb files
cd OOO320_m18_native_packed-1_en-US.9502/DEBS
sudo dpkg -i *.deb
sudo dpkg -i desktop-integration/
- In the software sources, enable the "software Sources"
- Update packages and install OpenOffice.org-3.2.1
Tuesday, September 28, 2010
Reset user desktop for CentOS
One way to avoid this is to disable the auto update. Since it is a lab environment, I can easily delete and replace user1 account to remove previous configurations in OOo for user1.
Step 1. Create the 2 simple scripts to disable the auto update and reset the desktop for user1.
goreset.sh
#/bin/bash
echo "Resetting pc:"
chkconfig yum-updatesd off
tmpwatch 0 /tmp
echo "Creating user user1"
userdel -r user1
useradd -m user1
passwd oscc
echo "User created, going to reboot"
reboot
startscript.sh
#!/bin/bash
LOGFILE="./coombreset.log"
echo "Enter server name:"
read SERVER
if [ -e $SERVER ]
then
exit
fi
scp prepare-cooomb-test.sh root@"$SERVER":~
ssh root@"$SERVER" ./goreset.sh
echo $SERVER >> $LOGFILE
Step 2. execute (run) the script named startscript.sh
-end-
Wednesday, September 15, 2010
Install Windows on Linux
Step 1: Open a terminal. Or through the Kpackagekit, install packages below.
Step 2: Install packages by the command below;
sudo apt-get install libmpg123-0 libwbclient0 samba-common smbclient ttf-symbol-replacement winbind wine wine1.2 wine1.2-gecko pptview
MS PPTX and DOCX files can be viewed with OpenOffice.org 3, or the viewers from MS Office (I am yet to try these 2).
Friday, September 10, 2010
Disable Nautilus on KDE automount
The most likely cause is that Gnome's GVFS is running and opens the disk automatically. Doing a "ps aux" you will find the following processes running;
/usr/lib/gvfs/gvfsd-trash --spawner :1.39 /org/gtk/gvfs/exec_spaw/0 /usr/lib/gvfs/gvfs-gdu-volume-monitor /usr/lib/gvfs/gvfsd-burn --spawner :1.39 /org/gtk/gvfs/exec_spaw/1 /usr/lib/gvfs/gvfs-afc-volume-monitor /usr/lib/gvfs/gvfs-gphoto2-volume-monitor /usr/lib/gvfs/gvfsd-metadata /usr/lib/gvfs/gvfsd
What is GVFS?
GVFS replaces Gnome's virtual file system (VFS). Programmes built with the library GIO or Gnome I/O will be invoke automatically and managed by the gvfsd service.
The gvfs-fuse module is used only when the application is not built with the GIO library. With GVFS, Nautilus takes over the automount/autorun responsibilities from gnome-volume-manager. A good read on GVFS is in this 2006 article.
Stopping processes
If I stop (kill) the gvfsd and gvfs-gdu-volume-monitor, Nautilus does not get open anymore. But instead of killing this process, I will approach this by assuming that gvfs reads from Gnome Desktop Manager configuration files.
Step 1:
Open a terminal (e.g. konsole) and type
gconf-editor
Step 2:
In the left window of Gconf-editor, choose /apps/nautilus/preferences and remove check mark for
1) media_automount
2) media_automount_open
Step 3:
Close the Gconf-editor and log out. After you log back in, no more Nautilus.
Tuesday, August 31, 2010
Installing ubuntu 10.04 and KDE
Using reference from my previous blog on Installing Kubuntu 9.10. Launch from KMenu the Synaptics or Kpackagekit to install additional applications and libraries. Below is a checklist of items to install.
note: to install via the terminal (CLI), e.g.
sudo apt-get install wvdial
A. Adding KDE desktop manager to Ubuntu
- kdebase-workspace
- kde-window-manager
B. For the web experience to surf and email
- openjdk-6-jre (using hotspot)
- thunderbird & enigmail
- icedtea6-plugin
- adobe-flashplugin
- See item D.
- gdecrypt
- password-gorilla
- ssh sshfs ksshaskpass
- khelpcenter4
- wvdial
- nmap
- wireshark
- ksnapshot
D. Multimedia, Fonts and codecs
- ttf-mscorefonts-installer & cabextract
- kubuntu-restricted-extras
- vlc videolan-doc mozilla-plugin-vlc vlc-plugin-sdl (include libvcdinfo0)
- k3b libk3b6-extracodecs
- gstreamer0.10-ffmpeg gstreamer0.10-plugins-bad
- gimp-help-en & gimp-data-extras
- kdenlive
- recorditnow
- tpb
- tp-smapi-dkms
- openoffice.org-ogltrans
- openoffice.org-report-builder
- openoffice.org-presentation-minimizer
- mozilla-openoffice.org
- openoffice.org-mysql-connector & mysql-server
- myspell-en-gb
- openoffice.org-kde
- libmysql-java
- mdbtools
G. Software development, Eclipse and Android (refer to previous post)
G.1. Apache, PHP & mysql (see previous post)
- apache2 & php5 & php-pear (after done check that modules are enabled, run command a2enmod php5 )
- mysql-server
- php5-mysql libapache2-mod-php5 libapache2-mod-auth-mysql
Not everything can be done via the synaptics. Others that require downloading from the internet manually;
- truecrypt-6.3a & libstdc++5_3.3.6-17ubuntu1_i386.deb
- Extract PCL_ZTEDCV.tar.gz and install (ZTE usb modem) & libqt3-mt_3.3.8-b-0ubuntu3_i386.deb
- Download AdobeReader (to view PDF files) from http://get.adobe.com/reader
Monday, August 30, 2010
Plasma widget error - "could not create a python scriptengine"
"could not create a python scriptengine"
When installing Solar System widget to desktop, that error appears. Solution is to install plasma-scriptengine-python, e.g. at the terminal (CLI) type;
"could not create a webkit scriptengine for the scripted image widget"
When installing Scripted Image widget to desktop, above error appears. Solution, install plasma-scriptengine-webkit. E.g. at CLI type;
-the end-
Sunday, August 15, 2010
Android development on Eclipse
Install Eclipse and the java base (about 256Mb)
Install Java
Ubuntu 10.04 provides Java6 in the form of OpenJDK (openjdk-6-jdk). This is great for developers, but for those who wants to install Sun (Oracle) version of Java6, I will also provide the steps here
A) Install OpenJDK (check if its already installed before doing this!)
Step 1: open a terminal and type the following;
update-alternatives --query java
If you already have OpenJDK, then you do not need to install it anymore. If you do not have any Java JDK listed, then continue to step 2.
Step 2:
sudo apt-get install openjdk-6-jdk openjdk-6-jdk icedtea6-plugin
B) Install Sun (Oracle) Java JDK.
Step 1: Add the repository for Sun Java. Open a terminal and type the following;
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner"
sudo apt-get update
Step 2: Install the JDK along with the plugin
sudo apt-get install sun-java6-jdk sun-java6-plugin
Step 3: Make it your default
Sun Java is now installed, but you need to make it the default java to use:
sudo update-alternatives --config java
Install Eclipse
Open a terminal and type;
sudo apt-get install eclipse eclipse-pde eclipse-jdt eclipse-plugin-cvs
Install Android plugin for Eclipse
Refer for details at Android.com
Download and add the Eclipse plugin for Android by (update 15 Feb 2010)
wget http://dl.google.com/android/android-sdk_r09-linux_x86.tgz
wget http://dl.google.com/android/ADT_9.0.0.zip
previous post was;
$ wget http://dl.google.com/android/ADT-0.9.7.zip
The tgz is for the android SDK.
Friday, August 6, 2010
Sunday, July 25, 2010
Applications that need the .Net framework on Linux
1. Installed via the terminal
sudo apt-get install moonlight-plugin-mozilla
Still cant work...maybe its Mono 1.0?
2. Installed the Mono 2.0 via URL http://go-mono.com/moonlight/download.aspx
Still cant work!
3. Installed the prerelease Mono version 3 via the URL http://go-mono.com/moonlight/prerelease.aspx
The size was 13.2Mb
Still cant work! Firefox keep closing (crash) each time I click on that page.
I am sending rwgenting a feedback.
Those websites who choose to use the .Net framework keeps most Linux users away from their services. Unless there are plans to get these fixed. If anyone have gone to rwgenting to do booking of shows on a Linux machine and it works, do let me know how it can be done.
Wednesday, June 30, 2010
Android on Sony Ericsson
opinion when I do the following;
1. Using the standard virtual keyboard.
2. Switching between application.
3. Using Timescape to read messages and mediascape for multimedia.
Among the 10 main apps I Installed and will keep;
1. Dolphin web browser.
2. MP3 download.
3. Ringtone Editor.
4. Task manager.
5. PasswdSafe.
6. Astro File Manager +smb module.
7. Connect Bot.
8. Android vnc viewer.
9. EASYNOTE.
10. Mytask.
But i still cant open OOo documents. PDF AND MS WORD WORKED!
Next, android will be on tablet PCs like the Cisco Cius.
The Android can be built with ecipse and the java development kit. See
http://www.alittlemadness.com/2010/06/07/understanding-the-android-build-process
Monday, May 24, 2010
Convert AVHCD to AVI and burn as VCD
Next, AVIs are great for the PC, however, to distribute to people who do not use PCs to watch movies or just to have a larger screen, it is better to convert the AVI into a VCD.
Step 1: Copy the files from the AVHCD camera
CAMERA: /media/disk-1/PRIVATE/AVCHD/BDMV/STREAM
PC: ~/Documents
Step 2: Convert to AVI.
Future action can consider direct preparation for MPG. Here it is in AVI because there was a need for me to prepare in various format apart from MPG or VCD.
Start KDENLive
- File -> Save As ->
- Project -> Add clip
- In the Project Tree window, drag the clips into the ti
- Click Render button ->AVI DV
Step 3: Get the converter programme called vcdimager
$ sudo apt-get install vcdimager
ffmpeg -i inputfile.avi -target pal-vcd outfilename.mpg
# create the cue and bin files. The label did not allow for spaces.
vcdimager -t vcd2 -l"Martha-Swimming-May-2010" -c vcd2.cue -b vcd2.bin outfilename.mpg
Step 5: Using K3B, choose project for Burn Image
Insert a blank CDROM
Image to burn ->Select the .cue file.
Click "Start"
Using:
K3B version 1.68.0
KDE 4.3.2
CDRDAO 1.2.2
VCDimager 0.7.23
Kubuntu 9.10
===========
Sunday, May 23, 2010
Add Screensavers in KDE4
Default install of Kubuntu did not have any of the nice screensavers. Check the screensavers by choosing the KMenu ->system Settings
Choose the General tab ->Desktop ->Screen saver
To install additional screensaver, use the Software Management such as KPackagekit or synaptic and install
kscreensaver-xsavers-extra
This can also be done at the terminal by typing
$ sudo apt-get install kscreensaver-xsavers-extra
This installs
kscreensaver
kscreensaver-xsavers
kscreensaver-xsavers-extra
libgle3
netpbm
xscreensaver
xscreensaver-data
xscreensaver-data-extra
xscreensaver-gl
xscreensaver-gl-extra
Install optional items;
$ sudo apt-get install xfishtank qcam streamer
Saturday, May 22, 2010
Start programming with QT4
Here is a guide to get started with QT programming (qt4 in this case) on Kubuntu 9.10. You will need the demo and the Graphical development tool
A. Setting up the environment
Step 1: Install the libraries and compilers. This include libraries such as "QLabel" and QLayout from the QtGui
$ sudo apt-get install build-essential kdelibs4-dev libqt4-qt3support libqt4-assistant
Step 2: Install the demos
$ sudo apt-get install qt4-demos
Step 3: Configure Linux to compile with qt4 instead of the default qt3
$ sudo update-alternatives --config qmake
Step 4: # install the Graphical development tool
$ sudo apt-get install kdevelop
Step 5: Read info on QT4 through the manuals at /usr/share/qt4/doc/html/index.html
$ assistant-qt4
B. General programming setup of project, compiling and execute
Step 1: Create the source files. E.g. .cpp, .h, etc.
Just copy from the demo files in /usr/lib/qt4/examples. I will use files from the example tabdialogs.
$ cp -r /usr/lib/qt4/examples/dialogs/tabdialog/ ~
$ cd ~/tabdialog
Step 2: Create the project file. The project file (.pro) define headers, sources, form and other files which the application consists of.
$ qmake -project
Step 3: Compile
$ qmake
$ make
Step 4: Run the programmes.
$ ./tabdialog
Alternatively, use the KDevelop to manage the project. Start KDevelop and open to .pro file.
$ kdevelop
C. References
- http://zetcode.com/tutorials/qt4tutorial/
- http://sector.ynet.sk/qt4-tutorial/my-first-qt-gui-application.html
- http://qt-apps.org/
Tuesday, May 4, 2010
Scanning the hard disk status
too many programmes running, lower processing speed of hardware, insufficient resources, etc.
You can use basic linux tools to give readings on the hard disk for benchmark purpose. Here are among commands that anyone can use via a terminal;
- Get timing of cache and device reads on inactive systems. This means nothing else is running during the test.
hdparm -tT /dev/sda - Shows the files opened by processes.
lsof - Monitor balance between input/output load of physical disk using the sysstat package. iostat -x
- Space on mounted devices.
df -h - Monitor load on a Linux system, default every 10 second updated.
atop
Details on how to use the above commands can be found in the respective man pages.
Now you can tell someone, my disk is faster than yours.
Thursday, April 29, 2010
Impressive Impress and Converting Slides to AVI
Tools useds;
- Slides - OpenOffice.org 3.1 Impress
- Recording slides - recordmydesktop
- Video editing - Avidemux
- Graphics - GIMP
- Audio - Audacity
- OGV to AVI converter - mencoder
- AVI to MPEG converter - Download helper (extension for firefox) + mencoder
- Operating System - Ubuntu & Kubuntu (2 PCs)
The Impress extensions installed to improve the presentation was "Presentation Minimiser" to reduce the slide file size and "openoffice.org-ogltrans" to add slide transitions. Here are examples of how the additional slide transitions looked like.
Friday, April 23, 2010
Installing ZTE MF110 on Ubuntu Linux
The MF110 features
Network: HSUPA/HSDPA/UMTS 2100 MHz,EDGE/GPRS/GSM 850/900/1800/1900MHz
Data transmission speeds: 7.2Mbps DL 5.76Mbps UL
Weight: 21.5 gramme
Application: Join Air with SMS service, Data service, Applications management, Data concurrent. This allowed me to add other service providers (yet to be tested) with the same modem.
Installation on Linux KUbuntu 9.10
- Install wvdial from KPackageKit
- Plug the MF110 into the USB slot. Mount the MF110 and enter the directory "Linux"
- Extract "PCL_ZTEDCV.tar.gz" to your HOME directory.
- Open a terminal and type "sudo ./install.sh"
- Launch the application "Join Air" from the KMenu
- In Join Air, at the Internet menu (A globe icon), click "Connect". Minimise this window but do not close as its needed to maintain Internet connection.
- It connects directly with initial IP 121.121.X.X and tries to open the web page mylaunchpad.com.my
Dial number: *99#
APN: static: maxisbb
username: maxis
password: wap
Connection has been pretty much inconsistent. Its fast at times, then no connection, then have to keep reloading the page. I like its thumbdrive size and the blinking lights. The Join Air application is also easy to read and use.
Thursday, April 8, 2010
Naming USB drives
Just maybe, that missing USB drive containing your phone number will come back to you if found.
Here is how to name the disk on Kubuntu 9.10 or other similar Linux like CentOS.
Step 1:
Insert the USB disk and determine the device and partition. E.g. /dev/sdb1
Easily done with the mount command.
Step 2:
Unmount the disk (Do not unplug from the USB).
sudo umount /dev/sdb1
Step 3:
Check existing disk name
sudo mlabel -i /dev/sdb1 -s ::
Step 4:
Rename the disk label. E.g. below, replace the word "myphonenumber" with anything you like with a limit of 12 characters.
sudo mlabel -i /dev/sdb1 -s ::myphonenumber
Step 5:
Remove the USB disk, and reinsert back to confirm the name has changed.
For more details see ubuntu.com
Tuesday, March 9, 2010
ThunderBird 2.0 Add-ons
Its an Email client, Calendering, Task and Contact Management. Allows access to Email accounts via POP or IMAP. It also supports GMail accounts, Unix mailbox and Newsgroup account access. A really great application to work with.
Some of the must have add-ons for my Thunderbird 2:
- Contacts Sidebar 0.7 - Allows me to forward VCards and access via F4 the addresses, copy and paste info of the VCard into email.
- Lightning 0.9 - The calendar and task Manager
- FG Printers 0.4.4 - Format printing if the calendars
- VCS Support 0.6.3.1 - Allows me to import/export VCS calendars
- Automatic Export 0.3.0 - Allows automatic backup of the calendars
Other optional add-on:
- Provider for Google Calendar
- Bidi Mail UI
- PGP
- Thunderbrowse
Thursday, March 4, 2010
Linux driver in use
To view all device drivers and the module names
$ lspci -k
To view a specific device (e.g. 03:00)
$ lspci -vv -s 03:00
To view all the loaded modules (The letter 'K' is uppercase in Kernel)
$ lsmod
$ lspci -k |grep Kernel
Monday, March 1, 2010
Installing Kubuntu 9.10
Post installation recommendations
Start the Kubuntu software(package) installer by Kmenu ->Application ->Systems ->KpackageKit
Choose following packages:
- openjdk-6-jre-hotspot
- mozilla-thunderbird-2.0.0.23
- lightning-extension
- flashplugin-installer
Install Firefox web browser
Choose Kmenu ->Internet ->Firefox Web Browser Installer
To allow Java applications to run in the web browser, open a terminal and install the openjdk plugin;
$ sudo apt-get install icedtea6-plugin
To get the wireless working, run at terminal this command and reboot. My wireless router for WPA, TKIP did not connect until following steps were taken. Open a terminal and type
$ sudo /etc/init.d/network-manager restart
Install the other stuff for common applications to be used. At the terminal run
$ sudo apt-get install msttcorefonts
For multimedia, fonts and assorted codecs support
This will add JRE, mp3, mpeg, odbc, unrar and other useful support.
$ sudo apt-get install kubuntu-restricted-extras
This allows the disk to be encrypted and manage passwords. Additional encryption can be downloaded from http://www.truecrypt.org/downloads or mediafire.
$ sudo apt-get install gdecrypt password-gorilla
Allow secure SSH connection to and from SSH servers.
$ sudo apt-get install ssh sshfs ksshaskpass kdessh
Install the VLC video player to watch CD and DVD movies.
$ sudo apt-get install vlc videolan-doc mozilla-plugin-vlc vlc-plugin-sdl libvcdinfo0
Install basic Thunderbird add-ons to enhance its usage. From a web browser enter the URL https://addons.mozilla.org/en-US/thunderbird
Download and install the following;
- Automatic Export
- Bidi Mail UI (not needed if installed as earlier)
- FG Printers
- Lightning (not needed if installed as earlier)
- Provider for Google Calendar (not needed if installed as earlier)
- Thunderbrowse
To improve web browsing, these are my download addons from https://addons.mozilla.org/en-US/firefox
- FoxTabs
- Speed Dials
- Zotero
- Server spy
- Video download helper
- Firebug
Wednesday, February 24, 2010
How a small office can switch to open source?
Must have apps for the office hard working staff:
- Office productivity suite (prepare letters, reports, spreadsheet and presentation slides) - OpenOffice.org
- Email clients - Thunderbird + Calendar
- Document viewer - Acrobat Reader
- Desktop publishing tools such as flyers and posters - Scribus
- Financial tool - GnuCash
- Project management and monitoring - OpenProj
- Graphics and photo editing tool - GIMP, F-SPOT, GwenView, XSane Image Scanning, Mobile Media Converter
- Backup data to CDROM or DVDROM, network - K3B, Simple Backup
- Web browsing - Firefox
- Encryption of files/data - GDecrypt, TrueCrypt, Password Gorilla
- Internet calls/VOIP - Skype
- Multimedia player - VLC
- Base apps/interpreter for other programmes to run - Java Runtime Environment, Flash, Wine, PHP5
Once you have gotten all of the staff interested and comfy with the Linux desktop you can then start integrating with linux services in a networked office.
An office of 4 or more people should have a server or more with the following must have services:
- Printer sharing - CUPS
- Cetralised file/document sharing - PLONE or Open Atrium
- Global address book - LDAP or Customer management suite (see below)
- Local DNS - BIND
- Customer management - vtiger or SugarCRM Community Edition (Asertiva)
- Automated networked backup - Bacula
- Centralised time server - NTPD
- Local email server? Most small office use public email services.
There are loads of other projects that can be done once you have the above in order and your tech guy is happily getting used to OSS.
Monday, February 8, 2010
MCRYPT module for PHP (RHEL5)
Step 1: Login as admin and install MCRYPT
yum install mcrypt
Step 2: Install epel
http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
rpm -Uvh epel-release*.rpm
Step 3: Install the module
yum install php-mcrypt.i386
Step 4: Restart Apache
service httpd restart
Confirmation of the installed module can be found from the phpinfo() page. The module I had included cipher for
cast-128
gost
rijndael-128
twofish
arcfour
cast-256
loki97
rijndael-192
saferplus
wake
blowfish-compat
des
rijndael-256
serpent
xtea
blowfish
enigma
rc2
tripledes
Friday, February 5, 2010
Print repeat header in Calc
Since my upgrade to OpenOffice.org 3.1.1, I have not explored Calc much. When I tried to print a spreadsheet that ran across 40 pages. I tried to have the first 2 rows repeat as headers in every page, an error appeared "Invalid Sheet Range".
Solution:
- Open the Calc spreahsheet.
- In the menu choose Tools ->Option ->OpenOffice.org Calc ->Formula
- In Formula Syntax, it shows "Calc A1". Click on the dropdown box and choose "Calc A1".
- Click "Ok".
Some trigger must have failed to detect the values as "Calc A1". Thank you Arnel for giving the solution in Oct 2009.
Sunday, January 31, 2010
Oracle takes out the Sun
Sun is not only about hardware. What will happen to OpenOffice.org, Java and MySQL? How about the Sun and MySQL Certifications?
How will Jonathan, being the last Sun Microsystem's CEO end his career there?
All the debates are ongoing in the internet but I look forward to Oracle making clear statements on these concerns.
Tuesday, January 26, 2010
Kubuntu 9.10 on PIII
Kubuntu is installed on a Pentium III with 200Mb RAM having 20Gb hard disk. Mouse is with the Nano wireless and keyboard is PS2. With the L2 cache being 512k, it should mean something to Kubuntu to run smoothly (almost). Working just ok, and the desktop looks neat. Swap is taking up 144Mb of the 1,400Mb allocated during installation.
Following are among the first thing I did after install;
1. Did a system update and removed the package kubuntu-firefox-installer.
2. Set the screen to resolution to 1024x768
3. Checked with Konqueror the Internet connection...connected to the broadband via router.
3. Used KPackagerKit to install Firefox 3.5
4. Added stuff like password gorilla, Kphotoalbum
List of things to do next:
1. Install Java and Flash
2. Get a PDF reader. Currently Okular is installed by default.