Showing posts with label OS. Show all posts
Showing posts with label OS. Show all posts

Play on Linux

"Linux is the world,Linux is freedom... blah blah blah". Everyone has heard such things and we keep hearing them. Even though linux has grown from a mere console to a user friendly interface in a short time frame, lets accept Linux is still in the growing phase. Its gonna take some time before the doors and windows are gonna shut and every house will have a penguin in their computers.


I agree when im talking about linux, initially its not for normal people. Its for science, using sophisticated tools, programming etc... But since the inception of Ubuntu, the attitude towards linux has changed. It has shown the world that linux is for everyone.

One of the most frustrating feature of linux is there are not many games that support the OS. Mostly because the windows has the market of household desktops still under its captivation and most of the games are developed considering windows in mind. I know we get many bundled up games with linux distros, but are they enough? What about the games like Counter strike, Need For Speed etc? Do linux have support for them? This is what i went on to explore... and thats when i stumbled upon this site... PlayonLinux
Its the software that can help you to install games and apps made for windows... Though it internally uses Wine.. it has a list of softwares and games that it supports and guarantee's that it can work on linux... I straight away installed this and yes.. it truly supports few of my favorite games which i was addicted on windows...

I'm yet to explore more on this.. Go ahead explore...PlayonLinux



Read More...

Cracking the root password III

Long time back I had written about how to change the root user password before on ubuntu

But the method that i had described before is obsolete now... With ubuntu evolving, today that method in my previous post wont work.

I was trying to install windows 7 over the existing ubuntu and as you know the windows bootloader overwrites the boot sector and thus the grub got wiped out. Wanting to fix the grub, i logged in as a live user session after long time. But to my surprise.. i couldn't change the root user password as i mentioned in my previous post. Hence i went searching for the new way to change the root password because without the root password i wont be able to run install grub ...and other commands.

finally i found a more simpler way to crack this and reset the password.

if you run the command below from the terminal

:~$ sudo passwd root

it does the job, it asks for the new password and you can type in the key patterns you want and use it as the root user password. This should work on ubuntu 9.10 and the after flavors.

Read More...

So you think you've mastered Linux??

Remember, in the movie Matrix, Neo says - "I know Kung Fu" and then Morpheus says - "Show Me"? This is kinda similar. You think you've mastered Linux? Prove it! This post goes as a challenge to all those Linux gurus and others as well. Download and install Suicide Linux and it'll really test your command line skills. Did you know that Bash corrects a wrongly typed command and continues with execution? Well, Suicide Linux is quite cruel in that terms. ANY TIME you make a mistake, ANY spelling, anything at all, this distro considers it as "rm -rf /" (which means kiss your data goodbye! cuz your entire hard disk is getting formatted). Try this distro and see how long you're going to last.

Read More...

Windows 8 makes it to the Microsoft Roadmap

The Operating system gaint Microsoft has declared that it will release its next generation the successor of windows 7 by 2012. This Operating system named Windows 8 is rumored to be a 128 bit operating system. The company is co- working with Intel, AMD, HP and IBM for this 128bit machines which will be in markets by 2012.

Nothing much have been said about the features that its gonna have, but 3 years from now is a long way. And Microsoft having a hard time maintaining its timescale. Since Windows vista was delayed by 2 years, microsoft said that it wont have 5year gaps between its new launches. Then came windows 7 which is gaining market these days and in 3 more years lets hope windows 8 will have more to offer....

Read More...

Google Chrome OS..."The Future has Arrived"


The Wave of Google chrome is already setting sails in our minds. The Features that are being claimed by the new OS being developed by the Search giant Google, named after its browser chrome are just astonishing.

The announcement made 4 months back was to develop the Operating system that will enhance the way people surf and would allow to embrace the internet in a more easy way than the conventional operating systems. They have announced that chrome OS will have a faster booting ability. It predicts that the time taken for you to start browsing will be almost same as the time needed to switch on your TeleVision. Your internet reachability will be enhanced to this extent, you wont need to start all your programs to get to internet and it means you literally have a booting time of less than 5 seconds. It would be a milestone in the history of the operating systems.

Google said that "It's basically a Web browsing machine"and they added all data in Chrome OS will automatically be stored in the cloud, but also cached on the computer's internal hardware to boost performance. This OS will have to get rid of the usual desktop softwares such as the office suite of Microsoft for its faster performance and when google already have its google docs running online, it think it wont be a difficult task for them to host the applications on the servers and run them based on the requirements of an individual.

And with all the data synched on the cloud, its a winning move for google to conquer the search market and also increase its revenue. With the advent of Chrome OS it would mean that more google searches and more google ads tending to increased revenues and profits.

