FreeAntivirus

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Monday, November 30, 2009

How to DHCP server on Ubuntu

Posted on 1:25 AM by Unknown

$ sudo apt-get install dhcp3-serverNow edit the /etc/dhcp3/dhcp3d.conf
The default config file supplied with the dhcpd package is some what cumbersome. I replaced it with the following simple file# dhcpd.conf config file.authoritative;subnet 192.168.0.0 netmask 255.255.255.0 {range 192.168.0.20 192.168.0.250;option domain-name "mynet.local";option domain-name-servers 192.168.0.1;option
Read More
Posted in How to ..., ubuntu | No comments

Sunday, November 29, 2009

How to beat proxy using ssh

Posted on 1:18 AM by Unknown

In most of our schools and offices several websites are blocked. Most of these offices and schools are using a proxy server such as squid along with squidguard or danceguardian to achieve access restrictions on users. Most often, the sys admins forget to block internet traffic using other protocols such as ssh , ftp etc. You can beat the web filtering scheme of your network administrator if you
Read More
Posted in How to ... | No comments

Saturday, November 28, 2009

How to update a distro's iso to new one with zsync

Posted on 1:17 AM by Unknown
zsync is a file transfer program. It allows you to download a file from a remote server, where you have a copy of an older version of the file on your computer already. zsync downloads only the new parts of the file. It uses the same algorithm as rsync. However, where rsync is designed for synchronising data from one computer to another within an organisation, zsync is designed for file
Read More
Posted in How to ..., trickz n tipz | No comments

Friday, November 27, 2009

How to Rebuild a deb package from an installation

Posted on 1:30 AM by Unknown
If you have an ubuntu/debian system , you can rebuild the deb file of any installed package. For this install the dpkg-repack package.# apt-get install dpkg-repackSuppose you have aspell installed on you system . Rebuild the package as below.# dpkg-repack aspellNow look at your current directory. You will seeaspell_0.60.6-1_i386.debdpkg-repack will work only as root.
Read More
Posted in How to ... | No comments

Thursday, November 26, 2009

[ How to ] Automatically unlock the gnome keyring

Posted on 6:58 AM by Unknown

Installing the Package
We’ll need one tiny package for this to be supported. Using your favorite package manager install libpam-keyring, or use the following command:
sudo aptitude install libpam-keyring
Configuring PAM
Once this is installed we need to add a few lines to a configuration file. Follow this next step carefully. If you put the line in the wrong place it may cause problems with
Read More
Posted in How to ... | No comments

Wednesday, November 25, 2009

[How to] boot from Linux ISO FILE using Grub 2

Posted on 11:06 PM by Unknown
Edit /etc/grub.d/40_custom and add the below entry

menuentry "Karmic Live CD (sdaX)" {
loopback loop (hd0,X)/my-ISO/ubuntu-9.10-desktop-i386.
iso
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/my-ISO/ubuntu-9.10-desktop-i386.iso
initrd (loop)/casper/initrd.lz
}

The above entry assumes that ubuntu-9.10-desktop-i386.iso is put in sdaX/my-ISO/

After making the entry run
sudo
Read More
Posted in How to ... | No comments

[How to ] enable 3D effects in fedora 12 ( constantine ) on a system having ATI graphics card

Posted on 6:43 AM by Unknown

Fedora 12 provides "out of the box" support for kernel mode-setting with ATI R600/700 series graphics hardware, but it does not provide 3D acceleration by default. However, Red Hat's X developers have made it very easy to enable this 3D support for the ATI Radeon HD 2000, 3000, and 4000 series hardware by just installing a special Mesa package from yum.
To enable the open-source R600/700 3D
Read More
Posted in Fedora, How to ... | No comments

Tuesday, November 24, 2009

How to change gnome keyring password

Posted on 6:54 AM by Unknown
Install gnome-keyring-manager. Run it and there will be a "local password for user root." Change that and it will change your keyring password.





Quick and dirty method 
----------------------------


Delete the keyring Data file


