Sunday, August 30, 2009

Installing .sh extensioned file in ubuntu 9.04

# First locate the file with terminal....
open terminal from Application -->Accessories --> Terminal....

# Locate the folder in which the .sh file is located
like if this is in desktop write " cd Desktop"

# After locating write following command in Terminal
" sudo sh filename.sh "

After that installation will take place....

Tuesday, August 25, 2009

Installing canon ip1900 series printer in ubuntu 9.04

Install ur printer in some simple steps....

step 1:
download the driver package from canon web site. [Click here]
put ur downloaded package in home folder.

step 2:
After finished download, open terminal and write the following command
sudo tar -xf iP1900_debian_printer.tar
step 3:
Now install the cnijfilter deb packages which have already u extracted. Just write the following commands in terminal.
sudo dpkg -i cnijfilter-*.deb
While executing this command u might get error message, don't worry about that. just go to the next step.
step 4:
Now write the following command on the terminal
sudo apt-get install libcupsys2
u r done now...... Just plug ur printer power it on and wait for a while. System will detect ur printer and a settings box will appear where u can configure ur printing settings.

if u want to check whether its installed successfully or not, just write the follwing command in terminal,
sudo ldd /usr/bin/cifip1900
if u get the following type output, u can be sure that it is installed success fully... :D... enjoy printing in ubuntu 9.04.

outpot
=====

linux-gate.so.1 => (0xb805f000)
libcnbpcmcm346.so => /usr/lib/libcnbpcmcm346.so (0xb8043000)
libcnbpess346.so => /usr/lib/libcnbpess346.so (0xb7ff3000)
libm.so.6 => /lib/tls/i686/cmov/libm.so.6 (0xb7fcc000)
libdl.so.2 => /lib/tls/i686/cmov/libdl.so.2 (0xb7fc8000)
libtiff.so.4 => /usr/lib/libtiff.so.4 (0xb7f72000)
libpng12.so.0 => /usr/lib/libpng12.so.0 (0xb7f4c000)
libcnbpcnclapi346.so => /usr/lib/libcnbpcnclapi346.so (0xb7f48000)
libcnbpcnclbjcmd346.so => /usr/lib/libcnbpcnclbjcmd346.so (0xb7f43000)
libcnbpcnclui346.so => /usr/lib/libcnbpcnclui346.so (0xb7f3d000)
libpopt.so.0 => /lib/libpopt.so.0 (0xb7f33000)
libc.so.6 => /lib/tls/i686/cmov/libc.so.6 (0xb7dd0000)
libpthread.so.0 => /lib/tls/i686/cmov/libpthread.so.0 (0xb7db7000)
/lib/ld-linux.so.2 (0xb8060000)
libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0xb7d97000)
libz.so.1 => /lib/libz.so.1 (0xb7d80000)


Monday, August 24, 2009

Owning a folder in Ubuntu 9.04

Start Terminal…

write ” sudo chown -R USERGROUP:USERNAME /FOLDER LOCATION

here, USERGROUP will be repalced by your user group….

USERNAME will be replaced by your username….

FOLDER LOCATION will be replaced by the folder you want to own..

Thats it, for further query please leave a comment here.

Saturday, July 4, 2009

Some Important Vista commands

Here are some important commands for vista.
You can use these commands from the "run" program.

List of Commands:

  1. Color Management : colorcpl
  2. Computer Management Launcher : CompMgmtLauncher
  3. Control Panel : control
  4. Credential Backup and Restore Wizard : credwiz
  5. Defragment User Interface : dfrgui
  6. Driver Package Installer : dpinst
  7. DVD Player : dvdplay
  8. Display Adapter Troubleshooter : AdapterTroubleshooter
  9. Encryption File System : rekeywiz
  10. Event Viewer : eventvwr
  11. Fax Cover Sheet Editor : fxscover
  12. Firewall Settings : FirewallSettings
  13. Firewall Control Panel : FirewallControlPanel
  14. Help Pane : helppane
  15. iSCSI Initiator : iscsicpl
  16. Iexpress : iexpress
  17. Logoff from Vista : logoff
  18. Language Pack Installer : lpksetup
  19. Microsoft Sync Center : mobsync
  20. Microsoft Support Diagnostic Tool : msdt
  21. Optional Features Manager : optionalfeatures
  22. People Near Me : p2phost
  23. Performance Monitor : perfmon
  24. Presentation Settings : presentationsettings
  25. Printer Migration : PrintBrmUi
  26. Snipping Tool : snippingtool
  27. Software Licensing/Windows Activation : slui
  28. Sound Volume : sndvol
  29. Sound Recorder : soundrecorder
  30. Sticky Note : StikyNot
  31. System Properties : SystemPropertiesAdvanced
  32. User Accounts : Netplwiz
  33. Windows Fax and Scan : wfs
  34. Windows Mobility Center : mblctr
  35. Windows Backup Utility : sdclt

Friday, July 3, 2009

START AND STOP PARAMETERS for XAMPP on UBUNTU 9.04

Parameter Description
start Starts XAMPP.
stop Stops XAMPP.
restart Stops and starts XAMPP.
startapache Starts only the Apache.
startssl Starts the Apache SSL support. This command activates the SSL support permanently, e.g. if you restarts XAMPP in the future SSL will stay activated.
startmysql Starts only the MySQL database.
startftp Starts the ProFTPD server. Via FTP you can upload files for your web server (user "nobody", password "lampp"). This command activates the ProFTPD permanently, e.g. if you restarts XAMPP in the future FTP will stay activated.
stopapache Stops the Apache.
stopssl Stops the Apache SSL support. This command deactivates the SSL support permanently, e.g. if you restarts XAMPP in the future SSL will stay deactivated.
stopmysql Stops the MySQL database.
stopftp Stops the ProFTPD server. This command deactivates the ProFTPD permanently, e.g. if you restarts XAMPP in the future FTP will stay deactivated.
security Starts a small security check programm.


Example:
sudo /opt/lampp/lampp startssl

find more on parameters