Posted by Muhammad Nasir on 09:14
Posted by Muhammad Nasir on 00:53
Posted by Muhammad Nasir on 23:08

Download
Part1 http://www.megaupload.com/?d=I3RVE1WC
Part2 http://www.megaupload.com/?d=XC2PCZTI
Part3 http://www.megaupload.com/?d=4YCSU700
Part4 http://www.megaupload.com/?d=B2AMH213
Part5 http://www.megaupload.com/?d=IT8RZG...
Posted by Muhammad Nasir on 21:10
Weakness of attitude becomes weakness of character is what Albert Einstein said and he was right. Weakness of attitude means that if we show a poor attitude it will affect our lives. The more weakness we show the more number of people perceptions will change about us and they will considered as horrible persons. However if we show good attitude, then our impact on people will be positive and our character will be good and people will considered as caring persons. Our attitude will defines who we are and how people will think we are.
So how bad attitude becomes weakness of character? Attitude is personal view of something, a view or general feeling about something. If we see it in terms of body postures then it will be a physical posture, either conscious or unconscious, especially...
Posted by Muhammad Nasir on 05:56
User and Group Management· See the /etc/passwd and /etc/shadow filesThese files contain the information about the user login and password and other variables.· Make a new user “tux” with default home directory and password “pakistan”sudo useradd -p pakistan tux· See the changes in /etc/passwd and /etc/shadowBoth of the files contain last row as tux user.tux:x:1001:1002::/home/tux:/bin/shtux:pakistan:15249:0:99999:7:::· Create a group “BIT10” with group ID 99 and change tux’s group to “BIT10"sudo groupadd -gid 99 BIT10Asudo gpasswd -a tux BIT10A; sudo usermod -g BIT10A tux· ...
Posted by Muhammad Nasir on 11:22
Posted by Muhammad Nasir on 02:22
This is very Important News that is announced by Indian channe...
Posted by Muhammad Nasir on 00:45
1. Manage Partitions with fdisk· Use fdisk to create a new partition tableo 1st primary partition (100 MB)o 2nd primary partition (1 GB)o 3rd primary partition (4 GB)· Commit these changes· Reboot and install Linux on the new partition table, mounting them as:-· 1st primary partition as /boot (reiserfs)· 3rd primary partition as / (ext3)sudo fdisk /dev/sdadelete all partitions 1 ,2 using d then press w to write changesPress n to create a new partition and press p for primary then 1 for partition 1 and then press enter for default...
Posted by Muhammad Nasir on 00:41
· emacs· Given a buffer full of English text, answer the following questions:a. How would you change every instance of his to hers?press M-x . Then enter:hers RET his RET hers
M-x replace-string his hers
b. How would you make this change only in the final paragraph?
Through “M-h” select paragraph then “M-x replace-string his hers”
c. Is there a way to look at every usage in context before changing it?
ESC %
d. ...