Code:rm ~/.gnome2/keyrings/default.keyringor backup:
Code:mv ~/.gnome2/keyrings/default.keyring ~/.gnome2/keyrings/default.keyring.bak




Read More
Posted in How to ... | No comments

Sunday, November 22, 2009

[ How to ] Linux Encrypted DVD

Posted on 1:58 AM by Unknown
Suggested Reading 


http://icewalkerz.blogspot.com/2009/10/how-to-create-encrypted-partition-local.html




Create an empty DVD image. The size of the image depends on the media you use (the one in the example works for DVD-R)


dd if=/dev/zero of=dvd.img bs=1000000 count=4700



Mount the image on a loopback device and prepare it for further use with LUKS:


losetup /dev/loop0 dvd.img  
Read More
Posted in How to ... | No comments

Thursday, November 19, 2009

How to install Moblin Desktop environment on Fedora 12

Posted on 11:47 PM by Unknown

Moblin is a lightweight Linux desktop environment especially suited for small form computers (netbooks et al).Installation is straightforward.


Using the command lineOpen a terminal (shell).
Install the Moblin group: su -c 'yum install @moblin-desktop'

Using the graphical package managerGo to System > Administration > Add/Remove Software.
Note: the name of the Add/Remove Software application
Read More
Posted in Fedora, How to ... | No comments

How to install Chrome browser on Fedora

Posted on 10:00 PM by Unknown

Chrome is a browser revolution from Google. It’s built from scratch by Google and has all new features and some innovative ones. Although Google has not yet officially released a Chrome browser that works on Linux, we had shared with you a few ways in which you could possibly install Chromium (the base on which Google have built the Chrome browser) on your
Read More
Posted in Fedora, How to ... | No comments

How to : Time Synchronisation with NTP

Posted on 7:07 AM by Unknown

ntpdateUbuntu comes with ntpdate as standard, and will run it once at boot time to set up your time according to Ubuntu's NTP server. However, a server's clock is likely to drift considerably between reboots, so it makes sense to correct the time ocassionally. The easiest way to do this is to get cron to run ntpdate every day. With your favourite editor, as root, create a file /etc/cron.daily/
Read More
Posted in How to ... | No comments

Friday, November 13, 2009

[ How to ] solve laptop's ACPI related problems in Ubuntu (9.10)

Posted on 10:17 AM by Unknown

Laptop fan runs constantly under Ubuntu 9.10

Open a terminal
sudo nano /etc/default/grubFind and Edit the following line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Add acpi_osi=Linux to the end so it looks like this:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_osi=Linux"
Exit Nano editor with Ctrl+X.  Answer "yes" when asked to save the file
Update grub: 
sudo update-grubReboot to make
Read More
Posted in How to ..., laptop, ubuntu | No comments

Wednesday, November 11, 2009

HOW TO increase available space of your partitions - tune2fs

Posted on 5:56 PM by Unknown
You have probably noticed that when you start your 'System Monitor' (System>Administration>System Monitor) there's a difference between free and available space. Reason for this is the fact that 5% of your partition is reserved for root so if the disk gets full you can boot to recovery mode and have enough room to move around. The thing is that you don't need more than 50MB for this so 5% of
Read More
Posted in How to ... | No comments

Sunday, November 8, 2009

How to Setup Transparent Squid Proxy Server in Ubuntu

Posted on 9:04 AM by Unknown
Squid is a fully-featured HTTP/1.0 proxy which is almost (but not quite – we’re getting there!) HTTP/1.1 compliant. Squid offers a rich access control, authorization and logging environment to develop web proxy and content serving applications. This is a short guide on how to set up a transparent squid proxy server. Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more. It
Read More
Posted in How to ... | No comments

[How to ] Kill the System Beep

Posted on 6:21 AM by Unknown
System > Preferences > Sound > uncheck "Play alert sounds"

You can try a reboot now .. but. Disabling the PC speaker, in favor of using external speakers, can be more tricky.

Try by opening:-

1.sudo nano /etc/modprobe.d/blacklist.conf
.. and appending the lines:-

1.blacklist pcspkr2.blacklist snd_pcsp
Reboot your Ubuntu PC.

