How To See Ubuntu OS 32bit or 64bit

How To See Ubuntu OS 32bit or 64bit. To determine whether our ubuntu is 32bit or 64bit there is 2 way to check. Accordings to askubuntu we can determine its operating system version by running :

1. uname -a
which the results in my computer is

root@dhcppc12:/sbin# uname -a
Linux dhcppc12 3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:15:33 UTC 2013 i686 i686 i386 GNU/Linux

the bold words shows that it is 32 bit operating system, while it shows you x86_64 x86_64 x86_64
it means you have installed the 64 bit operating system.

2. file /sbin/init
file command is used to determine file type, it will result

root@dhcppc12:/sbin# file /sbin/init
/sbin/init: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=0x07075fcb55b05aeb6286efabba63534fa6ecd213, stripped

the bold “32-bit” shows you that this file type is 32bit
it will show you

ELF 64-bit LSB shared object, x86-64, version 1 (SYS…

instead if you have installed the 64 bit ubuntu operating system.

Determining Operating system type is different with determining hardware type.
to determine hardware type we can use command
root@dhcppc12:/sbin# lshw -c cpu | grep width
width: 64 bits
or simply type lshw -c cpu

:)

source :
http://askubuntu.com/questions/41332/how-do-i-check-if-i-have-a-32-bit-or-a-64-bit-os

List of PC Tablet With Docking

List of PC tablet with docking. Below i write a list of PC Hybrid or PC Tablet Laptop with Docking Station. Other options to attach keyboard to our table exist, such as (non-original) keyboard docking for android and keyboard docking for ipad. But these devices i write below has its original keyboard docking and offers us experience of tablet PC and laptop at the same time.

1. Asus Transformer Pad
Asus transformer pad is tablet PC offered by asus. it has eee lines of producst listed in
http://eee.asus.com . Asus categorized their product into 3 brands :

Asus Tablet Product

  • Asus Vivo Tab : Windows 8, 10.1″ display, Intel® Atom™ Z2760 Dual-core, Keyboard Docking

Asus Vivo Tab

  • Asus Transformer Tab : Android (Ice Cream Sandwich), 10.1″ display NVIDIA® Tegra® 3 T30L Quad-Core @1.2Ghz, Keyboard Docking

Asus Transformer

  • Asus MemoPad : Android (Jelly bean), 10″ display, NVIDIA Tegra 3 QuadCore, no Keyboard Docking

Asus Memo Pad

2. Microsoft Surface
Microsoft surface is revolutionary new tablet by Microsoft, The Surface comes in two versions: one with Windows RT and another with Windows 8 Pro. The Windows RT model uses an ARM CPU, while the Windows 8 Pro model uses an Intel CPU.

Surface Pro comes with : Win 7, 10.6″ ClearType Full HD Display, 3rd Gen 1Intel® CoreTM i5 Processor with Intel HD Graphics 4000

Issue with microsoft surface comes with its storage capacity. Its Operating system and applications will need around 32 GB of storage. Leaving amount of harddisk space – 32GB to be used as real storage for files.

3.HP Envy
HP Envy X2 is notebook that doubles as tablet. It offers windows 8 experience laptop with bright display and the mobility of tablet. Its main feature are : Windows 8, Intel Atom Processor Z2760 (1.80GHz) + Intel Graphics for 64GB SSD, 11.6-inch display IPS.

HP ENVY

4. Samsung Ativ
Samsung offers Samsung Ativ smart PC and Samsung Ativ SmartPC Pro. Samsung Ativ SmartPC comes with  : Windows 8, Intel Atom Processor Z2760, 11.6″ Intel Graphic Media Accelerator

Samsung Ativ

5. Lenovo IdeaPad
Lenovo comes up with variety of PC Tablet Product, IdeaPad Yoga is one of its product that offers you 4 mode. Like it said in it website, “Choose from one of four modes to use your Yoga: tablet, laptop, tent or stand. Simply flip and fold
the touchscreen, then start your journey.”

Lenovo IdeaPad Yoga

Yoga 11 with 11.6″ HD display and Yoga 13 with 13.3″ HD IPS Display.
Those two products is actually called convertible laptop, its keyboards can move almost freely in 360 one axis movement.

More tablet experience are offered by

  • IdeaTab S2110 : Android 4, 10.1″
  • IdeaTab Lynk : Up to Win 8, 11.6″
  • Thinkpad Tablet 2 : Up to Win 8, 11.6″

