nodes in neck
sleepykidd
Apr 23, 07:44 AM
You can't use a disk that came with another mac. You need to use a full retail version. Also you will need to do a clean install, you can't do an upgrade install coming from Tiger.
Will I be able to put the retail version on a flash drive? Because my dvd drive is pretty much busted.
Would it be possible just to clone my Macbook 6,1 HDD and restore it to the HDD on the 1,1?
Will I be able to put the retail version on a flash drive? Because my dvd drive is pretty much busted.
Would it be possible just to clone my Macbook 6,1 HDD and restore it to the HDD on the 1,1?
JSage
Mar 18, 04:26 PM
Just got back from best buy croydon. Asked a guy about the launch. He said they will be selling at 5pm and has no idea of stock levels
Not sure i'll be there at 4am!!!
This doesn't bode well if true :(
link (http://forums.macrumors.com/showthread.php?t=1107373&page=31)
Not sure i'll be there at 4am!!!
This doesn't bode well if true :(
link (http://forums.macrumors.com/showthread.php?t=1107373&page=31)
mrichmon
Dec 16, 07:48 PM
I pulled out the battery but there is no AirPort "door" as described in the document. What should I do now? :confused:
On the Aluminium powerbooks the airport card is not user replacable part. It sounds like the antenna cable is not connected as other posters have said. This is a 10-15 minute fix and your local Apple store will probably do it as you wait.
To answer your earlier question, according to the apple service manual disconnecting the airport antenna is a required step when replacing a display since the airport antenna cable crosses over the top of the main display data cable.
On the Aluminium powerbooks the airport card is not user replacable part. It sounds like the antenna cable is not connected as other posters have said. This is a 10-15 minute fix and your local Apple store will probably do it as you wait.
To answer your earlier question, according to the apple service manual disconnecting the airport antenna is a required step when replacing a display since the airport antenna cable crosses over the top of the main display data cable.
Queen of Spades
May 2, 02:02 PM
If you search this forum or use MRoogle and type in Optibay, you get some threads that will likely be useful to you. Here you go:
Selecting an adapter to install a second drive in the optical bay (http://forums.macrumors.com/showthread.php?t=1145045&highlight=optibay)
MCE Optibay Alternative CHEAP (http://forums.macrumors.com/showthread.php?t=680228&highlight=optibay)
Where to get optibay? (http://forums.macrumors.com/showthread.php?t=1104431&highlight=optibay)
Optibay Alterntatives? (http://forums.macrumors.com/showthread.php?t=1059717&highlight=optibay)
Selecting an adapter to install a second drive in the optical bay (http://forums.macrumors.com/showthread.php?t=1145045&highlight=optibay)
MCE Optibay Alternative CHEAP (http://forums.macrumors.com/showthread.php?t=680228&highlight=optibay)
Where to get optibay? (http://forums.macrumors.com/showthread.php?t=1104431&highlight=optibay)
Optibay Alterntatives? (http://forums.macrumors.com/showthread.php?t=1059717&highlight=optibay)
iwoodworkshop
Apr 15, 10:48 AM
What size is that, it looks like 15"? Also can you get anything else in there or just the Mac?
This is the 13inch one, but i have also made them for the 15" and 17" macbooks.
Funny thing is that most of my customers use it as a regular briefcase/suitcase, I also made them in custom sizes.
Nicely done.
Wondering if you can make an angry bird version, something like this.
Will be a special gift this Xmas
http://www.buyfrompowerseller.com/product_images/uploaded_images/macbook-angry-bird-leather-case-cover.jpg
It can be done, providing thet the owners of Angry birds do not have a problem with this.
This is the 13inch one, but i have also made them for the 15" and 17" macbooks.
Funny thing is that most of my customers use it as a regular briefcase/suitcase, I also made them in custom sizes.
Nicely done.
Wondering if you can make an angry bird version, something like this.
Will be a special gift this Xmas
http://www.buyfrompowerseller.com/product_images/uploaded_images/macbook-angry-bird-leather-case-cover.jpg
It can be done, providing thet the owners of Angry birds do not have a problem with this.
mikes63737
Apr 21, 07:38 AM
I'm excited to get my MacBook Pro (probably this week) and start on it...although the F@H website does not have an Intel version yet.
Would it be possible to run the Linux version on your MBP? Linux and BSD (Which Mac OS X is based on) are very similar.
Would it be possible to run the Linux version on your MBP? Linux and BSD (Which Mac OS X is based on) are very similar.
Applejuiced
Mar 14, 01:03 PM
This joke is funny and not over used at all. My favorite part is when you take a shot at the dev team and make your release date a long time away.
Apparently you're one of those guys who believes that the dev team owes you a jailbreak. Honestly if I had one I'd troll all the people like you, who tell the dev team they suck and go ahead and use their jailbreak anyway.
Well said.
Apparently you're one of those guys who believes that the dev team owes you a jailbreak. Honestly if I had one I'd troll all the people like you, who tell the dev team they suck and go ahead and use their jailbreak anyway.
Well said.
homerjward
Dec 5, 11:04 PM
wow...that code is really messy, but the site looks great!
i'm not entirely sure which boxes you're talking about either. html code really isn't all that scary in fact. once you know a few basic tags and such it's pretty easy. like here's the code to make a really basic page that says "hello world" in helvetica, size 5, green, and centered. oh, and with a title.
<html>
<head>
<title>Hi</title>
</head>
<body>
<center>
<font face="helvetica" size="5" color="green">Hello World</font>
</center>
</body>
</html>
the <html> tag tells the browser to start an html document, the <head> tells it that there's information about the page that won't be displayed in the page, the <title> opens a tag that says what to display in the title bar, the </title> says that the title is finished. the </head> says that the info about the page is done. the <body> tells what to display, basically. the <center> tells it to center the following info, the <font> tag, along with the attributes face, size, and color, and the values helvetica, 5, and green tell it how to style the text. "Hellow World" tells it the text to display. </font> tells it that that's the end of the text styled that way. </center> stops text after that from being centered, </body> ends the main info, and </html> closes the document. in general to open a tag it goes like <tag> and to close it it's <tag> and to define attributes and values it's <tag attribute="value"> and then </tag> there are, of course, exceptions...
knowing the basics of the code and such can really help you simplify the code that golive generates, and a lot of things are easier, imo, to do by hand than in golive. link targets, for example. for the life of me i cant figure out how to get a link to open in an iframe in golive without going into the source...:rolleyes:
sorry for the long post :o
i'm not entirely sure which boxes you're talking about either. html code really isn't all that scary in fact. once you know a few basic tags and such it's pretty easy. like here's the code to make a really basic page that says "hello world" in helvetica, size 5, green, and centered. oh, and with a title.
<html>
<head>
<title>Hi</title>
</head>
<body>
<center>
<font face="helvetica" size="5" color="green">Hello World</font>
</center>
</body>
</html>
the <html> tag tells the browser to start an html document, the <head> tells it that there's information about the page that won't be displayed in the page, the <title> opens a tag that says what to display in the title bar, the </title> says that the title is finished. the </head> says that the info about the page is done. the <body> tells what to display, basically. the <center> tells it to center the following info, the <font> tag, along with the attributes face, size, and color, and the values helvetica, 5, and green tell it how to style the text. "Hellow World" tells it the text to display. </font> tells it that that's the end of the text styled that way. </center> stops text after that from being centered, </body> ends the main info, and </html> closes the document. in general to open a tag it goes like <tag> and to close it it's <tag> and to define attributes and values it's <tag attribute="value"> and then </tag> there are, of course, exceptions...
knowing the basics of the code and such can really help you simplify the code that golive generates, and a lot of things are easier, imo, to do by hand than in golive. link targets, for example. for the life of me i cant figure out how to get a link to open in an iframe in golive without going into the source...:rolleyes:
sorry for the long post :o
wrldwzrd89
Jan 13, 05:20 AM
hi recently ive been getting this error message everytime I try and download something from Safari. does anyone know how to solve this problem?? i attached a snapshot of the error message, hope the picture works!
Looking at your error message, it looks like your Safari installation is corrupted. Unfortunately, there's no easy way to fix this - what's needed is a reinstall of Safari, but doing that is easier said than done due to the way Apple sometimes bundles Safari updates along with operating system updates. If you're using Mac OS X 10.3.7, download the Mac OS X Combined Update 10.3.7 (http://www.apple.com/support/downloads/macosxcombinedupdate_10_3_7.html) (warning, it's a 97 MB file) and install it - it includes a Safari update, which MIGHT fix your issue. Otherwise, I'm not sure how to help, since I've lost touch with Mac OS X versions older than 10.3.
Looking at your error message, it looks like your Safari installation is corrupted. Unfortunately, there's no easy way to fix this - what's needed is a reinstall of Safari, but doing that is easier said than done due to the way Apple sometimes bundles Safari updates along with operating system updates. If you're using Mac OS X 10.3.7, download the Mac OS X Combined Update 10.3.7 (http://www.apple.com/support/downloads/macosxcombinedupdate_10_3_7.html) (warning, it's a 97 MB file) and install it - it includes a Safari update, which MIGHT fix your issue. Otherwise, I'm not sure how to help, since I've lost touch with Mac OS X versions older than 10.3.
dmr727
Apr 12, 08:45 PM
^^^ I used to have that phone when I was kid. :)
Sweet machines, man. And I'm glad to see System 6 installed on a least one of them - I'm a big believer of running 6 if the machine supports it.
Sweet machines, man. And I'm glad to see System 6 installed on a least one of them - I'm a big believer of running 6 if the machine supports it.
wchong
Jun 10, 10:38 AM
could you explain why you posted this question in the macbook pro forum?
well many people thought that the first bridge was for iphone +SDK and the second bridge for mac hardware updates.
well many people thought that the first bridge was for iphone +SDK and the second bridge for mac hardware updates.
Designer Dale
Mar 22, 02:42 PM
ISO, Gain Factor, Sensitivity, blah, blah, blah.
Whatever word/phrase one uses, it would still need to be defined.
Or one could put the cam on auto ISO and put a piece of electrical tape over the ISO button :)
Shocking!
Dale
Whatever word/phrase one uses, it would still need to be defined.
Or one could put the cam on auto ISO and put a piece of electrical tape over the ISO button :)
Shocking!
Dale
minik
Jan 14, 07:02 PM
I love the holiday. However, Santa 'Jobs' won't come until MacWorld.
Of course, it's heaven when fans are able to watch the Keynote live or be a part of the MacWorld Expo hype.
Of course, it's heaven when fans are able to watch the Keynote live or be a part of the MacWorld Expo hype.
sidgriffey
Mar 16, 12:11 PM
I have a 2007 Macbook Pro Core 2 Duo 2.4GHz with a 40GB SSD that I boot snow leopard and apps from and a 160GB HDD that is in an optibay and stores my data/ holds my home folder (i.e., my superdrive is in an external enclosure).
If I want to install Lion, what is the best way for me to do this without losing my snow leopard setup? I have some 25GB left on the SSD last time I checked. Should I partition it? If I have a Mac Mini with snow leopard and all my stuff should I just install Lion clean over snow leopard on my MBP or is Lion too buggy?
Thanks.
If I want to install Lion, what is the best way for me to do this without losing my snow leopard setup? I have some 25GB left on the SSD last time I checked. Should I partition it? If I have a Mac Mini with snow leopard and all my stuff should I just install Lion clean over snow leopard on my MBP or is Lion too buggy?
Thanks.
Pillar
Oct 3, 08:25 PM
cool, i like those hand shaped ones. some of the other are cool aswell
MacRumors
Sep 28, 03:45 PM
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com)
Apple has released updates to the members of the iWork '06 suite via Software Update. The updates include:
Keynote 3.0.2 (2.7MB) - download page (http://www.apple.com/support/downloads/keynote302.html)
This update addresses compatibility for accessing Aperture 1.5 content in Keynote.
Pages2.0.2 (2.7MB) - download page (http://www.apple.com/support/downloads/pages202.html)
This update addresses compatibility for accessing Aperture 1.5 content in Pages.
iLife '06 (http://www.macrumors.com/pages/2006/09/20060928163522.shtml) was updated today as well.
Apple has released updates to the members of the iWork '06 suite via Software Update. The updates include:
Keynote 3.0.2 (2.7MB) - download page (http://www.apple.com/support/downloads/keynote302.html)
This update addresses compatibility for accessing Aperture 1.5 content in Keynote.
Pages2.0.2 (2.7MB) - download page (http://www.apple.com/support/downloads/pages202.html)
This update addresses compatibility for accessing Aperture 1.5 content in Pages.
iLife '06 (http://www.macrumors.com/pages/2006/09/20060928163522.shtml) was updated today as well.
nicname
Apr 13, 11:30 PM
love the slider's look, feel, and protection but hate the weight it adds and that its not the easiest of cases to slide in and out of my pocket.
Anyone know any cases similar with a tight fit on the phone and protective enough like the slider but a little lighter?
Anyone know any cases similar with a tight fit on the phone and protective enough like the slider but a little lighter?
Sherifftruman
May 5, 01:56 PM
There also should be more members with a sense of humor in this forum.
I find the picture funny, though I have to admit it was way funnier 10 months ago when it was posted all over the net including Gizmodo and Engadget IIRC. ;)
I find the picture funny, though I have to admit it was way funnier 10 months ago when it was posted all over the net including Gizmodo and Engadget IIRC. ;)
WillEH
Apr 8, 08:09 PM
Sounds fishy. I'm guessing he will dispute. If you are 100% sure you sent him i5, I wouldn't let him try and fool you. If you have serial number you should be okay. But I have never come across this sort of "scam" before. Crazy. It's best to contact eBay and ask them what to do.
Biff...
Feb 22, 04:21 PM
Good time to buy in my book. Apple stock in particular, especially because of all the release events in the pipe line this year.
Rodimus Prime
Dec 29, 01:07 AM
I find often times the store makes the bundles. Pisses me off to no end. I do not mind if MS throws the game in for free but like you I hate bundles.
I know with the Wii it was the stores making the bundles making you buy all the extra games for it. After that I have noticed that they tend to do it more and more often so people will just settle and buy the bundles.
I know with the Wii it was the stores making the bundles making you buy all the extra games for it. After that I have noticed that they tend to do it more and more often so people will just settle and buy the bundles.
pcypert
Mar 16, 08:47 PM
I'm going to give it another shot. Didn't do much for me on the Playstation, bu then I got it at the same time as FF7 and the original Resident Evil (and Parrapa the Rappa :) ) so it didn't get much play time...
Paul
Paul
hansolo669
Mar 22, 08:27 PM
may it rest in peace....
getting that many years is a true testamony to apples hardware desgin and manufactureing process(now if only producs from china could claim the same longevity :rolleyes: )
getting that many years is a true testamony to apples hardware desgin and manufactureing process(now if only producs from china could claim the same longevity :rolleyes: )
Blu101
Oct 15, 11:43 PM
Thanks :D
0 تعليقات:
إرسال تعليق
الاشتراك في تعليقات الرسالة [Atom]
<< الصفحة الرئيسية