New install, when I startx, nothing moves

I installed arch on an old laptop.
I installed xorg and fluxbox.
when I startx, the keyboard and touchpad do nothing. I have to reboot.
here is xorg.conf:
# File generated by xorgconfig.
# Copyright 2004 The X.Org Foundation
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# Except as contained in this notice, the name of The X.Org Foundation shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from
# The X.Org Foundation.
# Refer to the xorg.conf(5) man page for details about the format of
# this file.
# Module section -- this section is used to specify
# which dynamically loadable modules to load.
Section "Module"
Load "glx"
Load "freetype"
Load "synaptics"
# This loads the DBE extension module.
Load "dbe" # Double buffer extension
# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
# This loads the font modules
# Load "type1"
Load "freetype"
# Load "xtt"
# This loads the GLX module
# Load "glx"
# This loads the DRI module
# Load "dri"
EndSection
# Files section. This allows default font and rgb paths to be set
Section "ServerFlags"
Option "AutoAddDevices" "False"
EndSection
Section "Files"
# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
# FontPath "/usr/share/fonts/TTF"
# FontPath "/usr/share/fonts/Type1"
# FontPath "/usr/lib/X11/fonts/local/"
# FontPath "/usr/lib/X11/fonts/misc/"
# FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
# FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
# FontPath "/usr/lib/X11/fonts/Type1/"
# FontPath "/usr/lib/X11/fonts/TrueType/"
# FontPath "/usr/lib/X11/fonts/freefont/"
# FontPath "/usr/lib/X11/fonts/75dpi/"
# FontPath "/usr/lib/X11/fonts/100dpi/"
# The module search path. The default path is shown here.
# ModulePath "/usr/lib/modules"
EndSection
# Server flags section.
Section "ServerFlags"
# Uncomment this to cause a core dump at the spot where a signal is
# received. This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging
# Option "NoTrapSignals"
# Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
# (where n is 1 through 12). This allows clients to receive these key
# events.
# Option "DontVTSwitch"
# Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
# This allows clients to receive this key event.
# Option "DontZap"
# Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
# sequences. This allows clients to receive these key events.
# Option "Dont Zoom"
# Uncomment this to disable tuning with the xvidtune client. With
# it the client can still run and fetch card and monitor attributes,
# but it will not be allowed to change them. If it tries it will
# receive a protocol error.
# Option "DisableVidModeExtension"
# Uncomment this to enable the use of a non-local xvidtune client.
# Option "AllowNonLocalXvidtune"
# Uncomment this to disable dynamically modifying the input device
# (mouse and keyboard) settings.
# Option "DisableModInDev"
# Uncomment this to enable the use of a non-local client to
# change the keyboard or mouse settings (currently only xset).
# Option "AllowNonLocalModInDev"
EndSection
# Input devices
# Core keyboard's InputDevice section
Section "InputDevice"
Identifier "Keyboard1"
Driver "kbd"
Option "AutoRepeat" "500 30"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"
# Option "LeftAlt" "Meta"
# Option "RightAlt" "ModeShift"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Option "XkbModel" "pc105"
# If you have a US Microsoft Natural keyboard, you can use:
# Option "XkbModel" "microsoft"
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"
# These are the default XKB settings for Xorg
# Option "XkbRules" "xorg"
# Option "XkbModel" "pc105"
# Option "XkbLayout" "us"
# Option "XkbVariant" ""
# Option "XkbOptions" ""
# Option "XkbDisable"
Option "XkbRules" "xorg"
Option "XkbModel" "latitude"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "SynapticsTouchpad"
Driver "synaptics"
Option "AlwaysCore" "true" # send events to CorePointer
#Option "Device" "/dev/input/mice"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "SHMConfig" "false" # configurable at runtime? security risk
Option "LeftEdge" "1700" # x coord left
Option "RightEdge" "5300" # x coord right
Option "TopEdge" "1700" # y coord top
Option "BottomEdge" "4200" # y coord bottom
Option "FingerLow" "25" # pressure below this level triggers release
Option "FingerHigh" "30" # pressure above this level triggers touch
Option "MaxTapTime" "180" # max time in ms for detecting tap
Option "VertEdgeScroll" "true" # enable vertical scroll zone
Option "HorizEdgeScroll" "true" # enable horizontal scroll zone
Option "CornerCoasting" "true" # enable continuous scroll with finger in corner
Option "CoastingSpeed" "0.30" # corner coasting speed
Option "VertScrollDelta" "100" # edge-to-edge scroll distance of the vertical scroll
Option "HorizScrollDelta" "100" # edge-to-edge scroll distance of the horizontal scroll
Option "MinSpeed" "0.10" # speed factor for low pointer movement
Option "MaxSpeed" "0.60" # maximum speed factor for fast pointer movement
Option "AccelFactor" "0.0020" # acceleration factor for normal pointer movements
Option "VertTwoFingerScroll" "true" # vertical scroll anywhere with two fingers
Option "HorizTwoFingerScroll" "true" # horizontal scroll anywhere with two fingers
EndSection
# Core Pointer's InputDevice section
Section "InputDevice"
# Identifier and driver
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "Auto" # Auto detect
Option "Device" "/dev/input/mice"
# Mouse-speed setting for PS/2 mouse.
# Option "Resolution" "256"
# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.
# Option "BaudRate" "9600"
# Option "SampleRate" "150"
# Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
# horizontal wheel to buttons 6 & 7. Change if your mouse has more than
# 3 buttons and you need to map the wheel to different button ids to avoid
# conflicts.
Option "ZAxisMapping" "4 5 6 7"
# Emulate3Buttons is an option for 2-button mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)
# Option "Emulate3Buttons"
# Option "Emulate3Timeout" "50"
# ChordMiddle is an option for some 3-button Logitech mice
# Option "ChordMiddle"
EndSection
# Other input device sections
# this is optional and is required only if you
# are using extended input devices. This is for example only. Refer
# to the xorg.conf man page for a description of the options.
# Section "InputDevice"
# Identifier "Mouse2"
# Driver "mouse"
# Option "Protocol" "MouseMan"
# Option "Device" "/dev/mouse2"
# EndSection
# Section "InputDevice"
# Identifier "spaceball"
# Driver "magellan"
# Option "Device" "/dev/cua0"
# EndSection
# Section "InputDevice"
# Identifier "spaceball2"
# Driver "spaceorb"
# Option "Device" "/dev/cua0"
# EndSection
# Section "InputDevice"
# Identifier "touchscreen0"
# Driver "microtouch"
# Option "Device" "/dev/ttyS0"
# Option "MinX" "1412"
# Option "MaxX" "15184"
# Option "MinY" "15372"
# Option "MaxY" "1230"
# Option "ScreenNumber" "0"
# Option "ReportingMode" "Scaled"
# Option "ButtonNumber" "1"
# Option "SendCoreEvents"
# EndSection
# Section "InputDevice"
# Identifier "touchscreen1"
# Driver "elo2300"
# Option "Device" "/dev/ttyS0"
# Option "MinX" "231"
# Option "MaxX" "3868"
# Option "MinY" "3858"
# Option "MaxY" "272"
# Option "ScreenNumber" "0"
# Option "ReportingMode" "Scaled"
# Option "ButtonThreshold" "17"
# Option "ButtonNumber" "1"
# Option "SendCoreEvents"
# EndSection
# Monitor section
# Any number of monitor sections may be present
Section "Monitor"
Identifier "My Monitor"
# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
HorizSync 31.5 - 64.3
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.
VertRefresh 50-60
EndSection
# Graphics device section
# Any number of graphics device sections may be present
# Standard VGA Device:
Section "Device"
Identifier "Standard VGA"
VendorName "Unknown"
BoardName "Unknown"
# The chipset line is optional in most cases. It can be used to override
# the driver's chipset detection, and should not normally be specified.
# Chipset "generic"
# The Driver line must be present. When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module. Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.
Driver "vga"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for. When this line isn't present, a device
# section can only match up with the primary video device. For PCI
# devices a line like the following could be used. This line should not
# normally be included unless there is more than one video device
# intalled.
# BusID "PCI:0:10:0"
# VideoRam 256
# Clocks 25.2 28.3
EndSection
# Device configured by xorgconfig:
Section "Device"
Identifier "** NeoMagic (generic) [neomagic]"
Driver "neomagic"
#VideoRam 2048
# Chipset "NM2160"
# IOBase 0xfea00000
# MemBase 0xfd000000
# VideoRam 2048
# DacSpeed 90
# Option "linear"
# Option "nolinear"
# Option "sw_cursor"
# Option "hw_cursor"
# Option "no_accel"
# Option "intern_disp"
# Option "extern_disp"
# Option "mmio"
# Option "no_mmio"
# Option "lcd_center"
# Option "no_stretch"
# Insert Clocks lines here if appropriate
EndSection
# Screen sections
# Any number of screen sections may be present. Each describes
# the configuration of a single screen. A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
Identifier "Screen 1"
Device "** NeoMagic (generic) [neomagic]"
Monitor "My Monitor"
DefaultDepth 24
Subsection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
ViewPort 0 0
EndSubsection
Subsection "Display"
Depth 24
Modes "800x600" "640x480"
ViewPort 0 0
EndSubsection
EndSection
# ServerLayout sections.
# Any number of ServerLayout sections may be present. Each describes
# the way multiple screens are organised. A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option. In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.
Section "ServerLayout"
# The Identifier line must be present
Identifier "Simple Layout"
# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens. The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen. In this example, screen 2 is located to the
# right of screen 1.
Screen "Screen 1"
# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used. Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".
InputDevice "USB Mouse" "CorePointer"
InputDevice "SynapticsTouchpad" "SendCoreEvents
EndSection
# Section "DRI"
# Mode 0666
# EndSection

