speedfreak007
Apr 18, 09:12 AM
Hey,
I installed windows 7 sp1 64 bit on my 27" iMac i3 today. Then I updated to boot camp 3.2 and i have the following problems:
-no aero (ati hd isn't recognized, can't go higher than 1920x1440 resolution). I even installed latest drivers from ATI's website
-no sound
-bluetooth pairing was gone, couldn't use mouse and keyboard. I've managed to solve this
Can someone help me to solve these problems (specially the ati driver problem because that resolutions isn't watchable and graphics performance isn't what it should be).
Thx!
I installed windows 7 sp1 64 bit on my 27" iMac i3 today. Then I updated to boot camp 3.2 and i have the following problems:
-no aero (ati hd isn't recognized, can't go higher than 1920x1440 resolution). I even installed latest drivers from ATI's website
-no sound
-bluetooth pairing was gone, couldn't use mouse and keyboard. I've managed to solve this
Can someone help me to solve these problems (specially the ati driver problem because that resolutions isn't watchable and graphics performance isn't what it should be).
Thx!
more...
vincenz
Apr 3, 12:13 AM
You're almost making it sound like you're actually planning to lose your phone.
more...
nomad01
Sep 20, 02:39 AM
UK Store just came back online... I don't see anything different
Worst update EVER. :D
Worst update EVER. :D
more...
Josh396
Dec 24, 02:03 AM
The look is much better.
more...
OPTiK
Mar 13, 11:45 AM
Are you using this:
http://www.newsden.net/jailbreak-ios-4-3-with-pwnagetool-bundles-custom-firmware-7130/
I was using this guide: http://www.redmondpie.com/jailbreak-ipad-4.3-ios-final-gm-with-pwnagetool-how-to-guide/ ...but i just came across this guide that i may try out today: http://www.redmondpie.com/jailbreak-4.3-on-windows-iphone-4-3gs-ipad-ipod-touch-using-sn0wbreeze-how-to-guide/
http://www.newsden.net/jailbreak-ios-4-3-with-pwnagetool-bundles-custom-firmware-7130/
I was using this guide: http://www.redmondpie.com/jailbreak-ipad-4.3-ios-final-gm-with-pwnagetool-how-to-guide/ ...but i just came across this guide that i may try out today: http://www.redmondpie.com/jailbreak-4.3-on-windows-iphone-4-3gs-ipad-ipod-touch-using-sn0wbreeze-how-to-guide/
more...
jsw
Sep 19, 08:40 PM
If you're buying at an actual Apple Store, then, sadly, you can't upgrade anything for the PBs (except buy very overpriced RAM). If the deal you're getting is a good one, I'd just accept the smaller drive and maybe buy an external.
However, are you sure you can't order online?
However, are you sure you can't order online?
more...
KillersKiss
Jan 25, 10:01 AM
How can I convert mp4 files to mp3?
more...
fighter planes amp;and military
more...
149 Airplane Wallpapers
more...
wallpapers Fighter Plane
more...
Wallpapers – Serve Plane 2 is
more...
Fighter Plane Wallpapers
more...
Aircraft Wallpaper
more...
Wallpaper image: Aircraft
more...
jackerin
Apr 27, 10:44 AM
I think in general a slightly older upper-level body is a better investment than a modern entry-level. I got a 40D recently (for not much more than what I paid for my first DSLR, a 1000D) and I'm loving it so far. Only thing I could see a modern entry-level would bring me is more megapixels.
Macro and landscapes are pretty different areas though, and not that likely to share suitable lenses. What I would do is to try first with the 18-55 for landscapes (plus tripod), then couple it with macro extension rings for macro work.
Macro and landscapes are pretty different areas though, and not that likely to share suitable lenses. What I would do is to try first with the 18-55 for landscapes (plus tripod), then couple it with macro extension rings for macro work.
more...
Gurutech
Mar 27, 05:05 PM
what's the point of playing mmorpg on emulated server?
It's highly unlikely that you will get updated fast enough. Also it's highly unreliable.
Also, there is very high possibility of unfairness.
It's highly unlikely that you will get updated fast enough. Also it's highly unreliable.
Also, there is very high possibility of unfairness.
more...
JackAxe
Apr 10, 09:40 PM
^ I just hope some more AAA games come out for it. I am nearing the end of Zelda...
If anything, EA,Take Two Interactive, and Activision are in a frenzy to make Wii games. The console's success really caught them off guard.
AAA = Super Paper Mario!!! :D
<]=)
If anything, EA,Take Two Interactive, and Activision are in a frenzy to make Wii games. The console's success really caught them off guard.
AAA = Super Paper Mario!!! :D
<]=)
more...
luckyblue
Sep 8, 07:19 PM
I think you mean labels not studios. Most of the people working at studios work very hard for not much pay.
+1
He must have meant labels. Studios don't make hardly squat, and are not commissioned on sales.
+1
He must have meant labels. Studios don't make hardly squat, and are not commissioned on sales.
more...
MayPeng
Apr 19, 11:12 PM
I have a hid device , because its class is 0x03. I use HIDManager and IOServiceMatching(kIOHIDDeviceKey), both can't find device, whether the kernel don't have matching driver, and I must write a hid device driver?
Main code:
method 1:
IOHIDManagerRef mgr;
mgr = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDOptionsTypeNone);
IOHIDManagerSetDeviceDeviceMatching(mgr, NULL);
IOHIDManagerOpen(mgr, kIOHIDOptionsTypeNone);
CFSetRef device_set = IOHIDManagerCopyDevices(mgr);
CFIndex num_devices = CFSetGetCount(device_set);
....
method 2:
io_iterator_t hidObjectIterator;
CFMutableDictionaryRef hidMatchingDict= IOServiceMatching(kIOHIDDeviceKey);
//add my device pid and vid to hidMatchingDict
.....
IOServiceGetMatchingServices(,,hidObjectIterator);
io_object_t hidDevice;
while(hidDevice = IOIteratorNext(hidObjectIterator))
{...}
As a result, hidDevice = 0;
Main code:
method 1:
IOHIDManagerRef mgr;
mgr = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDOptionsTypeNone);
IOHIDManagerSetDeviceDeviceMatching(mgr, NULL);
IOHIDManagerOpen(mgr, kIOHIDOptionsTypeNone);
CFSetRef device_set = IOHIDManagerCopyDevices(mgr);
CFIndex num_devices = CFSetGetCount(device_set);
....
method 2:
io_iterator_t hidObjectIterator;
CFMutableDictionaryRef hidMatchingDict= IOServiceMatching(kIOHIDDeviceKey);
//add my device pid and vid to hidMatchingDict
.....
IOServiceGetMatchingServices(,,hidObjectIterator);
io_object_t hidDevice;
while(hidDevice = IOIteratorNext(hidObjectIterator))
{...}
As a result, hidDevice = 0;
more...
DewGuy1999
Apr 29, 07:46 AM
As someone else mentioned, try running Disk Utility Repair Disk off of your install disc (while booted off it). Or, just reformat (which will erase the contents). The correct format would be "Mac OS Extended". That should give you a clean slate, provided there are no hardware issues (with the drive, in particular). Memory problems would show with different symptoms.
If those are the original discs, it should work. Though, from what I can find on the earliest model (desk lamp style), the minimum it shipped with was 10.1.3. If it was any later model, it should have shipped with 10.2. Original discs should be grey.
10.4, Tiger, should work just fine on that model. I used to run it on a slower 667MHz PowerBook.
According to EveryMac.com Apple iMac G4/700 (Flat Panel) Specs (http://www.everymac.com/systems/apple/imac/stats/imac_700_fp.html) shipped with 9.2.2 & X 10.1.2. Since we haven't been given any more info than it's a G4 iMac it's kind of hard to make specific recommendations.
If those are the original discs, it should work. Though, from what I can find on the earliest model (desk lamp style), the minimum it shipped with was 10.1.3. If it was any later model, it should have shipped with 10.2. Original discs should be grey.
10.4, Tiger, should work just fine on that model. I used to run it on a slower 667MHz PowerBook.
According to EveryMac.com Apple iMac G4/700 (Flat Panel) Specs (http://www.everymac.com/systems/apple/imac/stats/imac_700_fp.html) shipped with 9.2.2 & X 10.1.2. Since we haven't been given any more info than it's a G4 iMac it's kind of hard to make specific recommendations.
more...
parapup
May 2, 06:52 PM
1- Is it worth doing an SSD optibay upgrade? I figure it will cost me around 350 bucks, which is a almost a 3rd of an Air. Thoughts?
I did this recently on my 17" and it was totally worth it. I used OWC Data Doubler and 256Gb Corsair SSD from my old laptop. For a 115Gb SSD and Mounting kit - $229 + 75.
more...
fail plane
more...
Fighter Plane Wallpapers
more...
AeroPlane Wallpapers
more...
Plane Wallpaper 7
more...
Fighter Plane Wallpapers
Reacent Post
I did this recently on my 17" and it was totally worth it. I used OWC Data Doubler and 256Gb Corsair SSD from my old laptop. For a 115Gb SSD and Mounting kit - $229 + 75.
more...
pazreal
Mar 18, 10:39 PM
Did you already have an iPhone that you then used the packaging from for this refurb?
more...
dornoforpyros
Aug 18, 11:08 AM
anyway, i simply wanted an alternative page to direct specific ad runs to as opposed to a blog posting. and while you may not find a coldplay ad interesting - 22,000 other people did. :)
hehe yeah, personally I will never understand the appeal of coldplay. I think the best review I ever read about one of there shows was "Coldplay is a sugar overdose for the masses" :p
hehe yeah, personally I will never understand the appeal of coldplay. I think the best review I ever read about one of there shows was "Coldplay is a sugar overdose for the masses" :p
more...
kainjow
Jun 19, 02:11 PM
Congrats everyone!
Now let the bragging begin
Not only do you have the coveted contest badge by your name, you also have an avatar before reaching 500 posts. Impressive :cool:
Now let the bragging begin
Not only do you have the coveted contest badge by your name, you also have an avatar before reaching 500 posts. Impressive :cool:
more...
waterskier2007
Jun 24, 01:19 PM
hey i had said i wanted those but its fine, u can sell them to the other guy
more...
miles01110
Feb 8, 11:05 AM
Will the mods entertain changing to [Resolved] status upon a request to do so in a post report?
Azzin
Mar 15, 01:06 PM
The best plan is to use iTunes to rip the CDs. First go to preferences and set the defalt files type to "Apple lossless". Then you feed in the CDs one at a time and they go straight into iTunes get tagged and it's simple. Some times tagging fails if youhave a rare CD that is not in the database then thr must type in the info.
All good, thanks.
To get files you've already ripping into iTunes just do File->Import Folder and iTunes will copy the tracks in the that folder. If thse tracks are tagged it will copy the tags if untagged you willhave to type in the data. It may be easier to re-rip them frominside iTunes than type in all that data
iTunes will presumably read the folders that have WAV files in them, but what about the FLAC files?
All good, thanks.
To get files you've already ripping into iTunes just do File->Import Folder and iTunes will copy the tracks in the that folder. If thse tracks are tagged it will copy the tags if untagged you willhave to type in the data. It may be easier to re-rip them frominside iTunes than type in all that data
iTunes will presumably read the folders that have WAV files in them, but what about the FLAC files?
DJ Al B Bad
Apr 20, 03:25 PM
I own both versions (iPhone & iPad) this is a great app on sale or at the full price which I paid - Go get it!
alvindarkness
Apr 8, 11:20 AM
I've heard from AppleInsider that TRIM is long due to the macs and that Apple will enable TRIM support in Lion update...
After I've installed an Intel x25-m G2 SSD onto my 2010 MBP 13", the benchmarks were low compared to that on Windows platform. I also noticed the Apple's own stock SSD (mostly Toshiba or Samsung) have aggressive GC, but their read/write speeds are off compared to many decent SSD's on the market, like sandforce powered OCZ Vertex 3, or intel G3.
Funny thing is that Apple's own solid state drives has their own GC, and enables TRIM on-the-fly, as reported by Anandtech, but I wasn't very sure.
Has anyone have any ideas if and when TRIM will be implemented on macs, since it is really needed for people with SSD's in their macs?
TRIM is already implemented on Lion. You can even enable it on 10.6.7 if you use the IOAHCIFamily.kext from a 2011 MBP.
The trick is that both Lion and 10.6.7 (using the MBP 2011 kext above) look for an SSD with the model name "APPLE SSD". What you need to do is hex edit IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage and replace the two instances of "APPLE SSD" with the first 9 character of your SSD drive as it appears in system profiler. (In my case "OCZ-VERTE").
Theres a lot more information here -> http://forum.hardmac.com/index.php?showtopic=10020
And heres confirmation that it does indeed work (this is a snow leopard pic, Ive also done this in Lion).
280293
The real question is, wether this is a stop-gap measure, or if Apple intend to continue this trend into the future and only support trim on native apple ssd's. Would be nice to not have to load a hex editor after every delta/combo update.
After I've installed an Intel x25-m G2 SSD onto my 2010 MBP 13", the benchmarks were low compared to that on Windows platform. I also noticed the Apple's own stock SSD (mostly Toshiba or Samsung) have aggressive GC, but their read/write speeds are off compared to many decent SSD's on the market, like sandforce powered OCZ Vertex 3, or intel G3.
Funny thing is that Apple's own solid state drives has their own GC, and enables TRIM on-the-fly, as reported by Anandtech, but I wasn't very sure.
Has anyone have any ideas if and when TRIM will be implemented on macs, since it is really needed for people with SSD's in their macs?
TRIM is already implemented on Lion. You can even enable it on 10.6.7 if you use the IOAHCIFamily.kext from a 2011 MBP.
The trick is that both Lion and 10.6.7 (using the MBP 2011 kext above) look for an SSD with the model name "APPLE SSD". What you need to do is hex edit IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage and replace the two instances of "APPLE SSD" with the first 9 character of your SSD drive as it appears in system profiler. (In my case "OCZ-VERTE").
Theres a lot more information here -> http://forum.hardmac.com/index.php?showtopic=10020
And heres confirmation that it does indeed work (this is a snow leopard pic, Ive also done this in Lion).
280293
The real question is, wether this is a stop-gap measure, or if Apple intend to continue this trend into the future and only support trim on native apple ssd's. Would be nice to not have to load a hex editor after every delta/combo update.
mkrishnan
Jan 10, 09:49 PM
Here's info on what the freaky thing does:
http://www.macosxhints.com/article.php?story=20031010141631859
http://www.macosxhints.com/article.php?story=20031010141631859
dlegend
Sep 15, 11:18 PM
Holy crap, that program is amazing. I just tried it out on a song that was labeled ZHFR from when I transferred music back from my ipod to my hard drive (long story) and it figured out exactly what it was. Craziest part is there was no tagging besides the 4 letters and it was an a cappella version from my college.
Totally buying this tomorrow when I'm by my credit card.
Totally buying this tomorrow when I'm by my credit card.
0 comments:
Post a Comment