IdeaTab S2110

IdeaTab Lynk

ThinkPad Tablet 2

How To Edit hosts file in Windows

Editing hosts file in windows

Host file in windows is used to map ip address into the its name. By using hosts file we can refers any particular IP address by using the name we specified.

the hosts file contains lines of ip address and its name for example

127.0.0.1 localhost

so every time we use ‘localhost’ in any networking activities in our laptop, this will be translated into 127.0.0.1, which is our loopback ip address, ip address belongs to our own laptop/pc/device.

How to edit hosts file
editing host file in windows is as simple as adding new lines containing ip address, space, and name we want to refer.

for example i want to add ip address 167.205.1.34 which i want it be referred by college.
just add it below the existing line

127.0.0.1 localhost
167.205.1.34 collage
10.2.30.5 office

the steps :

1. the hosts file is located in C:/Windows/System32/Drivers/etc/
it is file with no extension

2. To open this file, you will need administrator privilege, so you need to open it using any word processor that has administrator privilege confirmed.
for example we can use notepad, but when we want to run notepad,
first, do the right click on notepad icon, then choose ‘run as administrator’, choose yes when dialogue appear

3. in menubar choose File > Open, look for C:\Windows\System32\drivers\etc
if you don’t see any file, make sure you choose *All File in file type option

How to edit hosts file in Windows 7

How to edit hosts file in Windows 7

4. You will find the hosts file, choose it, and open. Add the ip address and name you want and save those notepad using Ctrl+S.

Blocking web address using host file

Other simple use of Hosts file in windows and other operating system is to block web address. This can be done by pointing any web address which is inn their domain name, to our local ip address. for example, we want to block google.com and facebook.com. Then just add in our hosts file

127.0.0.1 google.com
127.0.0.1 facebook.com

it will point google.com to 127.0.0.1, our own ip address. so it will not reach the real google.com and display nothing in the web browser

How to Enable Copy Paste in Windows Command Prompt

have you experienced a moment when you use command prompt and it feels not comfortable? if yes, then the answer is maybe because by default we can not do copy paste in windows command prompt. To enable Copy and Paste function in CMD, we just need 3 step.

1. Open/Run CMD
2. Right Click in Windows Border, choose properties

Enable copy paste in Windows Command Prompt

Enable copy paste in Windows Command Prompt


3. In new properties window, check the “Quick Edit Mode” and click OK
Enable copy paste in windows cmd

Enable copy paste in windows cmd

Now you can easily copy paste any text in Command Prompt using right click.

simply do the right click will paste any previous text stored in clipboard.
while pointing any text by blocking any text will copy the text in cmd to clipboard.

How to see your windows product key or seriall number

How to see your windows product key?. How to see your windows 7 serial number? Windows product code once installed, this information will be saved by windows in registry, there is no common utilities provided by windows to look or to view this product key or serial number. However if you want to see this windows product key or you want to see your windows serial number. there are many free programs available to download.

one of those program is belarc advisor.
Using this belarc advisor you can get more information that you need. Belarc Advisor will not only provide you your windows (windows 7, vista, xp) product key/serial number. It will also give you any product key from application program that you have installed into your PC.

It gives you more for less expectation, in fact, it will display our computer profile summary, haha its scary actually because it can reveal our sensitive data such as our windows security update status, any used application in some past days, and any media storage that we had plugged in into our computer

This is How Belarc Advisor shows me my windows 7 product key

How to see your windows 7 product key

How to see your windows product key

It may take several minutes for belarc advisor to get all of this data, but it is very informative and very easy to use :) .

If you want to see your windows 7 product code / serial code, just Download it here

How To Change Default Boot Order in Windows

Installing different version of windows in one computer may be needed to get one advantage that other version dont offer.
Usually the default boot loader version will be windows version that is installed last. This default boot loader however can choose which windows to load when the booting started. however, You can modify it through msconfig.

by using msconfig you can change default boot order in you windows PC

1. click windows logo
2. type “msconfig” in search form
3. in msconfig window choose boot menu
4. click the OS you want to set to be default OS to boot.

Change default boot order in windows using msconfig

Change default boot order in windows using msconfig

Harddisk and Other Input Device Aren’t Detected During Booting

