Nvidia 32-bit libraries for a new driver

I've been experiencing kernal panics when running x with Nvidia 185.18.14 so I decided to update to the new 185.18.36 driver from the nvidia website. Now however, I can't find 32 bit lib utils for this driver in the AUR. Can I find these items myself and package them or do I just need to play the waiting game until someone finishes them and puts them up. I.e. Is this something that is out there just waiting to be put up onto the AUR, or something that someone needs some serious knowhow to create for the AUR?

(I am not an expert on this, but this is what I noticed..... if you want the conclusion that I found about the 32-bit libs, that is more toward the bottom of this post)
I had been wondering about the official NVIDIA driver from the NVIDIA site, and it's 32-bit libs for a while..... and this thread made me wonder about it some more, so I did a bit of investigating.
The first thing I did was to uninstall my nvidia-utils-beta package that I was using with the NVIDIA driver from the NVIDIA site.
I did this because I had noticed that the Arch nvidia PKGBUILD downloads the NVIDIA-Linux-x86_64-1**.**-pkg0.run and then runs "sh NVIDIA-Linux-x86_64-1**.**-pkg0.run --extract-only" to build/install the kernel module.
Then the nvidia-utils PKGBUILD does the same thing with the "sh NVIDIA-Linux-x86_64-1**.**-pkg0.run --extract-only" command, so it extracts everything else that is important from the NVIDIA-Linux-x86_64-1**.**-pkg0 directory, and then the PKGBUILD places them in the correct directories with the correct symbolic links:
But if you use the latest version of "NVIDIA-Linux-x86_64-190.25-pkg0.run" (from here: ftp://download.nvidia.com/XFree86/Linux-x86_64/190.25/ ), instead of using the Arch 'nvidia' and 'nvidia-utils' packages, then the "NVIDIA pkg0" will puts their libraries and symbolic links into the /usr/lib64 directory.
/usr/lib64:
libGL.la
libGL.so
libGL.so.1
libGL.so.190.25
libGLcore.so.1
libGLcore.so.190.25
libOSSlib.so
libcuda.so
libcuda.so.1
libcuda.so.190.25
libnvidia-cfg.so
libnvidia-cfg.so.1
libnvidia-cfg.so.190.25
libnvidia-tls.so.1
libnvidia-tls.so.190.25
libvdpau.so
libvdpau.so.1
libvdpau.so.190.25
libvdpau_nvidia.so
libvdpau_nvidia.so.190.25
libvdpau_trace.so
libvdpau_trace.so.190.25
tls
Then it puts all libXvMCNVIDIA into the /usr/lib directory same as Arch:
libXvMCNVIDIA.a
libXvMCNVIDIA.so.190.25
libXvMCNVIDIA_dynamic.so
libXvMCNVIDIA_dynamic.so.1
These are all put in the same place as the Arch packages:
/usr/share/applications/nvidia-settings.desktop
/usr/bin/nvidia-xconfig
/usr/bin/nvidia-settings
/usr/bin/nvidia-smi
/usr/bin/nvidia-bug-report.sh
/usr/lib/xorg/modules/drivers/nvidia_drv.so
/usr/lib/xorg/modules/extensions/libglx.so.190.25
The manual pages are also put into the same location as Arch's packages.
The last difference that I noticed is that the default Arch packages place everything that is found in here "/usr/share/doc/NVIDIA_GLX-1.0 directory" in the these directories (I'm sure I missed something else):
/usr/share/licenses/nvidia/LICENSE
/usr/share/pixmaps/nvidia-settings.png
/usr/share/doc/nvidia/README.txt
Now if you were to download the "NVIDIA-Linux-x86_64-190.25-pkg2.run" that includes the NVIDIA 32-bit libraries, this is where I noticed the problem is.
See, when you run:
sh NVIDIA-Linux-x86_64-190.25-pkg2.run
..... it installs the /NVIDIA-Linux-x86_64-190.25-pkg2/usr/lib32/*.so* files into the /usr/lib directory..... which is the wrong place..... it should be in the /opt/lib32/usr/lib directory.
So you could try this PKGBUILD that I just made..... I'm not sure if it will work, or if I did everything correct so USE IT AT YOUR OWN RISK!!!!!
# $Id: PKGBUILD 490 2009-08-01 11:12:15Z ibiru $
# Contributor: Pierre Schmitz <[email protected]>
# Contributor: Mikko Seppälä <[email protected]>
# Maintainer : Biru Ionut <[email protected]>
# Remade from : Methuselah (TRY AT YOUR OWN RISK)
_pkgsourcename=nvidia-utils-beta
pkgname=lib32-$_pkgsourcename
pkgver=190.25
pkgrel=1
pkgdesc="NVIDIA drivers utilities and libraries."
arch=(x86_64)
url="http://www.nvidia.com/"
license=('custom')
groups=('lib32')
depends=('lib32-libxext')
conflicts=('lib32-libgl' 'lib32-ati-fglrx-utils')
provides=('lib32-libgl')
source=(ftp://download.nvidia.com/XFree86/Linux-x86_64/190.25/NVIDIA-Linux-x86_64-190.25-pkg2.run)
md5sums=('4d4a3606c64f05cf975dc044ec9200a8')
build() {
cd $srcdir
mkdir -p $pkgdir/opt/lib32/usr/lib
mkdir -p $pkgdir/opt/lib32/usr/lib/tls
sh NVIDIA-Linux-x86_64-190.25-pkg2.run --extract-only
cp -dp NVIDIA-Linux-x86_64-190.25-pkg2/usr/lib32/*.so* $pkgdir/opt/lib32/usr/lib
cp -dp NVIDIA-Linux-x86_64-190.25-pkg2/usr/lib32/libGL.la $pkgdir/opt/lib32/usr/lib
cp -dpr NVIDIA-Linux-x86_64-190.25-pkg2/usr/lib32/tls $pkgdir/opt/lib32/usr/lib
# fix wrnog links
cd $pkgdir/opt/lib32/usr/lib
ln -sf libGL.so.$pkgver libGL.so
ln -sf libGL.so.$pkgver libGL.so.1
ln -sf libGLcore.so.$pkgver libGLcore.so.1
ln -sf libvdpau.so.$pkgver libvdpau.so.1
ln -sf libvdpau_trace.so.$pkgver libvdpau_trace.so.1
ln -sf libvdpau_nvidia.so.$pkgver libvdpau_nvidia.so.1
ln -sf libnvidia-tls.so.$pkgver libnvidia-tls.so.1
ln -sf libcuda.so.$pkgver libcuda.so.1
cd $pkgdir/opt/lib32/usr/lib/tls
ln -sf libnvidia-tls.so.$pkgver libnvidia-tls.so.1
So to finish this up, you could just install this NVIDIA package from their server: ftp://download.nvidia.com/XFree86/Linux … 5-pkg0.run
And then TRY my lib32-nvidia-utils-beta PKGBUILD. (if you feel it is correctly written and approved by someone else with a bit more experience with these things)

Similar Messages

  • How do I download Windows 7 64 bit drivers for my new MacBook Air (Mid 2011) from a Windows 7 PC?

    How do I download Windows 7 64 bit drivers for my new MacBook Air (Mid 2011)? I have already formated the HD and preformed a clean install of Windows 7. Perhaps I did this too early. I have read I need to install the drivers from my OS X DVD, however, OS X Lion does not come on a DVD! I've also read that I can download OS X Lion from the App Store and burn it to a DVD, however, all I have are Windows PCs which don't support the Mac App Store.
    Is there no way for me to download these drivers from a Windows PC?  I know they exist.  However, you are supposed to download them through Boot Camp in OS X when you are creating a new Windows 7 installation.  I'm I stuck?

    I am pretty disappointed in the lack of documentation.
    This is the Apple Support page for Boot Camp:
    http://www.apple.com/support/bootcamp/
    No mention anywhere of Lion, of 4.0/4.01
    In the past, 10.6.6+ was suppose to - and sometimes did - provide for a download drivers from within Boot Camp Assistant program, in order to save them to flash or such (that should be about 1GB, too large for CD). Some macs req'd a USB-DVD or other driver that was needed pre-install of Winidows
    You don't install Apple drivers until after Windows is installed otherwise,
    It is possible for me, with a tower, to run w/o needing any drivers from Apple. But with laptops, mini, you do need some drivers from Apple for graphics, internet, wireless, SMC support.
    And right now, loading any Apple support Tech Note articles is very very slow.
    People keep asking why Apple can't post 3.0 or 4.0 like they do the updates. Only logic is to force t he download from inside OS X or from an OS X DVD. Otherwise would be here, and avoid all the trouble. they aren't of use on a PC, and any PC motherboard vendor does post their support software for download.
    Apple Support Downloads #bootcamp

  • Should I use nVidia or MSI Drivers for my new MSI VGA card?

    Hi,
    Im just about to replace my old (non-MSI) Geforce 4600 TI, with a MSI FX 5700, and i'd like to know, should I use the MSI drivers on the MSI CD, or should I just use the latest nVidia driver from the nVidia web site?
    thanks for any help

    Yes,but the drivers 6X.XX are optimized to the Geforce 6 series.I don´t think I will gain any increase in perfomance if I use the 61.77 driver,for example,instead of the 56.63.And MSI drivers allow DOT,which is safer way of overclocking

  • Charging me a shipping fee for the new drive

    Cat you posted this and it's a small part of it but please explain why.
    A free CD containing the full application suite will soon to be available to order from our Online Store (a Shipping & Handling charge will apply).
    I paid for the card and as long as the card is not 5 years old I expect CL to support it for free. Why charge us a shipping charge when it could be put in the download section for all of us. This is why CL's days are numbered and if you think this monopoly Cl has over us will continue please call Senator Russ Fiengolds office here in Wisconsin and ask them what I have sent them.
    I have copied tons of peoples posts from last year and explained to them how this company takes money but never fixes the problems a lot of us have.
    I'm getting old waiting for you guys to get it together and would like to see something before I die.

    First let's clarify, they are not charging a shipping fee for the DRIVERS. You can download the drivers all you want. BUT if you want the full software suite IN ADDITION to the drivers then you gotta pay. It's just too large of a download for CL to host it. Which is why many of us agree that a bit torrent file would be the ideal solution. Everyone shares the bandwidth. http://forums.creative.com/creativel...essage.id=6344?It kinda sucks that we don't even get so much of a "We'll pass along the idea of hosting a .torrent file to the people in charge" from the mods ... I mean hell, back when I was a moderator for evga's forums we were in direct contact with the head marketing guy. We would constantly pass along things?from the forums like that.
    And evga LISTENED to the people, and even involved them in some of the decision making process. It's really not that hard. And we were able to share information about software fixes, etc. HEAR THAT MODS? Seriously, all you have to do is say "We'll look into the possibility of hosting a .torrent" and you've instantly satisfied a lot of people concerning this issue. WHY IS THIS SO DIFFICULT?!? I've been in your shoes...(well not really...evga never pissed off as many people as CL has lately...) I understand that it is difficult having to deal with a bunch of people who are this upset. But...seriously... The effort to try to appease the pitch-fork and torch wielding mob seems a little sketchy at best. *sigh*?

  • Still waiting for that NEW DRIV

    I have a X-FI audio, no EAX, no Crystil, No Soundfonts, NO MIXER, NO EQUILIZER, NO NOTHIN BUT TREBLE AND BASS. I'm getting older over here.

    i have xfi that seems to be locked into only mixing at 48kHz multiples. NO 44kHz.also one weird thin I noticed.if i use windows media player to play music and have it set to visualize using frequency bars. under vista there seems to be a permanent amount of bars rising up near the lowest end (even during almost silent passages)?with the same looking pattern no matter what song I play, the extent varies depending upon on what frequency I set the drivers at 44 vs 48 vs 96 vs 88 (in all cases my receiver reports only 48 or 96, never 44 or 88). under XP these apparently extraneous lowest octaves bars do not show when I play music. not sure if vista, xfi vista drivers are adding tons of lowest octave noise or if the drivers or vista or media center under vista is simply misrendering the spectrum or what.

  • Looking for a new Hard Drive for my MacBook

    I have less than 1 GB left on my Hard Drive and I'm looking for a bigger drive. I'm looking for a 250 GB as that will match my desktop. I know they were some talk about issues with the Western Digital Drives.
    Any suggestions? Also, I was thinking of going for one that was 7200 RPM. Is that going to be a lot louder and kill my battery a lot quicker? Thanks!

    I've got a 200GB Hitachi Travelstar 7K200 drive in my MacBook right now. About the only issue is that the bearings are a bit louder than the Apple OEM Seagate Momentus 5300.3 drive that was installed at the factory. Right now iStat Pro says that the hard drive temp is 72°F, which is about the same as my factory drive. Most specs say that you might expect maybe a half watt more power draw, which is unimportant if it's plugged in most of the time, and fairly small if you're on battery power.
    Initially I thought my MacBook was going to destroy itself, with the fan hitting maximum and CPU cycles being used up. Turns out it was just Spotlight indexing the hard drive, and the same would have been true for any new drive installation. I didn't think it would be an issue with a cloned drive, but it was.

  • New driver (Nvidia), gdm won't load

    I am trying to install the appropriate Nvidia driver.  My computer has the NVIDIA NV17 GeForce4 MX 440 controller.  Based on the instructions at https://wiki.archlinux.org/index.php/NVIDIA I attempted the alternate install because my card is old.  Everything seemed to go OK until I rebooted and Gnome didn't load.  Below is my xorg log.  Any help is appreciated.
    [ 18.143]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at [url]http://bugs.freedesktop.org/[/url].
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See [url]http://wiki.x.org/wiki/GitPage[/url] for git access instructions.
    [ 18.143]
    X.Org X Server 1.12.3.901 (1.12.4 RC 1)
    Release Date: 2012-08-03
    [ 18.143] X Protocol Version 11, Revision 0
    [ 18.143] Build Operating System: Linux 3.4.4-2-ARCH i686
    [ 18.143] Current Operating System: Linux exam-desktop 3.4.9-1-ARCH #1 SMP PREEMPT Wed Aug 15 18:11:01 UTC 2012 i686
    [ 18.143] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=c76a148a-de41-4697-92a1-13dc749fdc46 ro quiet
    [ 18.143] Build Date: 09 August 2012 10:08:21AM
    [ 18.143]
    [ 18.143] Current version of pixman: 0.26.2
    [ 18.143] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 18.143] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.143] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Aug 23 15:06:34 2012
    [ 18.168] (==) Using config file: "/etc/X11/xorg.conf"
    [ 18.168] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 18.188] (==) ServerLayout "Layout0"
    [ 18.188] (**) |-->Screen "Screen0" (0)
    [ 18.188] (**) | |-->Monitor "Monitor0"
    [ 18.203] (**) | |-->Device "Device0"
    [ 18.203] (**) |-->Input Device "Keyboard0"
    [ 18.203] (**) |-->Input Device "Mouse0"
    [ 18.203] (==) Automatically adding devices
    [ 18.203] (==) Automatically enabling devices
    [ 18.237] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 18.237] Entry deleted from font path.
    [ 18.271] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 18.271] Entry deleted from font path.
    [ 18.271] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 18.272] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 18.272] Entry deleted from font path.
    [ 18.272] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 18.272] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 18.272] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 18.272] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 18.272] (WW) Disabling Keyboard0
    [ 18.272] (WW) Disabling Mouse0
    [ 18.272] (II) Loader magic: 0x82225a0
    [ 18.272] (II) Module ABI versions:
    [ 18.272] X.Org ANSI C Emulation: 0.4
    [ 18.272] X.Org Video Driver: 12.1
    [ 18.272] X.Org XInput driver : 16.0
    [ 18.272] X.Org Server Extension : 6.0
    [ 18.273] (--) PCI:*(0:1:0:0) 10de:0171:1462:8730 rev 163, Mem @ 0xe8000000/16777216, 0xd8000000/134217728, 0xe0000000/524288, BIOS @ 0x????????/131072
    [ 18.273] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 18.273] (II) LoadModule: "extmod"
    [ 18.289] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 18.316] (II) Module extmod: vendor="X.Org Foundation"
    [ 18.316] compiled for 1.12.3.901, module version = 1.0.0
    [ 18.316] Module class: X.Org Server Extension
    [ 18.316] ABI class: X.Org Server Extension, version 6.0
    [ 18.316] (II) Loading extension MIT-SCREEN-SAVER
    [ 18.316] (II) Loading extension XFree86-VidModeExtension
    [ 18.316] (II) Loading extension XFree86-DGA
    [ 18.316] (II) Loading extension DPMS
    [ 18.316] (II) Loading extension XVideo
    [ 18.316] (II) Loading extension XVideo-MotionCompensation
    [ 18.316] (II) Loading extension X-Resource
    [ 18.316] (II) LoadModule: "dbe"
    [ 18.316] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 18.317] (II) Module dbe: vendor="X.Org Foundation"
    [ 18.317] compiled for 1.12.3.901, module version = 1.0.0
    [ 18.317] Module class: X.Org Server Extension
    [ 18.317] ABI class: X.Org Server Extension, version 6.0
    [ 18.317] (II) Loading extension DOUBLE-BUFFER
    [ 18.317] (II) LoadModule: "glx"
    [ 18.317] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 19.836] (II) Module glx: vendor="NVIDIA Corporation"
    [ 19.836] compiled for 4.0.2, module version = 1.0.0
    [ 19.836] Module class: X.Org Server Extension
    [ 19.836] (II) NVIDIA GLX Module 304.37 Wed Aug 8 20:13:20 PDT 2012
    [ 19.836] (II) Loading extension GLX
    [ 19.836] (II) LoadModule: "record"
    [ 19.836] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 19.851] (II) Module record: vendor="X.Org Foundation"
    [ 19.851] compiled for 1.12.3.901, module version = 1.13.0
    [ 19.851] Module class: X.Org Server Extension
    [ 19.851] ABI class: X.Org Server Extension, version 6.0
    [ 19.851] (II) Loading extension RECORD
    [ 19.851] (II) LoadModule: "dri"
    [ 19.851] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 19.866] (II) Module dri: vendor="X.Org Foundation"
    [ 19.866] compiled for 1.12.3.901, module version = 1.0.0
    [ 19.866] ABI class: X.Org Server Extension, version 6.0
    [ 19.866] (II) Loading extension XFree86-DRI
    [ 19.866] (II) LoadModule: "dri2"
    [ 19.866] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 19.867] (II) Module dri2: vendor="X.Org Foundation"
    [ 19.867] compiled for 1.12.3.901, module version = 1.2.0
    [ 19.867] ABI class: X.Org Server Extension, version 6.0
    [ 19.867] (II) Loading extension DRI2
    [ 19.867] (II) LoadModule: "nvidia"
    [ 19.879] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 20.033] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 20.033] compiled for 4.0.2, module version = 1.0.0
    [ 20.033] Module class: X.Org Video Driver
    [ 20.125] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
    [ 20.125] (EE) NVIDIA: system's kernel log for additional error messages.
    [ 20.125] (II) UnloadModule: "nvidia"
    [ 20.125] (II) Unloading nvidia
    [ 20.125] (EE) Failed to load module "nvidia" (module-specific error, 0)
    [ 20.125] (EE) No drivers available.
    [ 20.125]
    Fatal server error:
    [ 20.125] no screens found
    [ 20.125]
    Please consult the The X.Org Foundation support
    at [url]http://wiki.x.org[/url]
    for help.
    [ 20.125] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 20.125]
    Moderator edit: Added [ code ] tags around this listing to keep it readable. Please do so by yourself in future. -- bernarcher
    Last edited by bernarcher (2012-08-23 22:48:08)

    What do you mean by "alternate install"? Because (in my understanding ) wiki alternate install is about custom kernel not old hardware. I don't have experience with old nvidia cards but:
    compiled for 4.0.2, module version = 1.0.0
    (EE) NVIDIA: Failed to load the NVIDIA kernel module.
    NVIDIA GLX Module  304.37
    looks like you trying current nvidia drivers (i.e. for hardware newer than GeForce 5xxx = not yours!). Go and RTFM more carefully, install older drivers from AUR for legacy hardware designed to work with your graphics card, check out Xorg compatibility (again, read wiki) or go with open source nouveau drivers which doesn't have Xorg issues and see if they work for you.
    Last edited by masteryod (2012-08-23 21:31:02)

  • Where to add new drives for best speed

    I've got a G4 here, and I want to add a 300GB drive for video scratch data - obviously I'd like everything to be as fast as possible.
    My question is, the front drive bay has ATA buses labeled ATA33 and ATA66, which I'm assuming mean it uses the lower speed ATA. On the other hand, the higher speed bus (ATA100) already has the main system drive plugged into it. Which location for my new drive will get me the best performance, on the same cable with the other drive, (ATA100) or on a second cable (ATA66)?

    Not everyone realizes that the MDD has native large (48-bit) support on both the ATA-4 and ATA-6 buses.
    What you may want, though, is an ATA or SATA controller if you want to create a scratch RAID.
    the ATA-4 (ATA/66) bus is about 4% slower than ATA/100. I'm not sure if you will see the 65MB/sec that your new drive is capable of. But that has nothing to do with being ATA/100/133 or ATA-6 or ATA-7.
    You could use the 300GB drive as boot + scratch drive, using the ATA/100 bus, and keep /Users/account on ATA/66 drive bus. Otherwise, if you already keep OS/Apps only on startup drive, and have data and media files on another drive/bus, you might want to look into (S)ATA controller.
    There is an article (sticky) on MacNN Forum, under PowerMac, that lists what Macs have native support for 48-bit etc., very useful. The QS/2002 was the first PMac to support >137GB drives too.

  • Can't find new drive when looking for start up disk

    I upgraded to a new SATA HD on my G5. The process that I took was to copy the replaced drive via Super Duper. I moved the copy to my internal back up drive and then swapped out the old drive for a new drive. When I booted up, I did so from the back up drive and had no issues. I then partitioned the new drive and moved the files from the back up drive to the new drive. I then went into prefs to change the start up disk to the new drive - however, it is not showing up. The drive does show up in system profiler and I can navigate through it. However, nothing it is not picked up in start up??? Any thoughts?
    Thanks in advance

    Hi Turner100-
    If you did not clone the drive onto the new one, then you must install OSX on that drive in order to have it boot the Mac.
    Luck-
    -DP

  • Merge libraries from old hard drive to new

    I bought a new computer, I installed the old computers hard drive in the new computer as a secondary hard drive. My backup is on the old drive. Both drives have Win7. I would like to know how to get the backup libraries to the new drive without losing anything on either. Any help is appreciated in advance.

    So the new drive is just drive "E" or something?  Just copy the whole Music folder over (or MyMusic, isn;t it, on Windows?), or just the iTunes folder within that one if you want.

  • Help! Can't get to restore on a new drive

    I used Time Machine to make a complete backup of my MacBook on an external hard drive and everything went very smoothly. I only had about 32GB of used space when I did the backup. I then removed the 120GB hard drive and installed a 320GB drive as the DIY manual said to and it was very easy to get it swapped out.
    I then turned on my computer with the Install DVD and used the Utilities menu to restore my system from a backup. It recognized my external drive I had put my backup on, recognized my backup just fine from earlier today, and then I went to the next screen and it calculated the amount of space it would need. Once it finished with that, it sat at the screen trying to search for the drive to restore to and didn't do anything. Could I have not pressed the drive in all the way? The bracket went on just fine and I didn't have any problems with it. I suppose it could be a bad drive but I don't think it is. Does it just take a really long time to recognize which drive (the internal one) to restore to?
    Any ideas as to what is wrong here? I really need to get this restored and then partitioned to install Windows on it as well to get some research done on it tomorrow.

    I waited for 30 minutes and then said forget it. I went through disk utility, created 1 partition and named it Macintosh HD, and now I'm waiting for it to erase with one pass of writing 0's as this was suggested in another thread for a new drive. I have another hour until that finishes and then I'll see if I can get it to restore completely and recognize the drive. If it doesn't show up after that, then I'll definitely do the normal install and then restore my data from the time machine backup.
    This has been a bigger hassle than I would have liked but hopefully it will get me what I need. I'll let you know how it goes. Thanks for the help in both threads V.K.

  • Sample/bit rate for Garage Band '08

    Hello, I don't have a Mac yet, but am going to get the mini soon and do some acoustic/keyboard stuff in Garage Band to get back into recording. What is the sample and bit rate for the new version? I had read that older versions were 16?
    Thanks.
    Joe

    joewherefast wrote:
    Hello, I don't have a Mac yet, but am going to get the mini soon and do some acoustic/keyboard stuff in Garage Band to get back into recording. What is the sample and bit rate for the new version? I had read that older versions were 16?
    Thanks.
    Joe
    The sample rate is fixed at 44.1kHz. The bit depth (audio resolution) is selectable at either 16 bits or 24 bits.

  • Creative Smart Recorder with new driver

    'Creative Smart Recorder with new driver< I have a Sound Blaster Audigy 2v purchased and installed in Oct, 2005. I use the Smart Recorder a lot and all was fine until two weeks ago when I downloaded and installed new driver software from Creative. All of the rest of the software works fine (no change or improvement in the operation in the card, which is why I went for the new driver), but?now when I try to start the ?Smart Recorder I get a Windows message "Creative Smart Recofder has encountered a problem and needs to close. We are sorry for the inconvenience."? It asks if I want to Send Error Report. As far as I can tell Smart Recorder never opened. Other than putting my computer back into the what it was two weeks ago is there anything that I can do? I'm not sure that the previous driver, etc. is still there. Thank you.

    + Need to add something. I thought that if a program loaded I was okay. But, no. The media studio will load but is no longer connected, I mean nothing will record, not from the internet or the CD player. No connection. Whatever Creative gave me, it is not friendly with older versions of the software.

  • Restore using Time Machine to new hard drive, but last "full" backup was 2012.  how do I restore the rest of the Time Machine backups, particularily IPHOTO libraries for each user?

    Restore using Time Machine to new hard drive, but last "full" backup was in 2012.  How do I restore the rest of the Time Machine backups, particularily IPHOTO libraries for each user? 
    I entered Iphoto for my user and only photo up until 2012 were in the library.  I thought the restore would do the incremental Time Machine backups too.....
    Running 10.8.2

    It usually means you are running Mavericks but have an earlier version of iPhoto. Open the App Store and upgrade your version of iPhoto to the Mavericks version.
    The iWork apps are free with a new iOS device since 1 SEP 2013. They are free with a new Mac since 1 OCT 2013. They are also free with the upgrade to OS X Mavericks 10.9 if you had the previous version installed when you upgraded.The iWork apps are free with a new iOS device since 1 SEP 2013. They are free with a new Mac since 1 OCT 2013. They are also free with the upgrade to OS X Mavericks 10.9 if you had the previous version installed when you upgraded.
    iWork and iLife for Mac come free with every new Mac purchase. Existing users running Mavericks can update their apps for free from the Mac App Store℠. iWork and iLife for iOS are available for free from the App Store℠ for any new device running iOS 7, and are also available as free updates for existing users. GarageBand for Mac and iOS are free for all OS X Mavericks and iOS 7 users. Additional GarageBand instruments and sounds are available for a one-time in-app purchase of $4.99 for each platform.

  • Need new driver for nVIDIA 7900GTX graphic card (OS : Mac OS X 10.4)

    Any one know where i can get the new driver for nVIDIA 7900GTX graphic card (OS : Mac OS X 10.4)

    http://www.nvidia.com/object/7seriestechspecs.html
    Pls visit above nVIDIA web page.
    based on NVIDIA web pages, 7900GTX supports MAC OS X.
    but .....seems not so far.

Maybe you are looking for