ERROR OCURRED

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg

Friday, November 18, 2011

Reconstruct initrd.img

Posted on 2:04 AM by Unknown
[root@localhost video]# mkdir /cdiso

[root@localhost video]# cp -av /media/Fedora\ 15\ i386\ DVD* /cdiso/

[root@localhost cdiso]# mkdir /initimg

[root@localhost nouveau]# ls -lSh
total 224K
-rw-rw-r--. 1 root root 221K Nov 18 15:18 nouveau.ko.gz

[root@localhost nouveau]# gunzip nouveau.ko.gz
[root@localhost nouveau]# ls
nouveau.ko
[root@localhost nouveau]# ls -ltrh
total 564K



[root@localhost pxeboot]# ls
initrd.img initrd-PAE.img TRANS.TBL vmlinuz vmlinuz-PAE

[root@localhost pxeboot]# cp initrd.img /initimg/

[root@localhost initimg]# cp /cdiso/Fedora\ 15\ i386\ DVD/isolinux/initrd.img .

[root@localhost initimg]# ls -lSh
total 94M
-rw-r--r--. 1 root root 94M Nov 18 15:18 initrd.img
[root@localhost initimg]# xz -d -c initrd.img | cpio -i --make-directories
720557 blocks

[root@localhost initimg]# ls
bin etc init lib proc run selinux tmp var
dev firmware initrd.img modules root sbin sys usr


[root@localhost initimg]# find ./ | cpio --create --format='newc' > initrd.cpio
cpio: File ./initrd.cpio grew, 328701952 new bytes not copied
1363238 blocks

[root@localhost initimg]# ls
bin etc init lib proc run selinux tmp var
dev firmware initrd.cpio modules root sbin sys usr

[root@localhost initimg]# gzip initrd.cpio

[root@localhost initimg]# ls
bin etc init lib proc run selinux tmp var
dev firmware initrd.cpio.gz modules root sbin sys usr

[root@localhost initimg]# mv initrd.cpio.gz initrd.img
Read More
Posted in | No comments

Thursday, November 17, 2011

Dell Latitude E6420 Ethernet working

Posted on 8:47 AM by Unknown
I test this on Dell Latitude E6420 with Ubuntu9.04 (Desktop)

After Installation found Ethernet not working, even ifconfig shows only lo (loop back device).

So for that run following command.

#lspci -nn

Ethernet controller [0200]: Intel Corporation Device [8086:1502]

After google, found this page.

http://www.ubuntu.com/certification/catalog/component/pci:1502:8086-NETWORK

Then i download driver from Intel site.

http://downloadcenter.intel.com/

Then search for 82579 under Linux section


Network Adapter Driver for PCI-​E Gigabit Network Connections under Linux*

The e1000e Linux* stable base driver for the Intel® PCI-Express* gigabit ethernet adapters/connections.

OS: Linux*

http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&DwnldID=15817&lang=eng&OSVersion=Linux*&DownloadType=%0ADrivers%0A


Download following driver.

e1000e-1.6.3.tar.gz


And install.

#tar -xvzf e1000e-1.6.3.tar.gz

#cd e1000e-1.6.3/src/

Under this dir use following command for Installation.

make install

take hardly 2 min for installation.

Reboot your machine... finally your Ethernet working.
Read More
Posted in | No comments

Wednesday, November 2, 2011

FAT32 or NTFS - which is the best ?

Posted on 5:16 PM by Unknown
Which File System to Choose?
 Fat32 or NTFS which is better? NTFS or Fat32 which is faster ? Fat32 or NTFS for Windows 7 (seven), Windows Vista, Windows XP ? NTFS or Fat32 for usb ?

As much as everyone would like for there to be a stock answer to the selection question, there isn't. Different situations and needs will play a large role in the decision of which file system to adopt. 
There isn't any argument that NTFS offers better security and reliability.
Some also say that NTFS is more flexible, but that can get rather subjective depending on the situation and work habits, whereas NTFS superiority in security and reliability is seldom challenged. 

  • Security 

    FAT32 provides very little security. A user with access to a drive using FAT32 has access to the files on that drive. NTFS allows the use of NTFS Permissions. It's much more difficult to implement, but folder and file access can be controlled individually, down to an an extreme degree if necessary. The down side of using NTFS Permissions is the chance for error and screwing up the system is greatly magnified.

    Windows XP Professional supports file encryption.
  • Compatibility
    NTFS volumes are not recognized by Windows 95/98/Me. This is only a concern when the system is set up for dual or multi-booting. FAT32 must be be used for any drives that must be accessed when the computer is booted from Windows 95/98 or Windows Me.
    An additional note to the previous statement. Users on the network have access to shared folders no matter what disk format is being used or what version of Windows is installed.
    FAT and FAT32 volumes can be converted to NTFS volumes. NTFS cannot be converted to FAT32 without reformatting.
  • Space Efficiency
    NTFS supports disk quotas, allowing you to control the amount of disk usage on a per user basis.
    NTFS supports file compression. FAT32 does not.
    How a volume manages data is outside the scope of this article, but once you pass the 8GB partition size, NTFS handles space management much more efficiently than FAT32. Cluster sizes play an important part in how much disk space is wasted storing files. NTFS provides smaller cluster sizes and less disk space waste than FAT32.
    In Windows XP, the maximum partition size that can be created using FAT32 is 32GB. This increases to 16TB (terabytes) using NTFS. There is a workaround for the 32GB limitation under FAT32, but it is a nuisance especially considering the size of drives currently being manufactured.
  • Reliability
    FAT32 drives are much more susceptible to disk errors.
    NTFS volumes have the ability to recover from errors more readily than similar FAT32 volumes.
    Log files are created under NTFS which can be used for automatic file system repairs.
    NTFS supports dynamic cluster remapping for bad sectors and prevent them from being used in the future. 

    ** Conclusion ** 

    Advise : is better to choose NTFS system especially if you are using the lastest Windows versions XP / Vista / 7(Seven). 

    Format a USB Drive as NTFS in Windows XP
     -- If you are a Windows XP user, remember that, Windows XP does have the ability to format drives with the NTFS file system, but you wouldn't know it by looking at the format dialog—normally the option is disabled. To enable it, open up Device Manager and find your USB drive, go to the Properties -> Policies tab and then choose "Optimize for performance". 

    Once you've done this, you'll see the NTFS option in the format dialog. 
    In Windows 7 the option is enabled by default so you dont have to worry about it. 

    When you change your hard drive or usb file system from FAT32 to NTFS, i recommend to format it as NTFS choosing the normal option instead of Quick NTFS Format. 

    Thank you for reading Airtech blog and dont hesitate to leave me your feedback in comments area or on Facebook , Twitter. 
    Special thanks to : http://www.theeldergeek.com/ 