Harddisk and Other Input Device Aren’t Detected During Booting. It happened right after i tried to modify bios setting. actually i just want to change the boot order but somehow i slipped, so in order to keep the last setting i choose to activate the optimized default options. but after its restarted it opened the bios setting directly without any button pressed. I also couldn’t find booting priority options.

harddisk, flash usb, and dvd writer were also not detected by my laptop. i tried optimized default menu once again but i still couldn’t make it right. it didn’t show any input device during booting.

after struggling for a while i found the secure boot options
i wasnt sure about this option actually and i hadnt looked for it in internet, but after i disable it
tadaaaaaaaaaaa.
my laptop worked well like before :)

so if you somehow have some problem with me, make sure to check for secure boot option in your bios and disable it, it may solve your problem.

Windows 8 Installation dual boot windows 7

Windows 8 Installation dual boot windows 7 can be performed when you have computer/laptop installed windows 7 before. You can do these step by step to install windows 8 dual boot windows 7 in your laptop :

Preparation

1. Download windows 8 installation image. Usually available in iso format, you can freely download this windows 8 installation. here or here
2. Create bootable flashdisk/DVD disk. if you want to create bootable flashdisk you can use windows 7 USB download tool. you can download this tool here. The operation is very simple. you just need to plug in you flash disk, run the windows 7 USB download tool, and the only command performed by this tool is asking you to locate your ISO image of windows 8 installation. After you specify the location and choose OK, this program will create bootable flashdisk for windows 8 installation. if you want to create bootable DVD, you just need to burn your ISO image using burning tool :) .

3. Before you want to install dual boot win 8 and win 7 you need to create new partition in order to make you easier to manage the harddisk and avoid losing your data. to create new partition you can use Disk Management tool, you can type “create and format hard disk partition” in start > search program and files form.  or go to Control Panel > System and Security > Administrative Tools > Computer management, and choose Disk Management. There you will be given information of each of your partition and you can create new partition by shrinking your old one. You can read this article for example

Installation

1. In this step, i assume that you already have bootable flashdisk or bootable dvd for windows 8 installation. after you have these, you need to plug in the flash/media installation. and restart the laptop/computer.

2. When the computer started, choose media boot selection and make sure you choose according to your installation media. this can be performed using f10/esc button. you can press this button while the screen displays the logo of your laptop/pc manufacturer. some option will appear from flashdisk, dvdroom, and harddisk. choose flashdisk if you have bootable flashdisk or choose dvdroom if you have bootable dvd.

3. Your computer will be restarted after you select the booting priority. Now the computer will boot your media installation first. New windows 8 logo will appear and will guide you to install windows 8.

4. The installation step is very simple : - select harddisk partition
- input product key, you can google it using keyword “windows 8 product key free”
- and confirm installation

5. The installation is finished and now you will have 2 option when your windows booting. You can choose windows 8 or windows 7. :) .

Protect File or Folder on Ubuntu/Linux

the necessity of protecting file or folder sometimes exist because we want to prevent file/folder operation from other user. in linux we can use chattr command

to show how this command works,

1. create new file
# touch newfile

2. add chattr command
# chattr +i newfile

3. try to remove file
# rm newfile
rm: cannot remove `newfile’: Operation not permitted

to remove “immutable” attribute just change option from +i to -i
4. remove attribute
# chattr -i newfile

now u should be able to remove the file.
use man chattr to find other possible options.

Windows 8 Free Download

windows 8 free download

windows 8 free download

Miscrosoft has announced its newest operating system Windows 8. It also comes with newest features, its main feature is its compatibility to be ported to most all computer architectures. it fully supports touchscreen device and still suitable for most win 7 applications. Metro UI, is its user interface name.

From one article from microsoft i also found some explanation about its new features, here they are :

  • Fast launching of apps from a tile-based Start screen, which replaces the Windows Start menu with a customizable, scalable full-screen view of apps.
  • Live tiles with notifications, showing always up-to-date information from your apps.
  • Fluid, natural switching between running apps.
  • Convenient ability to snap and resize an app to the side of the screen, so you can really multitask using the capabilities of Windows.
  • Web-connected and Web-powered apps built using HTML5 and JavaScript that have access to the full power of the PC.
  • Fully touch-optimized browsing, with all the power of hardware-accelerated Internet Explorer 10.

 

here is the video preview :
well, i believe all u want is just to try and download it. well it may just preview edition, but it is said that th final version may include features from this edition
here is the link provided by microsoft :