Newbie to Mac, with a Stupid Question

Ok, I just bought and received my first Mac, a MacBook, two days ago (Windows Vista Victim). So far, it's going ok, but I'm still on the learning curve.
Here's my stupid question: What is the function of the four keys on the lower left corner (first row) of the keyboard? The first one says "fn", then "ctrl", then "alt/option", and then the Apple logo with another symbol. I'm sure I would get around to finding out, but a kickstart from you guys would be nice.
Thanks in advance!
Dirk in Florida
MacBook   Mac OS X (10.4.9)  

thats used for various reasons,
fn= on windows side fn + the volume button makes ur sound go up, down or off
ctrl=is used for editing purposes for windows platform, for example, ctrl + c = copy
Alt\options= its usually used for switching platforms on start up for example, what your computer is starting up hold options and it will ask u what to start up on
The apple button= on macintosh platform it allows you to do various short cuts (like the ctrl button on windows) for example, apple button + q = quit
Ok? if u have any other questions just ask

Similar Messages

  • Please help with a stupid question on networing 2 macs

    I have a MacPro and a MAC book pro with and airport n base station. In the past, the books for my G4 and G5 told me how to network the macs with peer to peer so I can access any drive of one machine from the other.
    I can't find out how to do that. Can you send me to a white paper. I don't have the G4 and G5 anymore, and can see the drop boxes on both new macs but I can't access them. I don't have permission. Have the setup procedures changed?
    I also want to be able to connect my same MPB to a Power Mac at work.
    I know this is rudimentary, but in Snow Leopard I am having trouble finding how to do it. I didn't spend a lot of time on leopard, but spent three years on tiger.
    Cheers.

    Here's some help:
    File Sharing on Macs
    Mac 101- File sharing
    You have a home network setup so everything you need is in place. Also select Mac Help from the Finder's Help menu and search for "file sharing."

  • Newbie with Macs with alot of questions

    Ok.. I am a PC guy and never worked with a MAC before.
    I have a Ibook POWER PC G3
    Memory 256 MB SDRAM
    MAC OSX Version 10.4.11
    I believe it has 12GB of space left on the main hdd.. I am not that sure again, because I am not used to MACS
    First question is the time will never stay set. Whenever I turn it on, it will tell me that the time is not set.
    Secondly, I believe the battery is not good at all.. Whenever i unplug the power cable, it cuts off.
    Are the two issues related??
    I am thinking of upgrading the ram and the HDD in this MAC. Is it feasible or it it a lost cause?
    I also want to upgrade the OS on it to the latest one. Is it possible or should I leave the OS as is?
    Does it have an internal wireless card?? I am thinking it does not, but I am not that sure. How do I find out??
    Does it uses the same type of ram sticks that is found in a windows laptop??
    Thanks for all of your assistance once again...

    Hi, and welcome to Apple Discussions.
    First question is the time will never stay set. Whenever I turn it on, it will tell me that the time is not set.
    Secondly, I believe the battery is not good at all.. Whenever i unplug the power cable, it cuts off.
    Are the two issues related??
    Yes. There is no secondary battery in the iBook to hold the settings, so if the main battery is no good, the setting will not hold for more than a few seconds after it is shut down. (A capacitor holds the settings long enough to swap out batteries if you have more than one battery to use with it.)
    I am thinking of upgrading the ram and the HDD in this MAC. Is it feasible or it it a lost cause?
    The RAM is absolutely upgradeable. You can upgrade the RAM with a 512 MB module which will replace the 128 MB module which currently occupies the one user-accessible RAM slot. It takes a 144-pin 3.3 V, PC100 or PC133 compliant, 1.25 inch SDRAM SO-DIMM available here:
    http://eshop.macsales.com/shop/memory/iBooks-PowerBooks/G3-iBook/
    Instructions for replacing the memory card can be found in this Apple Knowledge Base article:
    http://docs.info.apple.com/article.html?artnum=111918
    A hard drive upgrade is a complicated procedure, and not recommended unless you really know your way around such things. You almost have to completely disassemble the iBook to do it.
    Assuming it is the 12-inch model, here is the link to instructions:
    http://www.ifixit.com/Guide/Repair/iBook-G3-12-Inch-Hard-Drive/130/1
    I also want to upgrade the OS on it to the latest one. Is it possible or should I leave the OS as is?
    Mac OS X 10.4.11 is the best that an iBook G3 can do.
    Does it have an internal wireless card?? I am thinking it does not, but I am not that sure. How do I find out??
    Maybe or maybe not? Click on the Apple logo at the top left of the display and select "About This Mac." Then click on "More Info." This brings up the System Profiler and it will tell you whether or not an original AirPort Card is installed. While you're there, find out which exact iBook it is and tell us so we are better able to assist you. (Processor MHz rating and type of optical drive will do it.)
    Does it uses the same type of ram sticks that is found in a windows laptop??
    It uses the same type of RAM found in some Windows laptops. (See specific info above.)
    In order to find out the size of the hard drive and how much space remains available on it, go to Applications > Utilities > Disk Utility. You can check the S.M.A.R.T. Status of the drive here, and also its specs (total capacity and available space).
    Good luck with it, but keep in mind that it is a very old computer, so don't expect a whole lot from it. Apple discontinued G3 iBooks seven years ago.

  • URL: newbie needs help with simple programming question!

    Hi everyone,
    Please direct me to a FAQ or other resource, or help me with this problem:
    I want to create a text field (or similar container) that contains both ordinary text AND a URL/hyperlink in it. For example, the following text might appear in the text field:
    "I have many _pictures_ from my vacation"
    where the word "pictures" is actually a hyperlink to a web site, and the other portions of the string are simple text.
    All advice and help is appreciated!
    -Dennis Reda
    [email protected]

    Well here is one way you code do it but if you do alittle research on them links above it will explain how this code works.Well it will explain how jeditorpane and hyperlinklistener work
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.event.*;
    import java.net.*;
    public class b extends javax.swing.JApplet implements HyperlinkListener  {
       JEditorPane field = new JEditorPane();
      public b() {
        Container pane = getContentPane();
        FlowLayout flo = new FlowLayout();
        pane.setLayout(flo);
        field.setPreferredSize(new Dimension(200, 25));
        field.setEditable(false);
        pane.add(field);
        setContentPane(pane);
         String gg1 = "<html><body>I have many_<a    href='http://www.home.com'>pictures</a>_from my vacation</body></html>";
         field.addHyperlinkListener(this);
         field.setContentType("text/html");
         field.setText(gg1);
      public void hyperlinkUpdate(HyperlinkEvent e) {
         if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
          try{
            URL url = new URL("http://www.msn.com");
            getAppletContext().showDocument(url,"_self"); 
            }catch(Exception r) {};
      public void init()  {
         b c = new b();
    ps hope this helped                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Hi! This might be a stupid question, but I just bought an IPod G5 60 GB. When you firstconnect your IPod you have to setup your ID. I'm using my brothers computer, who has an IPod too, so now I'm wondering when I set up my ID with his Itunes does his Ip

    Hi!
    This might be a stupid question, but I just bought an IPod G5 60 GB. When you firstconnect your IPod you have to setup your ID. I'm using my brothers computer, who has an IPod too, so now I'm wondering when I set up my ID with his Itunes does his Ipod still work with it??? Or would his ITunes just see my IPod? Or does his Ipod ID change to my ID?
    Or does it work without any problems, to setup two IDs on the same computer??
    Thanks!

    Hi!
    This might be a stupid question, but I just bought an IPod G5 60 GB. When you firstconnect your IPod you have to setup your ID. I'm using my brothers computer, who has an IPod too, so now I'm wondering when I set up my ID with his Itunes does his Ipod still work with it??? Or would his ITunes just see my IPod? Or does his Ipod ID change to my ID?
    Or does it work without any problems, to setup two IDs on the same computer??
    Thanks!

  • My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    Hmmmm... would appear that you need to be actually logged in to enable the additional menu features.
    Have you tried deletting the plists for MAS?
    This page might help you out...
    http://www.macobserver.com/tmo/answers/how_to_identify_and_fix_problems_with_the _mac_app_store
    Failing that, I will have to throw this back to the forum to see if anyone else can advise further.
    Let me know how you get on?
    Thanks.

  • This is probably a stupid question, but what does the red circle with a number in it mean on iCal? It looks just like the emails notification. I do not have anything do or up in my cal.

    This is probably a stupid question, but what does the red circle with a number in it mean on iCal? It looks just like the emails notification. I do not have anything do or up in my cal.

    Actually, another person on the "more like this" had the right answer. It meant I had a notification for an invite that I needed to respond to.
    Hope this helps you as much as it helped me.
    D

  • My macbook pro is still under warranty.  I have just put it into Mac 1 to be repaired because I had the folder with the dreaded Question mark on it....new hard drive.  I was told that if I wanted my data retrieved, I would have to pay $445 p/h. Ahh!!!

    My macbook pro is still under warranty.  I have just put it into Mac 1 to be repaired because I had the folder with the dreaded Question mark on it....new hard drive.  I was told that if I wanted my data retrieved, I would have to pay $445 p/h. Ahh!!!  Shouldn't that be covered by warranty?

    My newest Mac just did the same "folder of death" dance. It's too late for you now, but you might consider a passport backup drive.You can get 2&3 T-bytes now fairly reasonably priced. A given with computers is they will crash, just a question of how bad and when, so you can be prepared for the next time.

  • Newbie - Setup Xserve with Mac Os X 10.6 for small group

    I already have infrastructure with DNS, DHCP, file storage etc.... I have a small group of users that will use Macs with OS 10.6 and a new Xserve. I only wnt them to autthenticte to OD on Xserve and thats it. And so I can see logs og their logins.. I will use Apple Remote Desktop but I guess will use it on another MaC not on server.
    My background Novell Shop and MS mix, with Linux/Unix. I do Zenworks stuff.. So my question... Ho do I use the xserve only for OD authenticatin I ran through the install worksheet and setup my OD. And I have a MAC workstation im testing. I try to login on thta MAc to my OD server with an account I created on Xserve in Workgroup Manager. But when I login on MAC i see my full name then login window shakes and goes back to login window. I created another user account on server and created that account on MAC locally. I can login but I see no record on xserve password logs. When I login with network account that does not have local account on MAC and get the shaky window I see log on Xserver Password log and see authenticaiton.
    On mac I setup to join the OD xserve and tahts it. What am I missing??

    But I have another question. If there is a user locally on the MAC workstation and they try to login as th enewtork user, same shortname, it doesnt login with network password only local password. I set password on Network to that one on Local. they login but no hit to password service server log? We only want to use the server to Authenticate OD users and thats it. So can you have local user synch up to network? Or am i only stuck with network users and setting as you described?
    This is the function of the Search Path. When binding to external domains, OS X will follow a search path defined in Directory Utility. However, DSLocal is always searched first, followed by BSD flat files, then external directories (AD, OD, LDAP, etc). DSLocal is ALWAYS first. This can not be changed. What this means is that if you have a user on the workstation named Bob Smith with a short name of bsmith and a password of letmein and a UID of 502 AND you create a user in the external directory named Bob Smith with a shortname of bsmith and password of hereiam and a UID of 1026, you will never reach the external directory during login. This is because the shortname bsmith will be hit in the DSLocal domain first as it is always the first directory encountered.
    The way around this for systems that you are migrating is to delete the user's account plist and the chown the entire home folder. Now, this assumes that a local admin exists at account 501 already. If this is the case, then the bmsith account attributes (/var/db/dslocal/nodes/Default/users/bsmith.plist) file can be removed from the machine, effectively "deleting" the account without altering the user's data (/Users/bsmith). Then, if the machine is bound to the domain, all that is required in a chown of the /Users/bsmith folder so the UID value of the external directory account is set (1026).
    And again, there seems to be some confusion about OS X and home folder types. Apple supports a lot. They are:
    Local account with local home: This is the most common. Take machine out of box and create account. For IT, the local initial admin is this type of account. The user exists in the local domain and the home folder is in /Users.
    Mobile (domain) account with cached attributes with local home: This requires are directory domain like AD or OD. For the AD plugin, this is default behavior. For OD it is very common. The machine is bound to a domain and on initial login, the user's account attributes are cached to the machine for offline use. This will create a "permanent" account in System Prefs and the user can use his or her domain credentials when offline. As an added feature using MCX, you can add home folder sync on top of this style.
    Mobile (domain) account without cached attributes and network home: This is common in schools and training rooms. The workstations are always on the network so there is no need to cache the account nor do you want to litter the machines with local homes. A net home server is established and then users can freely move from machine to machine. On login, an automount share must be available to the workstation and the user uses domain credentials to access the network home. All data is stored in the central network location allowing for ultimate mobility of user.
    Now there are also external homes (homes on external drives), guest accounts and more. But the three above are the most common.
    Hope this helps all following the thread.

  • Newbie to mac - need help with idvd

    heya people.
    i'm hoping someone can help me with my problem i have created a dvd using i dvd 6 with the one step dvd once it finished burning it ejected the dvd. however i accidentally closed the software. and i can't seem to find where its put the temp files it recorded to the HD when recording the movie, now i've only got a small hard disk space left because this was a rather long movie and i'm not liking the fact that with everything ese i have on here i only have 5 gb of space left.
    can anyone please tell me how to get rid of these temp files it would have created because i did a search and can't find a single file over 2gb on my hd yet i know the file is over 7gb in size. please anyone that can help it would be much appreciated. as i say i'm a newbie to macs only having this MBP for a few weeks, oh and i have bootcamp installed as well... ok ok i know tis wrong having windows on a mac but its for some software i have to use at work that isn't compatible with OSX. so please please please help me if you can.
    many thanks
    Danwilliams

    the best thing about macs are they are so obvious when you know what you are doing with them!
    Would someone please put that sentence in flashing lights at the top of every forum here!
    Dan:

  • New Mac User, Please Pardon the Stupid Questions...

    Hi. As the title says, please pardon the stupid questions. I'm a Mac noobie. I got my iMac G5 from my aunt who has always been a mac user. The logic board went out on this one and I had it repaired so now I'm entering the world of mac.
    I'd like to know how to upgrade the software on my machine. I'm currently running 10.3.9 which is Panther but I'd like to upgrade. My question is, what software is the newest I can upgrade to and where can I get the software? Is it available for download or do I need to go to a store to purchase it? Also, I currently have itunes 4. I downloaded itunes 10 but it wouldn't install. I get the error message "the installer package "install itunes" cannot be opened the bill of materials for this package can not be found"... Is this due to my OS version? Please help... Thanks

    You have to buy it, you can't download it. See if the Apple Store sell it,but I think you will have to get it from eBay or Craig's List. Just make absolutelt sure it's the black retail disc, not grey! Also, you cannot run Snow Leopard on your iMac, it only works on intel machines.
    Amazon have some for sale.
    http://www.amazon.com/s/ref=nbsb_ss_c_115?url=search-alias%3Dsoftware&field-keywords=leopardos+10.5&sprefix=leopard+os10.5

  • A really stupid question from newbie...

    hello all,
    i am very new to java and i am trying to build a j2ee application...
    rite now....i need to let my app communicate w/ an outside program thru' XML..
    i had just learnt many thing about java w/ xml and i decided to use the XMLEncoder... it seems quite simple to use...BUT i have no idea on how to send/receive these XML files...i had thought of using socket connection, but i just found out that an EJB wouldn't allow socket networking... i bet this must be quite a stupid question coz i found nowhere teaching me this...=P
    if u know about this, pls point me to some relevant docs / sites....i am anxious to learn about it...
    thx so much,
    karloogunna~

    hello maesj, rune, and others,
    thx alot for your advice...
    and here's the environment i am working in:
    OS: w2k
    JDK: 1.4.1.01
    j2ee: 1.3.1
    jboss: 3.0.2
    i am using flash as my UI, so i need communication
    between the j2ee app and flash.
    the data transfer involves a number of arrays of
    objects (each object w/ a list of attributes...) so, i
    think using XML as data-exchange is quite suitable (am
    i wrong on this??)I don't know the first thing about Flash, but using XML as a means for exchanging data seams like a good idea, for the scenario you described.
    >
    and i am reading about the message-driven beans, i see
    that they got a function onMessage() from where i can
    get the XML strings (?), but i don't know how i can
    feed these strings into this JMS from flash...do i
    need to write a small java program on the client
    side?I haven't that much experience with Message Driven Beans. What I do know is that they employ the Java Messaging Service (JMS). If you write a small client appplication with JMS support... you might be close.
    >
    also, i am not sure if i can send out XML strings
    through the message-driven beans, i am reading on the
    JMS...it got the MessageProducer, MessageConsumer,
    MessageListener, and MessageSelector....should i be
    using this? or can i use this together with the
    message-driven beans??
    In a Messaging system you will need message producers, and message consumers. To enable two-way communication, you can setup both the EJB and the client to handle both. When a message arrives at the consumer (or subscriber if you like), the JMS Service invokes the onMessage method. So you should implement your logic in the onMessage method, for example inspect the XML content, and act upon its content.
    i am very sorry for my disorganized questions...(i
    used to do low-level programming =P)
    and really thank you for your advice!!!!
    No problem, the amount of information to read can be quite overwhelming. Using JMS is just a suggestion, and might be considered overkill for your application. If you're using an IDE, like Sun ONE, creating a message driven bean is easy, and can be tried out, without too much hours passing.
    Kind Regards,
    Rune Bj�rnstad.

  • One big question about glitches in my software if I install Lion or buy a new mac with Lion

    I have 2009 Leopard I Mac. My bank now insists I have an Intel supported browser and more. Apple said Firefox will do it, but I need to upgrade to either Snow Leopard or Lion or buy a new I Mac with Mt. Lion installed. I read complaints about MP Navigator, Quicken and other software not working on SL or Lion..with my Canon printer..I am over 70 and legally blind, do all our accounting, taxes and correspondence with my I Mac including making DVD's, Cd's...and not able to figure out problems easily. Any suggestions on what I can do? I have to be able to access on=line banking, and also print check copies, etc. for our taxes.

    Check out this link -
    http://www.roaringapps.com.
    You may be able to determine if the versions of your current 3rd party software will work.

  • Probably a stupid question

    just got a macbook pro and want to be able to use the webcam to chat with my hubby on his PC when he is out of town on business. he does NOT have a webcam so we need to know what kind he can get that will allow us to talk and see each other. i know this is probably a stupid question but we are new at this.....

    Welcome to Apple Discussions, bevs
    Any PC webcam that is compatible with your hubby's PC system, (Windows?) OS, and chat software will work. Best suggestions will come from the "Help" pages for his chat applications software.
    For you to be able to video chat with your hubby, it is important that you choose applications software that offers "cross-platform" (Mac to PC) video chat capability. There are several choices available, but Skype probably currently offers the best balance between ease of use and reliability in free cross-platform video apps.
    Whichever apps (and camera) you and hubby choose, everything must be compatible with your respective computers and operating systems. I mention this because your posted system info shows macbookpro   Mac OS X (10.0.x). Mac OS X (10.0.x) is now five major upgrades old. No MacBook Pros shipped with Mac OS X (10.0.x), so I expect that your system info just needs to be updated. However, if I am wrong, you will need to upgrade your Mac OS to use Skype, because Skype's System Requirements show you must use Mac OS X v10.3.9 Panther or later. I do not know any video chat apps that work with Mac OS X (10.0.x).
    In order to use Skype, both you and your hubby will need to download and install your respective versions of the Skype software. Skype offers free AV connections between computers (although its website seems to concentrate on its for-fee telephone connection service,) it is easy for most users to configure and set up, and it offers cross-platform audio with its video chat. (Not all video chat apps offer simultaneous audio.)
    Your iSight will work with Skype, as will most PC webcams for your hubby. For more information now, or for help if you encounter problems using Skype later, Skype offers comprehensive support that includes a dedicated Skype Forum as well as technical support directly from Skype in addition to its online FAQ and Knowledge-base.
    If you decide to go with Skype, your hubby can get Skype-specific suggestions for PC webcams here.
    Please let us know if you need any other info before you can mark your question "Answered." We will be happy to try to offer more focused suggestions for your specific questions.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.1)  External iSight

  • Before I ask stupid questions...

    Just taken over at a small post facility and need to read up on Xserve RAID related issues before I ask stupid questions on this forum. So can anyone refer me to any useful sites/blogs/apple articles about Xserve RAID setups geared towards video editing environments with mutiple operators?
    Would be good if they included information on RAID configuration, fibre channel versus gigbit ethernet and what read/write rates I should be expecting to see when working in SD and HD environments.
    Thanks
    Dual 1.8 Power PC G5, MacBook Pro 2.33ghz Intel Core Duo   Mac OS X (10.4.8)   ATI Radeon X800 XT graphics card, 23inch Cinema Display

    You are probably trying to use a stale mirror
    http://www.archlinux.org/mirrorlist/

Maybe you are looking for