Redroar wrote:
Edit: foolish me. I thought I had read your entire xorg.conf, and yet missed the very obvious top. Should've known better. I think it's time to go to sleep.
Edit2: maybe unfoolish me. You have 2 ServerFlags sections. I don't know, maybe get rid of the big spanning one that has loads of comments in it. I wonder if the AutoAddDevices thing simply isn't getting read because of a syntax error?
That worked!
Thanks.

Similar Messages

  • Invisibles are creating a new page when I try to move background image....

    Hey Guys.
    I am doing a resume for a friend of mine and its quite simple what Im trying to do;
    -Background image
    -Image
    -Text
    And I noticed when I try to put the background image to fit the background that it will create a new page... but I can't seem to find how to get around this problem... can anyone help?
    Here's a screenshot: http://i46.tinypic.com/nf1t3r.png

    JoeyDee
    Your image has word wrap on it that is squeezing out either text or a page break underneath.
    The process and fix (turn off word wrap for the background image) were described here:
    http://discussions.apple.com/thread.jspa?threadID=2166684&tstart=45
    Peter

  • After software update and restart, acts like it's a new install?

    Greetings All,
    After doing the recent software update on my son's 20" iMac C2D machine, I did the restart and once it reboots I get the "quick start" page as if it were a new install of Leopard and nothing were no user accounts set up. I can restart in target disc mode and connect to the iMac with my MBP, everything is still there, including all the recent files on the desktop. The Time Machine back up is also in tact.
    Why can't it see the account and boot up? Any way to boot from the Time Machine back up? Any help is much welcomed at this point as my son needs to do some school work tonight.

    By "quick start" do you mean the Setup Assistant that, among other things, lets you setup the first user account? If so, go with it. When you get to setting up that account, ensure that the "short name" exactly matches the name of the lost home folder. The new account will "adopt" that folder & you should be back in business.
    FWIW... an alternative would be to setup a temporary account like "test". Once you have access to the system, you'd go to SysPrefs->Accounts and add a new user whose short name, again, matches the name of the home folder you want. In this case, it will say that a folder with that name exists & ask whether you want to use it. This method is useful if you can't remember the exact name of the folder in question - you can open the Users folder and copy the name letter for letter.

  • When I switch on my brand new iPad it asks me to move the slide to begin set-up. A list of languages appear and I tick English and then next. Another list of languages appear but nothing else happens. I press Back and it goes back to the first list and a

    When I switch on my new iPad it asks me to move the slider to begin set-up. A list of languages appears and I tick English then NEXT. Another list of languages appears and the only thing to do is press the home button or BACK. I press BACK and it returns to the first list. I press the home button and a message appears saying that SET-UP was not completed do you wish to retry or continue. I press CONTINUE and nothing happens I press RETRY and it goes back to the message. What am I doing wrong or do I need to connect to I-Tunes to set-up ?

    Try to connect to iTunes during the setup.

  • HT4623 I received a message on my iPad re update to iO7 and I said yes, install. Now it's stuck on the agree/disagree page; nothing moves when I press Agree and Send by Email. Can anyone help?

    I received a message on my iPad re update to iO7 and I said yes, install. Now it's stuck on the agree/disagree page; nothing moves when I press Agree and Send by Email. Can anyone help?

    Reset iPad and continue with update.
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • After installing Mavericks my email isn't allowing me to draft a new message. I can see my messages, but cannot create a new message or reply to any messages. When I try nothing happens, then Mail freezes all together.

    I can see my messages, but cannot create a new message or reply to any messages.
    When I try nothing happens, then Mail freezes all together and usually crashes.
    I was able to get into my Mail settings and everything looks ok as far as I can tell.
    Has anyone else seen this? My software is completely up to date now (unfortunately).
    Thanks in advance for any help or advice.

    Do a backup.
    Quit Mail.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder. Go to Library/Containers/com.apple.mail.  Move the folder com.apple.mail to your desktop. You must move the entire folder, not just the contents.
    Restart, re-launch Mail and test. If the problem is solved, recreate any required Mail settings and import any emails you want to save from the folder on the desktop. You can then put the folder in the Trash. If the problem remains, return the folder to where you got it replacing the one that is there. 
    Information learned from Linc Davis. Thanks to leonie for some information contained in this.
    https://discussions.apple.com/message/23609117#23609117

  • I am trying to move Acrobat XI to a new computer. (Mavericks to Mavericks) Toward to end of the install when 'scripts' a being installed I get an 'Installation error" message. No number or reason just a message to contact the software creator.

    I am trying to move Acrobat XI to a new computer. (Mavericks to Mavericks) Toward to end of the install when 'scripts' a being installed I get an 'Installation error" message. No number or reason just a message to contact the software manufacturer.

    I am using a copy of a previous download of Acrobat XI, clicking the .dmg and then on the install package.
    Originally, the Acrobat software was brought into the new computer by the Migration Assistant.
    Does the install assistant need to be in the mix somewhere?

  • Problem with NEW H520 when installed new power supply & graphic card. Please help!

    My H520 was working perfectly and was running FAST..especially when rebooting. ( It was AWESOME!  )Then I installed a new power supply (Coolmax 400w) and a new graphic card (Sapphire Radeon HD6450) and then everything changed.  Now my computer is booting very SLOWLY and all the programs are taking a long time to load too.  I was getting a black screen for almost a full 2 minutes before the windows 8.0 screen would finally load up and then it hangs there for a few seconds and finally goes to the start screen in windows.  But BEFORE I installed this new hardware, when I would reboot, I would see the Lenovo splash screen come up for a few short seconds and then it instantly went to the windows welcome screen.  And even then I would barely have enough time to see the welcome screen before it instantly loaded into the windows start screen.  Everything would load up fast on the desktop too and we'd be good to go. It all took about 30 SECONDS. 
    But now? It takes MINUTES to get everything going.   After it FINALLY loads up (it takes almost 2 full minutes now!), everything hangs up.  When you first click on the desktop, it takes a few seconds for all of the icons to pop up.  Before I loaded the new hardware, everything loaded up instantly.  I didn't even see the icons load because they were already there.  But now I have to wait for them to load up before I can even see them.  And it's like that with every program and web browser I try to use now.  Everything hangs up at first and then finally loads.  The programs work but they are sluggish.
    So I uninstalled the new power supply and put back in the original 280w power supply and I took out the graphic card but it did no change.  The machine is STILL running slow on everything it does and booting very slowly.
    I have seen this problem mentioned elsewhere about Lenovo computers but there is never a solution.  Please help!  It took me a long time to save up for this computer and I have been babying it ever since.  I will never be able to afford a new one or pay for tech repair.  I need to fix this!    I was so thrilled with this computer before the hardware upgrade. This is devastating to me that it is working so poorly now when all I was trying to do was upgrade it a little bit.     Now it's performing horribly and it's only 6 months old. 
    I ran a four hour test on the hard drive and it is fine.  I ran all the system clean ups, optimizations, registry cleanups, windows disk cleaner, defragger and virus scans. Nothing is showing up as not working but there is CLEARLY a problem.  It was never this slow.   And why is it STILL acting this slow even after I uninstalled all of the new hardware that made it start acting this way and went back to the original setup?
    I'm trying to run a memory test on it now but the BIOS will NOT allow me to select another drive to boot from so I can't boot from the flash drive or CD drive to run the memory test.  I have NO IDEA what to do next and I am starting to pull my hair out in frustration.
    Please, is there anything that can be done to make it better again?
    Any help would be HUGELY appreciated.    Thank you!
    Sincerely,
    Jennifer

    I totally give up!!  I restored everything to the ORIGINAL state with drivers AND hardware and STILL everything is not working properly like it was BEFORE the upgrade.
    So this has been the WORST experience with Tech support EVER!!  I have spent DAYS on the phone for HOURS with these technicians and nobody seems to know what they are doing.  They put me on hold every 10 minutes and are gone for 10 to 15 minutes and when they come back, they seem all set on a new solution but when you ask them questions about it, they have NO CLUE how to answer and then they put you on hold again.  Nothing gets solved and after HOURS on the phone, I just tell them to stop because we are getting no where but running around in circles that make no sense.    THIS A NIGHTMARE!!
    So I totally gave up on being able to upgrade this machine.  To any future buyers, I STRONGLY recommend you do all upgrading BEFORE you get it home for the first time.  Make sure you have your power supply and graphic card INCLUDED before you bring it home or you're mostly likely going to have a NIGHTMARE upgrading it later.    Technical support is a HORROR STORY and expect to be WAITING for LOOOOONNNNG periods of time both ON THE PHONE and ONLINE and probably ending up with NO SOLUTION in the end. 
    I've VERY upset with how this turned out!!  I'm just gonna have to deal with the fact that my computer is permenantly messed up and NOBODY AT LENOVO knows how to fix it.    So I'm stuck. 
    I decided to send back the new power supply and the new graphic card because of this nightmare with tech support.  I put everything back to the way it was when I bought the computer and it is STILL acting up!!  I just want to revert it back to factory settings .. INCLUDING THE BIOS... but Lenovo said I have to send the WHOLE computer back to them to do that.  All I can do from home is restore from a point in the hard drive and that's not enough.  I need a TOTAL CLEAN INSTALL.  Everything needs to be wiped out and reset, not just restored to a previous restore point.  I've done this multiple times and all it does is erase all the programs and stuff I put on the computer.  The drivers and other codes are still the same.  And then bugs come up and things get all wonky.  I NEVER HAD THIS PROBLEM BEFORE I TRIED TO UPGRADE IT!!
    I am NOT comfortable with Lenovo's "solution". I do NOT want to send my computer back to them for them to reset it with factory disks ESPECIALLY when they stated that they are NOT responsible for any damage in transport or otherwise. I have to buy extra packaging to make sure it gets there safely. They told me to use the original box and packaging, that is the only way they can be sure it will get there safe.  Who has the original stuffing SIX MONTHS LATER?!?! I don't want to be sending my computer across the country to get jostled all over the place and have that add to the slowness of the hardware because it was jostled.
    Can't I reset it from home?  Can they not send ME the disks instead of me sending my whole computer to them?
    I'm so incredibly frustrated with this.  I hope somebody answers quickly and that I don't have to wait DAYS to get a response again. 
    I absolutely LOVED my Lenovo computer!  And then I tried to upgrade it.  BIG MISTAKE!!  Now everything is totally messed up and Lenovo's customer support for technical problems is HORRID!!
    Somebody please help.  This is driving me crazy with frustration and totally breaking my heart.  It took me a VERY long time to save up for this computer and it was my most loved possession.  It was a reward for a lot of hard times and now it's all broken and acting slow.  And it's only 6 months old.  
    Is there a solution to this very frustrating problem?
    I just want it to go back to the way it was before. 
    And is there a very low cost KNOWN TO WORK WITH THIS MACHINE upgraded graphic card and power supply?  Is there a very specific brand and make?  If so, could you let me know what it is in case I try to upgrade it again someday?
    Thank you for your time and for reading this! 
    Please have a FANTASTIC day today!!
    ~Jennifer~

  • I have a subscription installed on a Macbook and I like to have it on my new Macbook Air. How to move my subscribtion?

    I have a subscription installed on a Macbook and I like to have it on my new Macbook Air. How to move my subscribtion?

    If you registered the product then it should be in My Software in when you sign into Adobe.com with your Adobe ID.

  • When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates.

    When I try to open a Pages document from iCloud, created on my iPad, I get message stating I need a newer version of Pages.  When I go to app store all I get is "installed" when looking at pages app. my Macbook pro is up to date with all updates. Any ideas?

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5/5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5.1 sometimes can not open its own files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has not only managed to confuse all its users, but also itself.
    Note: Apple has removed over 100 features from Pages 5 and added many bugs:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Archive/trash Pages 5, after exporting all Pages 5 files to Pages '09 or Word .docx, and rate/review it in the App Store, then get back to work.
    Peter

  • HT201528 I bought a new iMac.  How can I move my iWeb site from my old computer to my new one.  iWeb is installed on my new iMac.

    I bought a new iMac.  How can I move my iWeb site from my old computer to my new one.  iWeb is installed on my new iMac.

    iWeb stores the data in a Domain.sites2 file whose default location is shown here...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    Move this to your new Mac.
    See this page for info about using iWeb with OSX 10.7 & 8...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html

  • As a new user of apple TV, I need some advice. When I rent a movie from Itunes for viewing later, it seems to download for a second time, with a message saying ready to view in 30 mins, it proceeds to load up all over again. What am I doing wrong

    As a new user of Apple TV, I need some assistance.When I rent a movie on iTunes and download for viewing later, say a day or two later, It seems to load itself all over again with a msg saying ready to view in 25 mins ! So having waited the 25 mins movie starts and runs for maybe 1 hour and the pauses for maybe 5 mins while it seems to load again . any help appreciated

    Welcome to the Apple Community.
    If you use the Apple TV for something else or turn it off it will erase whatever is on it's drive. If you are going to download content for later viewing you might consider doing it on the computer, downloads don't disappear until they expire and you can watch them as many times as you want.

  • I have a new computer running os10.9. my old computer ran cs5.5(upgrade version). I am trying to get CS5.5onto my new computer. when i load cs5.5 towards the end of the install it asks for the cs5.5 serial number. i put that in and everything is accepted

    I have a new computer running os10.9. my old computer ran cs5.5(upgrade version). I am trying to get CS5.5onto my new computer. when i load cs5.5 towards the end of the install it asks for the cs5.5 serial number. i put that in and everything is accepted but then it asks for a serial number for a full version of a product which men is design premium cs3 but it doesn't give me that product as a choice from the drop down menu. it only gives me adobe master collection cs3. why when i have purchased all these different upgrades can i now not use them and how can i sort this out. i need cs5.5 on my new computer.

    Contact Adobe support:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • I use an external hard drive as a Time Machine back up, but I want to use another external hard drive to save movies, photos on it, but it won't give me the option to save anything on the new external hard drive. Nothing is wrong with the external hard.

    I use an external hard drive as a Time Machine back up, but I want to use another external hard drive to save movies, photos on it, but it won't give me the option to save anything on the new external hard drive. Nothing is wrong with the external hard. 

    Hi Clarkett99,
    To use an external hard drive for your iTunes library, see the steps in this article -
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751
    iPhoto can be used in a similar way, follow the steps in this previous discussion -
    how do I save photos and their albums...: Apple Support Communities
    https://discussions.apple.com/thread/3744259
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • I installed CS3 from backup to a new iMac when my old iMac failed.  How do I activate CS3 suite?

    I installed CS3 from backup to a new iMac when my old iMac failed.  How do I activate CS3 suite?
    When I try starting Photoshop, for example, it tells me uninstall then reinstall the product OR contact product support.
    However, when I phone product support, it says there is no product support for CS3 and to go to the Forums.
    Thank you.

    >from backup
    Mac Migration and Time Machine DO NOT WORK with Cloud program activations due to hidden files
    You need to uninstall and do a fresh install with your serial number

Maybe you are looking for

  • Expert help needed: why does my apple id show in app store....

    when I never signed into the app store before... and... it's not even my system... OK...story... On my clients iMac who is running os 10.5.8 and wishes to uprgade to 10.8, I did the following: -installed 10.6 from my image of the 10.6 installer disc

  • Certificate Problem in Publish to crystalreports Application

    Suddenly, I am unable to upload reports to our crystalreports.com account.  I receive an error message:      javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found I installed the certificate from

  • Binary trees in Java

    Hi there Do you have any suggestions about how to implement trees or binary trees in Java? As far as I know there are already some libraries for that, but I don't know how to use them. Was trying to get some implementation examples but I'm still very

  • Installing a driver for the Apple Keyboard in Boot camp windows

    I recently installed Boot Camp, VMware and Vista on my Mac so that I could move all of my computing on to one computer (I use a few programs that aren't available for the iMac). In Windows I cannot use the number pad for input - I can only use the nu

  • Plsql script timing out...?

    I'm finding that when I run a script on a particular server it sometimes runs through all the way but if the time it takes is too long (say there are more than a certain number of records) it seems to hang. The limit seems to be about two hours. Ther