If that doesn't cut it, open:-

1.sudo nano /etc/modprobe.d/
Read More
Posted in How to ... | No comments

Remastersys for Ubuntu 9.10 ( Karmic Koala )

Posted on 2:41 AM by Unknown
Remastersys 2.0.13 released for Ubuntu 9.10 Karmic

There is a new repository as well.

For Karmic and Newer with grub2 - version 2.0.13-1 and up

# Remastersys
deb http://www.geekconnection.org/remastersys/repository karmic/


The webpage has also been updated:

http://www.geekconnection.org/remastersys/ubuntu.html
Read More
Posted in ubuntu | No comments

Saturday, November 7, 2009

[ How to ] open Corel Draw files ( .cdr ) in Linux

Posted on 1:40 AM by Unknown

sK1 illustration program

sK1 is an open-source illustration program that can substitute professional proprietary software like Corel Draw or Adobe Illustrator*. Currently Linux is our main development platform, but porting on Win32 and MacOS X desktops has been scheduled. sK1 supports professional publishing features, such as CMYK color, separations, ICC color management and press-ready PDF
Read More
Posted in How to ... | No comments

Wednesday, November 4, 2009

[ How to ] mark or highlight lines or important points in pdf files

Posted on 11:45 AM by Unknown
XournalXournal is a GTK+ application for notetaking, sketching and keeping a journal using a stylus. It can also be used to add annotations to PDF files.
Xournal uses the gtk-print architecture for printing. Xournal also includes a native PDF printing feature.
Xournal includes a PDF file parser compatible with PDF format version 1.4; the compression features of PDF 1.5 are not supported. When
Read More
Posted in How to ... | No comments

Philosophy of free software (Video) by Richard Stallman

Posted on 8:32 AM by Unknown
Download video of Richard Stallman in 2009 FLISOL - hereThe video lasts 28 minutes and this format ogv (free technology for video compression)
Read More
Posted in | No comments

Monday, November 2, 2009

Things to do after installing Ubuntu Linux 9.10 Karmic Koala

Posted on 6:24 AM by Unknown
So you've just installed Ubuntu 9.10, the cute and cuddly Karmic Koala, but now you're confronted with a most pertinent question, "What do i do now?" Ubuntu is a very complete and full-featured Linux distribution, but no operating system can come with everything you want. There's much more fun to be had in what comes after installing the OS on your machine: now you get to set it up with all the
Read More
Posted in ubuntu | No comments

Sunday, November 1, 2009

Changing the Plymouth Theme in Fedora 11 Leonidas

Posted on 10:17 PM by Unknown
Plymouth is the new graphical boot system introduced with the release of Fedora 10 Cambridge. It replaced the rhgb (RedHat Graphical Boot) with a snazzier boot screen that supported cool animations. The first version of Plymouth that shipped with Cambridge used a plugin system where each graphical boot animation had to be coded from scratch - something that did not encourage many people to create
Read More
Posted in boot, Fedora, How to ..., Themes, trickz n tipz, TweakZ | No comments

How to change DMA settings

Posted on 1:50 AM by Unknown
One really common solution to slow, and unreliable playback of DVD is the settings related to DMA which is turn "off" by default.

DMA stands for: Direct Memory Access. DMA allows a piece of hardware to talk directly with the RAM, reading and/or writing independent of the CPU (Central Processing Unit). In other words the hardware can use the system memory, bypassing the CPU, allowing the device
Read More
Posted in How to ... | No comments
Newer Posts Older Posts Home
Subscribe to: Comments (Atom)

