Grub2 can't see partition on a MBR drive but can on GPT drives

I have three hdds, the first two are formatted with GPT and the third MBR so as to boot windows when needed.  I have grub2 installed on /dev/sda and I can boot my Arch partitions just fine.  I can't however boot the windows partition (/dev/sdc1).  I can't even see the partition on it via grub2's console.  First, under Linux:
# fdisk -l /dev/sdc
Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000c14bc
Device Boot Start End Blocks Id System
/dev/sdc1 * 2048 122882047 61440000 7 HPFS/NTFS
/dev/sdc2 122882048 1953523711 915320832 83 Linux
Now in the grub2 console:
grub> ls
(hd0) (hd0,6) (hd0,5) (hd0,4) (hd0,3) (hd0,2) (hd0,1) (hd1) (hd1,2) (hd1,1) (hd2)
Note that there are no entries for (hd2,1) and (hd2,2) for some reason.  Is this because my first two drives are GPT formatted and grub isn't loading a module for MBR... or?
/etc/grub/grub.cfg
# DO NOT EDIT THIS FILE
# It is automatically generated by /sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
load_env
fi
set default="0"
if [ ${prev_saved_entry} ]; then
set saved_entry=${prev_saved_entry}
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
fi
set menu_color_normal=light-blue/black
set menu_color_highlight=light-cyan/blue
insmod ext2
set root='(hd1,1)'
search --no-floppy --fs-uuid --set f20eb010-e657-4364-acd0-45ed3f9f20c1
if loadfont /usr/share/grub/unicode.pf2 ; then
set gfxmode=1024x768x24
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
fi
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
insmod png
background_image ($root)/grub/genesis.png
fi
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
set locale_dir=($root)/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry "Arch Linux, with Linux vmlinuz26-ck" --class archlinux --class gnu-linux --class gnu --class os {
set gfxpayload=keep
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
echo Loading Linux vmlinuz26-ck ...
linux /vmlinuz26-ck root=/dev/disk/by-uuid/f20eb010-e657-4364-acd0-45ed3f9f20c1 ro quiet
echo Loading initial ramdisk ...
initrd /kernel26-ck.img
menuentry "Arch Linux, with Linux vmlinuz26-ck Fallback" --class archlinux --class gnu-linux --class gnu --class os {
set gfxpayload=keep
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
echo Loading Linux vmlinuz26-ck ...Loading Linux Fallback ...
linux /vmlinuz26-ck root=/dev/disk/by-uuid/f20eb010-e657-4364-acd0-45ed3f9f20c1 ro quiet
echo Loading initial ramdisk ...
initrd /kernel26-ck-fallback.img
menuentry "Arch Linux, with Linux vmlinuz26" --class archlinux --class gnu-linux --class gnu --class os {
set gfxpayload=keep
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
echo Loading Linux vmlinuz26 ...
linux /vmlinuz26 root=/dev/disk/by-uuid/f20eb010-e657-4364-acd0-45ed3f9f20c1 ro quiet
echo Loading initial ramdisk ...
initrd /kernel26.img
menuentry "Arch Linux, with Linux vmlinuz26 Fallback" --class archlinux --class gnu-linux --class gnu --class os {
set gfxpayload=keep
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
echo Loading Linux vmlinuz26 ...Loading Linux Fallback ...
linux /vmlinuz26 root=/dev/disk/by-uuid/f20eb010-e657-4364-acd0-45ed3f9f20c1 ro quiet
echo Loading initial ramdisk ...
initrd /kernel26-fallback.img
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" --class memtest86 --class gnu --class tool {
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 0fc7ed20-0b1e-4e26-860c-6e63dd3a35ea
linux16 ($root)/memtest86+/memtest.bin
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Arch (on /dev/sda4)" {
insmod ext2
set root='(hd0,4)'
search --no-floppy --fs-uuid --set f1c45bf7-5da9-4010-89dc-04d2016a6373
linux /boot/vmlinuz26 root=/dev/sda4
initrd /boot/kernel26.img
menuentry "Windows 7 (loader) (on /dev/sdc1)" {
insmod ntfs
set root='(hd2,1)'
search --no-floppy --fs-uuid --set 1b03a3fc528a9b6c
chainloader +1
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/40_custom.pacsave ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom.pacsave ###

Your problem is that the MBR module of grub2 is not loaded.
Try
menuentry "Windows 7" {
    insmod part_msdos
    insmod ntfs
    set root=(hd2,1)
    chainloader +1
Manually in the grub2 prompt try
grub> insmod part_msdos
grub> ls
(hd0) (hd0,6) (hd0,5) (hd0,4) (hd0,3) (hd0,2) (hd0,1) (hd1) (hd1,2) (hd1,1) (hd2) (hd2,2) (hd2,1) # your output should be like this
grub-install when setting up grub2 in the mbr (meaning the 1st 440 bytes boot code region alone) region detected GPT partition map in your system and copied that module alone to the core.img, not MBR (msdos) module. Hope this helps.
Last edited by skodabenz (2010-11-23 13:53:28)

Similar Messages

  • Why can i not see partitions over 1.5gb while in windows/bootcamp?

    I have a mid 2011 imac 21.5 and while I am in windows that was installed with the bootcamp assistant, it won't let me see one of my external drives that is 2tb.
    I can see the other partition on my main drive which is my main os x partition just fine. And another usb that is 1tb can also be viewed with no problems.
    When i am in os x I can see the 2tb drive just like any other so I am at a bit of a loss.

    There is a forum specifically for Boot Camp, you can get there by clicking Boot Camp, I'd recommend reposting there.

  • Migration Assistant can't see partition

    Following the advice of my local Apple Store, I purchased a LaCie external drive from them and set up several partitions, each used to back up one computer using Carbon Copy Cloner.
    Now that a hard disk has failed, I want to use Migration Assistant to copy the backed up data but it only sees the first and last partitions on the external drive, and the one I need to restore from is neither the first nor the last.
    All the partitions show up on the Desktop when I plug in the drive. Why can't Migration Assistant see them? And how do I fix this?
    Thanks.
    PowerBook G4   Mac OS X (10.4.5)  

    Clone the data you need to the boot partition of another hard drive, and in the future don't partition hard drives except when necessary like to use one partition as a scratch partition that you can erase at will.

  • Can I move my operating system to a different partition on the same drive?

    I thought I knew what I was doing when I partitioned my hard drive and installed the operating system and everything else. The other partitions are for documents, photos, etc. It worked well for quite a while but now I find there is not enough free space on my start-up partition (24GB) to be able to do new installations. I have cleared a 50 GB partition on the same drive to be the new home of my operating system. I tried copying all the files in the System partition to the new drive but "Startup Disk" doesn't recognize the copied version. How can I make this work without having to install everything all over again?

    Too true. I have been partitioning my drives since the 80's when it was "illegal" and voided warranties as was opening the case on a Mac. Now the cases open right up and you drop and slide in new drives and memory. And it has saved my butt many many many times. You put your operating system on one partition, from what I have read it is best on the first partition of the first hard drive in the chain, Master, if you have more than one drive. I have four drives with now down to 8 partitions with the last two 10.4.x OS's that worked well and my last 10.5 for emergency use, all on one drive in separate partitions and boot to them all the time with no problems. I always keep my last install just in case intact and bootable. It's no different than what is done with BootCamp and running Windows. Then put all your data, files, non-Apple applications on another partition(s). That way when the OS hammers, and it will, all you have to recover is the OS and your data is safe. Thenall you really have to worry about is certain preferences and databases that have to be on the start up partition that won't work when aliased. I have found them, and they are few, and use Backup from the iDisk software library to back these files up to my iDisk nightly. And having the OS all by itself makes back ups so much easier and smaller. But you have to leave Apple applications on the OS partition in the Applications or Utilities folder or the Apple Updater will not see them.
    Before iTunes and iPhoto would allow you to link to databases that are not on the start up partition, I was aliasing those files from other partitions. Then early 10.5 it didn't work as well, now when you hold the option key prior to starting up in iTunes and iPhoto you'll get a window to go find or create any of many databases to run off of. I have done this for years with Apple, Microsoft, Macromedia, Adobe and many other applications.
    So far my largest OS has been 14.6GB after I installed GarageBand and it loaded a ton of instruments on to the OS partition. I have been through this before and found them and moved them off to another partition and aliased them back and GB works great. Otherwise, even in 10.5.x you can have relatively smaller partitions. And yes you want room to grow, if even just scratch disc space that some applications will not let you choose or go off the OS partition. So I hover around 25-30GB partitions and have never gotten close to getting more that 60% full, fulfilling the 10-15% free space axiom that seems to get larger with every update. I have read here that several people that had taken their machines to an Apple where they replaced drives saying that the techs partitioned the drives and said that the minimum for 10.5.x was 12GB. As the updates flow, that will vary probably up. Plus Apple has some bloated applications and a ton of things that you'll never need or use that take up room that are a pain to find, like unnecessary fonts. A little extra space is always good.
    I use CarbonCopyCloner to make compressed back ups and bootable clones. The older versions would not copy files that would be easily rebuilt when you booted that OS, thus cleaning up the clone/back up by cleaning/omitting files that normally get damaged. Not sure if that is part of the latest versions. I think they copy everything. Another great thing is that Apple installers and Disk Utility and can use them to restore or migrate from. Because of CCC, I now have it down to 10-15 to restore a crashed or failing OS from parts. I have yet to loose anything, except time in having to deal with an OS that sometimes has a mind of its own.
    As you play around as I did when I was waiting for an Apple Tech Rep, and reran the Combo Updater back over a wonky install, to find out if you could do that, it was done and worked great just as he returned and said no one there knew. I told him that I did and it worked great. We kept in touch for a couple of months to see if anything weird happened, which it didn't, and now it is suggested and common practice. Just as the Tech's and I whispered under our breath in the 90's about partitioning. Now they suggest it and Apple will talk to those that have partitioned. As you see needs and experiment you'll learn (trial by fire) and all this will become second nature. So don't think this is too much and go for it. Just make sure before you are completely comfortable, have another drive, I use 25GB Rewritable Blu-ray Discs, to do regular normal, CCC, back ups until you get the hang of it. This method yields 6-8GB compressed archives. Then you'll have a place for your stored back ups and whatnot. I was keeping up to 5 iterations, i.e.: 10.5.1a, b, c, d and e. Once my paranoia subsided I pared it down to two since I could easily recover the small amount that I have to now from small back ups that are mostly aliases relinking files that are safe on other partitions.
    So yes you can put/clone the OS to another partition. Just make sure you cover your bases, use an application made for cloning/backing up (CCC) and label your installs as not to have the same name on two OS's or you'll have a bit of a problem off the top remembering which is which. I'm on 10.5.5C2.
    Good Luck and Happy Partitioning.

  • After i install window 8.1, i can't see window icon in my start up disk, i see only mac icon 10.10, but i can see both mac and win icon in my window boot camp control. i want to see window icon in my mac Yosemite 10.10.2,system preference, start up disk

    After i install window 8.1, i can't see window icon in my start up disk, i see only mac icon 10.10, but i can see both mac and win icon in my window boot camp control. i want to see window icon in my mac Yosemite 10.10.2,system preference, start up disk.

    Third-party NTFS software interferes with the Apple NTFS drivers, which control whether you can see the Bootcamp partition in the Startup Disk option. As a test, can you uninstall all third-party NTFS software and check System Preferences -> Startup Disk?

  • Can I partition a 3tb fusion drive on a 2014 imac27", with boot camp, to let me install windows 7?

    I have used boot camp to create a partition for Windows 7 on 3 earlier Macs (iMac 24" 2007 / Mac Pro 2009 / Macbook Pro 2009) as well as a recent Macbook Air 2012.
    My main reason for this is to use Sage Account/Payroll, and also a couple of other Windows-specific programs.
    I have just replaced the old iMac with a new iMac27", with a 3tb fusion drive, and want to partition it to install a new oem copy of Win 7 sp1.
    However, I found an article on this (link: http://twocanoes.com/winclone/support/installing-windows-on-a-boot-camp-partitio n-on-a-3-tb-fusion-drive) implying this might not currently be officially supported by Apple & boot camp assistant, and providing a workaround procedure to create 3 partitions. The article begins with this note: "Important Note: This help document is for reference only, superceded by updates to OS X that include support for 3TB drives and Fusion drive in Boot Camp Assistant.  Use Boot Camp Assistant to create the Boot Camp partition."
    I have two questions:
    1 - Can anyone advise if updates have now been made, to provide this support for partitioning the 3tb fusion drive?....and if not, is this likely to change soon?
    2 - If this is still not officially supported, can anyone advise if they have successfully created a Windows partition on the 3tb fusion drive & installed Win 7?
    Thanks in advance. 

    Based on Apple's knowledge base. this configuration is supported for Windows 7 x64 and 8 using Mountain Lion 108.3 or higher. Simply use BootCamp Assistant to set it up.
    See here:
      http://support.apple.com/kb/HT5639?viewlocale=en_US&locale=en_US
    and here:
      http://support.apple.com/kb/TS4441
    For your application, you might also consider virtualization software like VMWare Fusion or Parallels.
    I use both BootCamp and VMWare Fusion. Fusion is much easier to install, more flxible, runs at the same time as your Mac applications etc. For typical applications, there is no notable performance degradation.
    If you need high performance graphics for gaming, BootCamp is still the best way to go. For all other applications, I prefer VMWare.

  • How can I partition an external hard drive with data in it? When I select the drive, the partition option is grayed out.

    I am having a problem partitioning an external hard drive with data in it. 
    When I select the partition, everything is grayed out.  I can't add a a partition for some reason.  When I asked this question to other people, they told me to select my partition "io" to do it from there.
    As you can see, I can't seem to partition it form there either.  I ran the Verify Disk utility but the volume came out okay.
    Any ideas as to what the problem would be?
    Thanks!
    Luis

    Select the main hard drive entry (topmost one.) Click on the Partition tab. Shrink the existing partition by grabbing the sizing gadget in the bottom right corner and pushing up until you free up enough space for your second partition. Be sure you do not shrink to less than the space currently occupied by your files. Click on the Add[+] button to create a new partition in the free space. Click on the Apply button and wait until the partitioning is completed.

  • Hi, i have an old imac g4 running 10 .3.9,it has 2 partitions,1st partition has os9 and osx,but would like to put ubuntu on my empty partition,can it be done if so how,thanks for reading,

    hi, i have an old imac g4 running 10 .3.9,it has 2 partitions,1st partition has os9 and osx,but would like to put ubuntu on my empty partition,can it be done if so how,thanks for reading,

    I have my iMac G3 set up with three partitions like you are proposing.
    I'd recommend getting virtual box on your new Mac.  You can install the latest Linux version easier this way.
    The problem is finding a PPC distro you like.  I forget how I configured the Linux boot manager, yaboot.  I may have skipped it or had it installed in the linux partition. 
    Ubuntu
    The Ubuntu folks stopped supporting the power PC a while back.  You will have to install an older version of Ubuntu.
    You may to modify xorg.conf. See:
    http://ubuntuforums.org/showthread.php?t=219532
    Mac G3 modem install Howto
    http://ubuntuforums.org/showthread.php?t=355205
    You may have adjust adjust xorg.conf. See these instructions:
    http://ubuntuforums.org/showthread.php?t=234437
    I was able to get the last official versions of Ubuntu working on my G3 600.
    6.10 Edgy Eft,
    6.06 Dapper Drake
    I used the alternate install and did the alterations noted above.
    These versions are listed at the very bottom of the page.
    https://wiki.ubuntu.com/PowerPCDownloads

  • Can you use Windows 7 to partition a Boot Camp created drive (not just a PC partition on a Mac drive) into multiple PC partitions?

    Can you use Windows 7 to partition a Boot Camp created dedicated PC drive (not just a PC partition on a Mac drive) into multiple PC partitions?

    Can you download this utility, it is a close equivalent of the gpt command, but has more features? (It is more than likely that Windows took over and converted this to an MBR disk).
    http://sourceforge.net/projects/gptfdisk/
    Once you have it installed you run it as follows. You can execute using either /dev/disk1 or /dev/rdisk1 as the parameter.
    type gdisk
    gdisk is /usr/sbin/gdisk
    sudo gdisk /dev/disk0
    Password:
    GPT fdisk (gdisk) version 0.8.9
    Warning: Devices opened with shared lock will not have their
    partition table automatically reloaded!
    Partition table scan:
      MBR: hybrid
      BSD: not present
      APM: not present
      GPT: present
    Found valid GPT with hybrid MBR; using GPT.
    Command (? for help): p
    Disk /dev/disk0: 1954210120 sectors, 931.8 GiB
    Logical sector size: 512 bytes
    Disk identifier (GUID): 6ED0C429-00D1-4759-B50E-04B6FB80D0E3
    Partition table holds up to 128 entries
    First usable sector is 34, last usable sector is 1954210086
    Partitions will be aligned on 8-sector boundaries
    Total free space is 1293 sectors (646.5 KiB)
    Number  Start (sector)    End (sector)  Size       Code  Name
       1              40          409639   200.0 MiB   EF00  EFI System Partition
       2          409640      1452940543   692.6 GiB   AF00  Customer
       3      1452940544      1454210079   619.9 MiB   AB00  Recovery HD
       4      1454211072      1954209791   238.4 GiB   0700  BOOTCAMP
    Command (? for help): q

  • Why can't LR import dialog see images on my flash drive or drive drive.

    Everything was working great and now LR (version 5.6/camera raw 8.6) import dialog cannot see images on my flash drive or on my hard drive.  I'm using a MacBook Pro Retina running on OS X 10.10  There are no issues using the same flash card on my wife's MBP with LR for imports (uses the same LR S/W version and runs on OS X 10.10 as my MBP).  Also, iPhoto and Preview can read and import the Flashcard images just fine.  I'm puzzled.  Does anyone have a solution?
    Message was edited by: Dave Kinghorn

    Thank you i found disk utilities... however i was reading in another area of the community that if I reformat it on my mac that it wont work on a pc.... The whole reason for doing this is so i can give my rough editted footage to my buddy so he can combine all the footage from our unit and make one big video, and he has a pc. Also if reformatting is the cure to this problem how do i know what to reformat it to. It doesnt tell me partition sizes for each option.

  • I can't see two of my internal drives on my mac pro?

    I can't see two of my internal drives on my mac pro?  Any idea's or suggestions on how I can see them again.  They were working last week just fine - Now they don't even show up in the finder? I have video stored on one and the other is just used for extra storage if needed - not really used much.

    A drive that will not show BOTH its Make&Model AND a reasonable Size/capacity in Disk Utility has failed.
    IF Disk Utility can see those things, use (Repair Disk) to attempt to repair its Directory. It takes about five minutes. If it finishes in 10 seconds, it just repaired the Partition Map and nothing else. Select the Macintosh_HD or whatever you renamed the Volume, and (Repair Disk) again.

  • Upgraded to Lion. Can't see files on my backup drive?

    The title pretty much explains my issue, but here is my situation. I use Boot Camp and have a 2TB backup drive with 2 partitions. One partition is 1TB Mac OS Extended (Journaled) to backup OS X with Time Machine and the other is 1TB Windows NTFS to back up Windows 7 with Windows Backup.
    So on the OS X side of things I upgraded from Snow Leopard to Lion. Now I can still backup to the Mac OS Extended (Journaled) partition with Time Machine but I can't see any backups or any files at all that I put on the backup drive while i'm in OS X Lion. I know they are there because When I'm in Windows 7 I can still see all Time Machine backups and all files on both partitions of the backup drive.
    Any Idea why I can't view files on my backup drive anymore since upgrading to Lion or how to fix this issue?

    SOLVED:
    I was reading a post about a similar problem and discovered a free program called TinkerTool. I downloaded it and under the Finder tab was able to check a feature called show all hidden files or something. Once I did this all files on my backup drive were visible but some were greyed out.
    I unchecked this feature and closed TinkerTools then restarted OS X Lion. Everything is back to normal and I can again see and manipulate the files on my backup drive. I'm all set, maybe reading this will help someone else.

  • I can't see an app on my iphone, but when i search i get it. i've made room for the icon to show up on screen, but how do i actually get the icon to appear?

    I can't see an app on my iphone, but when i search i get it. i've made room for the icon to show up on screen, but how do i actually get the icon to appear?

    On your iPad, just go to Settings>Mail, Contacts, etc.>Add account>iCloud and put in the details of the account you set up.  Shouldn't be a problem at all.

  • Is there any way to recover files when the back up catalog has been deleted accidently.  I can see a preview of the photos, but I cannot access or edit them.  They say "the folder cannot be located" and "the photo is missing".  I have gone through multipl

    I can see a preview of the photos, but I cannot access or edit them.  They say "the folder cannot be located" and "the photo is missing".  I have gone through multiple Adobe tutorials to try and recover them to no avail.  Any tips?

    Backup catalogs wouldn't have helped with this problem anyway, but naturally, you shouldn't delete backup catalogs for a while.
    The solution to reconnecting the folders is given here: Adobe Lightroom - Find moved or missing files and folders

  • I have a new iPad with wifi. When I send messages I can see my sons and my husbands but not my phone number.  We all have an iPad and all use the same apple ID as iPad the bill.  How can I remove their numbers and add mine?

    I have a new iPad with wifi. When I send messages I can see my sons and my husbands but not my phone number.  We all have an iPad and all use the same apple ID as iPad the bill.  How can I remove their numbers and add mine?

    Add another e-mail account to your messages, so people could reach you on that e-mail from messages. As soon as you are online (if you have wifi only iPad) you are able to send and receive messages. i.e. your son can send you a messages from his iPhone addressing it to your (that additional) e-mail address.

Maybe you are looking for

  • Can I authorize 2 apple IDs on one computer?

    I'm new to the communities so please bear with me if I post this inappropriately. My husband and I both have iphones.  My two children have itouchs.  My husband has an ipad.  We also have numerous ipods. We have two computers in the house.  When my h

  • Now I'm OK with my 7/14 delivery date.

    After getting my snacks, drink, chair etc, ready to go get in line tomorrow morning at 4:00am, I thought I'd check in here for updates. Boy am I glad I did. After reading of the antenna/reception issue, some with screen blotches as well as other issu

  • What's in your wallet?

    Many of us have multiple cards, but how many of those do we actually carry with us everywhere?  What cards do you carry everywhere and what cards do you keep in the drawer and why?

  • Clean installed 10.8 but it the notification bar has errors, launch pad launches at the speed of a frame a minute.

    I clean installed os 10.8 from 10.7.4 which my iMac came with. Now launch pad launches at a frame rate of like a frame per minute, the notification bar pops up with red unstable looking stuff... Sorta like red snow but now so much. Don't know what to

  • I get an error message on Lynx, can someone tell me what this means?

    When I check my home page on lynx I get what I would expect 2 links to 2 galleries below that the alt text for my logo and the photograph, and the footer info with an e-mail link.  If I click any link I get a message "Bad Request - Your browser sent