Read More...

iPhone's New Firmware!

iphone-os-30

On March 17th, Apple unveiled the much hyped new firmware version of iPhone - version 3.0 beta and since then the blogosphere and the twitterverse is abuzz with this news. The new firmware brings some exciting new features, like the Copy and Paste functionality, iPhone Tethering and Multimedia messaging.

But sadly, this beta version of the firmware is available only to the iPhone App developers and the final iPhone 3.0 firmware will be released during the summer for consumers and till then there is no direct way of accessing and testing out the features of this new firmware on your iPhone or iPod Touch.

Now the good news is, here on TechPP you can download the iPhone 3.0 firmware beta for your iPhone (2G and 3G) or for your iPod Touch (1G and 2G), thanks to Saad Hamid. He will also provide you instructions on how to install and get it working on your device without any problems. Below you will find the download links for each of the device.

Read More...

Cracking the Root Password Part II

This is the sequel of my post hacking the ROOT

Here i would like to write about a new technique through which we can hack into the root.
This does not have limits... i mean to say this method can be used even if the grub of any system is locked down...
But both my methods the former one in the previous post and the one that i will present here all need physical access to the system...!!


This method requires the live cd.. preferably Ubuntu... since its simple

  • Insert the live cd and boot from the cd.
  • You can choose the option " Try ubuntu without any changes to your system"

- you need not have ubuntu installed on your harddrive.. u just need to boot it live.


  • let ubuntu boot up normally.... now go to System->Administration-> Users and Groups in the menu bar above.
  • you will have a "user settings" window poping up
  • just select root , click on properties and set the password by hand.Finally press ok
( sometimes you will also have to unlock , if you are not able to select root )
  • Now Shoot open the terminal.type su , it will ask for the password you just created.

  • Type fdisk -l in the terminal window. This will display the list of partitions on the harddrive. we are looking for a linux partition here.
  • next my linux drive here is /dev/sda2 or /dev/sda3 you will have to mount the partition. since i have two linux installed on my disk, let me work on my sda2 partition
  • lets create a folder to mount type mkdir /media/linuxpartition to create a directory.
  • now type mount /dev/sda2 /media/linuxpartition to mount the partition.
  • Now lets change the root type chroot /media/linuxpartition for my example here.
  • now you should have the command prompt symbol changed as shown below
  • Type passwd and enter the new password, and there you go... you have just changed the password for your linux root.
  • type reboot to restart the machine and login with your new password.. and enjoy...!!!
Bulleted List

Read More...

Waves of Ubuntu 9.10 Karmic koala are out...

Readers, Still the release of the jaunty is in April already the waves of the next release of ubuntu 9.10 code named Karmic Koala.. is scheduled for this october.
Ubuntu is sticking on to its six month release cycle...
With this Karmic Koala the plans are to introduce ubuntu series into cloud computing , the most happening topic today...

And with the desktop... and netbooks plans are to reduce the boot time from 25seconds to much lesser.... and i dont wanna take a guess this time.Also they are planning to improve the theme.. and the boot screen...

well there are lots to come..and lot more in reserve...

more you can read at Mark's post..Karmic Koala

Read More...

Linux- Overrated?

While those who disparage Linux might have a point with regard to its appearance or the lack of drivers, they fail to see the larger issue. Linux is a success because it represents an alternative in an environment that is designed to help the powerful eliminate alternatives.


So often, the defense of Linux involves a price argument. More important than the free price is the freedom Linux and other GPL software represent. Lately, I have noticed a lot of bloggers disparaging Linux-based operating systems for all kinds of reasons, from aesthetics to business strategies.

Of these, Linux Hater's blog stood above the rest, and though his criticisms are generally valid, he completely misses the mark. Though we should never avoid holding Linux-based operating systems to the same standards as proprietary platforms, we must recognize that any shortcomings are minor in the context of all of the successes of Linux and open sourcesoftware.

Just check the blog, they make some really valid points.

Read More...

Windows 7- Build 7022 Leaked?

Microsoft are currently working hard towards the Release Candidate of Windows 7. Currently the only official build available to testers and the general public is build 7000 but we have learned that 7022 has leaked to the internet today.

According to a Russian torrent site it was leaked by "friendly" Microsoft Ukraine individuals.(Lol lol, no wonder why piracy rules the world :P ) It's not likely that the build contains any of the UAC changes Microsoft has recently promised. The build is Build 7022.winmain.090115-1850 which indicates it was built nearly a month ago. Some Microsoft employees have twittered recently that they were "installing build 7034" so the company is clearly pushing ahead with the builds ready for the upcoming Release Candidate.

Read More...

 
^ Scroll to Top