Popular Posts

  • Google introduced new Voice and Video Chat !!
    Google today launched Gmail voice and video chat, making it simple for people around the world to chat in high-quality video for free right ...
  • Reducing load on web server by using reverse proxy - squid
    Many large organizations use caching proxy servers to save on network bandwidth utilization (and costs) and improve browsing response times...
  • UNP a Universal File Unpacking Utility for Ubuntu / Debian
    Unp is a small perl script which makes extraction of any archive files in easy way. It support several compressors and archiver programs, ch...
  • File Access Permissions on Linux
    File protection with chmod chmod 400 file    To protect a file against accidental overwriting.chmod 500 dir     To protect yourself from acc...
  • Convert text files to MP3 under Linux
    First we would need to install festival. We can install festival with the following command :sudo apt-get install festivalNow we need to ins...
  • Linux for Kids
    LinuxKidX was, until recently, a Brazilian-only Linux distribution, but, as of March 20th 2009, it is also available in English, so a lot mo...
  • How to allow access to the mail server by individual domains - Sendmail
    The access database (normally in /etc/mail/access) allows a mail administrator to administratively allow access to the mail server by indiv...
  • Visual Browser for Wikipedia
    No matter what you think about the quality and nature of Wikipedia articles, there is no denying that the encyclopedia provides an immense ...
  • How to recover/repair lost/damage partitions
    TestDisk is a powerful free data recovery software ! It was primarily designed to help recover lost partitions and/or make non-booting disks...
  • HOW TO INSTALL ANGRY IP SCANNER ON UBUNTU
    Currently there are many security software available for Linux and Windows. The Angry IP Scanner is one of the popular open source software ...

Categories

  • administration
  • Antivirus
  • Apache
  • Apple
  • AppZ
  • Blog
  • boot
  • CentOS
  • Communication
  • Database
  • disc
  • Download
  • Drivers
  • Editor
  • encryption
  • Fedora
  • File management
  • Filesystem
  • Font
  • Fun
  • gaming
  • Gnome
  • Google
  • Gossips
  • How to ...
  • internet
  • KDE
  • Kernel
  • Kidz
  • laptop
  • Linux
  • Linux embedded Devices
  • Mail
  • Media centre
  • Memory
  • mobile
  • MS
  • multimedia
  • network
  • News
  • Oracle
  • PDF
  • pendrive
  • Perl
  • processor
  • Programming
  • proxy
  • Reviews
  • script
  • security
  • sql
  • Squid
  • ssh
  • Supercomputer
  • SuSe
  • Themes
  • trickz n tipz
  • TweakZ
  • ubuntu
  • Video
  • Video editing
  • Virus
  • zip

Blog Archive

  • ►  2010 (62)
    • ►  June (1)
    • ►  May (6)
    • ►  April (28)
    • ►  March (11)
    • ►  February (5)
    • ►  January (11)
  • ▼  2009 (367)
    • ►  December (16)
    • ▼  November (23)
      • How to DHCP server on Ubuntu
      • How to beat proxy using ssh
      • How to update a distro's iso to new one with zsync
      • How to Rebuild a deb package from an installation
      • [ How to ] Automatically unlock the gnome keyring
      • [How to] boot from Linux ISO FILE using Grub 2
      • [How to ] enable 3D effects in fedora 12 ( consta...
      • How to change gnome keyring password
      • [ How to ] Linux Encrypted DVD
      • How to install Moblin Desktop environment on Fedor...
      • How to install Chrome browser on Fedora
      • How to : Time Synchronisation with NTP
      • [ How to ] solve laptop's ACPI related problems in...
      • HOW TO increase available space of your partitions...
      • How to Setup Transparent Squid Proxy Server in Ubuntu
      • [How to ] Kill the System Beep
      • Remastersys for Ubuntu 9.10 ( Karmic Koala )
      • [ How to ] open Corel Draw files ( .cdr ) in Linux
      • [ How to ] mark or highlight lines or important p...
      • Philosophy of free software (Video) by Richard Sta...
      • Things to do after installing Ubuntu Linux 9.10 Ka...
      • Changing the Plymouth Theme in Fedora 11 Leonidas
      • How to change DMA settings
    • ►  October (45)
    • ►  September (44)
    • ►  August (35)
    • ►  July (1)
    • ►  June (20)
    • ►  April (6)
    • ►  March (8)
    • ►  February (18)
    • ►  January (151)
  • ►  2008 (69)
    • ►  December (31)
    • ►  November (38)
Powered by Blogger.

About Me

Unknown
View my complete profile