Free packages for Debian and Ubuntu are available and can be downloaded at http://getdeb.net, however the packages required the Debian or Ubuntu repositories which pours the package integrity to solve the package dependencies.
Monday, March 30, 2009
Free Ubuntu & Debian Packages
Posted by PNA Prasanna at 1:08 PM 0 comments
Labels: Ubuntu8.10
RHEL5 Python script bug can be resolved in a round about way
You might have experienced on this bug, if you have configured installation server and yum server in the same machine with the same path (i.e., /var/ftp/pub).
Posted by PNA Prasanna at 12:55 PM 0 comments
Labels: Redhat
Ubuntu 9.04 is available in Torrents
Posted by PNA Prasanna at 12:24 PM 0 comments
Labels: Linux Articles, Ubuntu 9.04
Features of Ubuntu 9.04
Linux kernel 2.6.28
Ext4 filesystem support
Cloud computing
Turn-key mail servers
Posted by PNA Prasanna at 12:22 PM 0 comments
Labels: Linux Articles, Ubuntu 9.04
Ubuntu 9.04 is going to be launched on April 23 of 2009
- http://releases.ubuntu.com/releases/9.04/ (Ubuntu Desktop and Server)
http://releases.ubuntu.com/releases/edubuntu/9.04/ (Ubuntu Education Edition)
http://releases.ubuntu.com/releases/kubuntu/9.04/ (Kubuntu)
http://cdimage.ubuntu.com/releases/9.04/beta/ (Ubuntu Netbook Remix and Ubuntu MID)
http://cdimage.ubuntu.com/xubuntu/releases/9.04/beta/(Xubuntu)
http://cdimage.ubuntu.com/ubuntustudio/releases/9.04/beta/ (UbuntuStudio)
http://cdimage.ubuntu.com/mythbuntu/releases/9.04/beta/ (Mythbuntu)
http://cdimage.ubuntu.com/netboot/9.04/beta/ (Ubuntu ARM)Aware of upgradation:Always aware of upgrading to any Ubuntu versions from the previous version. Because they will launch the patches for wifi and other special device drivers after the launch of a month of the particular version. Sometimes your wifi device may not work properly, if you upgrade to the latest beta version of Ubuntu.
Posted by PNA Prasanna at 12:14 PM 0 comments
Labels: Linux Articles, Ubuntu 9.04
Wednesday, March 18, 2009
Have you ever seen the calendar for September 1752 in Unix/Linux ???
Type the following command in Unix shell. Of course, you can use it in $prompt or #prompt.
cal 9 1752
Surprised ???? That's the beauty lies in UNIX.
Explanation:
Isn't the output queer? A month with whole of eleven days missing. This was the time England shifted from Roman Julian Calendar to the Gregorian Calendar, and the king of England ordered those 11 days to be wiped off the face of the month of September of 1752. (What couldn't a King do in those days?!) And yes, the workers worked for 11 days less, but got paid for the entire 30 days. And that's how "Paid Leave" was born. Hail the King!!!
Posted by PNA Prasanna at 4:27 AM 1 comments
Labels: Drops, Linux Articles
Sunday, March 15, 2009
Tips & Tricks
1.Split the files
The following is an example of how to use the split command on a 600MB image.iso file:
# split -b 200m image.iso
It will generate three files, namely xaa,xab and xac of 200MB each. Afterwards you can use the cat command to combine the three to get back the original file, as follows
# cat xa* > newimage.iso
2. Prevent users from changing their passwords
You should have the root previliages to change this permission. Once you change this one users will not be able to change their passwords.
# chmod 511 /usr/bin/passwd
3. Crontab Example
first asterisk to enter the day of week 0-6, where 0 is Sunday. You can enter the month(1-12)in place of the second asterisk. Replace the third asterisk with the day of month (1-31). The fourth one is for the hour(0-23),while the fifth one is to enter the minutes(0-59).
For example, if you need to run a script daily at 5:30pm, then the entry will as shown below:
30 17 * * * sh /home/myuser/scripttorun.sh >/dev/null 2>&1
If the last part “>/dev/null 2>&1” is omitted, then by default, cron will send an e-mail to the user account after executing the cronjob.
4. How to use the swap as a file?
To make a swap file of 1GB, multiply 1024MB and 1024 to get a block size. Now at a shell prompt as the root user, type the following command with the count being equal to the desired block size:
dd if=/dev/zero of=/swapfile bs=1024 count=1048576
Now set up the swap file:
mkswap /swapfile
Enable the swap file after create it by using the following command:
swapon /swapfile
Add the following entry in the /etc/fstab file to make the system activate this file as swap while booting the system:
/swapfile swap swap defaults 0 0
Posted by PNA Prasanna at 11:42 PM 0 comments
Labels: Drops, Linux Articles