Tweet
Read More
Posted in Windows | No comments
Newer Posts Older Posts Home
Subscribe to: Comments (Atom)

Popular Posts

  • No package 'lua5.1' found
    hecking for LUA51... no checking for LUA51... configure: error: Package requirements (lua5.1 >= 5.1) were not met: No package 'lua5.1...
  • response to SOA query was unsuccessful: solved
    check your zone file [root@inf1sysadm1 data]# pwd /var/named/data # cat ind.raman.com.zone $ORIGIN . $TTL 3600 ; 1 hour ind.raman.com IN SO...
  • can't locate your x11 installation Fedora
    While install Conky, system through this error. Solution:- You need to install X11 Software Dev Package. Login on system with root user ...
  • Qmail Installation & Configuration step by step
    Tested under CentOS 5.8  64bit machine. 1)Packges which i installed for Qmail. httpd-2.2.3-76 php-5.1.6-39 perl-5.8.8 -38 gcc-4.1.2 mysql-5....
  • Dell MD3200 SAS Cabling With Diagram
    I have 2 MD3200 with SAS Ports + 2 Power Edge720. Task to connect Both DAS with Both server and make sure Both server showing  all DAS Parti...
  • It is safe to clean windows prefetch folder and registry folder ?
     It is safe to clean windows prefetch folder and registry folder ? Will this boost Windows operating system capabilities ? Many of you hav...
  • Windows 7 & Windows 8 fail to start
    Windows 7 fail to boot, what should I do? Is Windows 7 failing to boot after you installed the loader or after you just installed a fresh ne...
  • Steps how to change VolStatus in Bacula through bonsole.
    In my example MediaId=4 or Volumename=000018L4 shows volstatus is Purged. *list volumes Pool: Default +---------+------------+-----------+--...
  • Adobe Photoshop CS5 Error 16 , Adobe Photoshop CS5 Error 7
    When you install Adobe Photoshop CS5 you might get some errors. In case you get one you will see a code and a little description. Is very im...
  • X connection to localhost:10.0 broken (explicit kill or server shutdown).
    Solution:- With Xhost, you can solve this issue.

Categories

  • Adobe
  • Players
  • Reviews
  • Windows

Blog Archive

  • ►  2013 (27)
    • ►  October (3)
    • ►  August (1)
    • ►  June (1)
    • ►  April (3)
    • ►  February (10)
    • ►  January (9)
  • ►  2012 (29)
    • ►  December (2)
    • ►  November (7)
    • ►  October (10)
    • ►  September (4)
    • ►  August (1)
    • ►  June (2)
    • ►  April (1)
    • ►  March (1)
    • ►  January (1)
  • ▼  2011 (36)
    • ►  December (3)
    • ▼  November (3)
      • Reconstruct initrd.img
      • Dell Latitude E6420 Ethernet working
      • FAT32 or NTFS - which is the best ?
    • ►  October (1)
    • ►  September (5)
    • ►  August (4)
    • ►  May (2)
    • ►  April (4)
    • ►  March (5)
    • ►  February (2)
    • ►  January (7)
  • ►  2010 (24)
    • ►  December (1)
    • ►  November (1)
    • ►  October (4)
    • ►  August (1)
    • ►  May (1)
    • ►  April (1)
    • ►  March (2)
    • ►  February (5)
    • ►  January (8)
  • ►  2009 (18)
    • ►  December (6)
    • ►  November (3)
    • ►  August (1)
    • ►  July (2)
    • ►  June (1)
    • ►  May (1)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (1)
  • ►  2008 (16)
    • ►  December (1)
    • ►  October (1)
    • ►  August (1)
    • ►  July (5)
    • ►  April (2)
    • ►  February (1)
    • ►  January (5)
  • ►  2007 (4)
    • ►  July (3)
    • ►  June (1)
Powered by Blogger.

About Me

Unknown
View my complete profile