Nouveau driver (OSS 3D driver for Nvidia)

I have tried to make packages for the nouveau driver with success, but would like feedback from other users before submitting them to AUR.
To keep things clean and maintanable, i decided to create 3 packages :
nouveau-git                     ---- the kernel modules
libdrm-nouveau-git           ---- userspace part that replaces libdrm
xf86-video-nouveau-git     ---- the driver itself (the easiest package)
nouveau-git
# Contributor : Lone_Wolf [email protected]
pkgname=nouveau-git
pkgver=20061126
pkgrel=1
pkgdesc="Kernel modules for nouveau driver"
url="http://nouveau.freedesktop.org/wiki/"
license=('GPL')
depends=(glibc)
sources=()
md5sums=()
options=('NOLIBTOOL')
install=nouveau-git.install
_kernver=2.6.18-ARCH
# GIT variables
_gitroot="git://anongit.freedesktop.org/git/mesa/drm/"
_gitname="drm"
build() {
mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm
cd $startdir/src
msg "Connecting to git.freedesktop.org GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git-pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
cd ${_gitname}-build
git checkout nouveau-1
# ./autogen.sh
# ./configure --prefix=/usr
# make ||return 1
# make DESTDIR=$startdir/pkg install
cd linux-core
make ||return 1
# install drm.ko and nouveau.ko kernel modules
# drm.ko is renamed to drm-nouveau.ko to avoid problems with the existing drm.ko module
install -D -m644 drm.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/drm-nouveau.ko
install -D -m644 nouveau.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/nouveau.ko
nouveau-git.install
# arg 1: the new package version
post_install() {
KERNEL_VERSION='2.6.18-ARCH'
depmod -v $KERNEL_VERSION > /dev/null 2>&1
echo ">>>"
echo ">>> Make sure you have installed the xf86-video-nouveau-git package also"
echo ">>> To make this work execute the following as root :"
echo ">>> rmmod nvidia"
echo ">>> modprobe drm
echo ">>> modprobe -o --drm drm-nouveau"
echo ">>> modprobe nouveau"
echo ">>>"
echo ">>> Now edit your /etc/X11/xorg.conf to use the nouveau driver:"
echo ">>> Change in Section "Device" the Driver line to Driver "nouveau" "
echo ">>>"
echo ">>> Now start Xorg and run for cover !! "
echo ">>>"
/bin/true
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
rmmod drm-nouveau || echo 'In order to use the new nvidia module, exit Xserver and unload it manually.'
# arg 1: the old package version
post_remove() {
KERNEL_VERSION='2.6.18-ARCH'
depmod -v $KERNEL_VERSION > /dev/null 2>&1
op=$1
shift
$op $*
libdrm-nouveau-git
# Contributor : Lone_Wolf [email protected]
pkgname=libdrm-nouveau-git
pkgver=20061126
pkgrel=1
pkgdesc="Userspace interface for nouveau driver"
url="http://nouveau.freedesktop.org/wiki/"
license=('GPL')
depends=('glibc' 'nouveau-git')
conflicts=('libdrm')
provides=('libdrm')
sources=()
md5sums=()
options=('NOLIBTOOL')
# GIT variables
_gitroot="git://anongit.freedesktop.org/git/mesa/drm/"
_gitname="drm"
build() {
mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm
cd $startdir/src
msg "Connecting to git.freedesktop.org GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git-pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
cd ${_gitname}-build
git checkout nouveau-1
./autogen.sh
./configure --prefix=/usr
make ||return 1
make DESTDIR=$startdir/pkg install
xf86-video-nouveau-git
# Contributor : Lone_Wolf [email protected]
pkgname=xf86-video-nouveau-git
pkgver=20061126
pkgrel=1
pkgdesc="OSS 3D driver for nvidia cards"
url="http://nouveau.freedesktop.org/wiki/"
license=('GPL')
depends=('libdrm-nouveau-git' 'glibc')
source=()
md5sums=()
options=('NOLIBTOOL')
_gitroot="git://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau/"
_gitname="xf86-video-nouveau"
build() {
cd $startdir/src
msg "Connecting to git.freedesktop.org GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git-pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
cd ${_gitname}-build
./autogen.sh
./configure --prefix=/usr
make ||return 1
make DESTDIR=$startdir/pkg install

Hi
I've just get the nouveau driver installed successfully. But i had to tweak some things in your PKGBUILDS.
here you'll found the PKGBUILD i finally got.
nouveau-git (i hadn't git installed before compiling)
# Contributor : Lone_Wolf [email protected]
pkgname=nouveau-git
pkgver=20061126
pkgrel=1
pkgdesc="Kernel modules for nouveau driver"
url="http://nouveau.freedesktop.org/wiki/"
license=('GPL')
depends=(glibc)
makedepends=('git')
sources=()
md5sums=()
options=('NOLIBTOOL')
install=nouveau-git.install
_kernver=2.6.18-ARCH
# GIT variables
_gitroot="git://anongit.freedesktop.org/git/mesa/drm/"
_gitname="drm"
build() {
mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm
cd $startdir/src
msg "Connecting to git.freedesktop.org GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git-pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
cd ${_gitname}-build
git checkout nouveau-1
# ./autogen.sh
# ./configure --prefix=/usr
# make ||return 1
# make DESTDIR=$startdir/pkg install
cd linux-core
make ||return 1
# install drm.ko and nouveau.ko kernel modules
# drm.ko is renamed to drm-nouveau.ko to avoid problems with the existing drm.ko module
install -D -m644 drm.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/drm-nouveau.ko
install -D -m644 nouveau.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/char/drm/nouveau.ko
libdrm-nouveau-git: nothing to change
xf86-video-nouveau-git: faced 2 problems when trying to build this package: · Missing xf86driproto (so added to makedepends). · Compilation failure when trying to build the manpage. I edit the PKGBUILD with a dirty hack to avoid manpage compilation.
# Contributor : Lone_Wolf [email protected]
pkgname=xf86-video-nouveau-git
pkgver=20061126
pkgrel=1
pkgdesc="OSS 3D driver for nvidia cards"
url="http://nouveau.freedesktop.org/wiki/"
license=('GPL')
depends=('libdrm-nouveau-git' 'glibc')
makedepends=('xf86driproto')
source=()
md5sums=()
options=('NOLIBTOOL')
_gitroot="git://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau/"
_gitname="xf86-video-nouveau"
build() {
cd $startdir/src
msg "Connecting to git.freedesktop.org GIT server...."
if [ -d $startdir/src/$_gitname ] ; then
cd $_gitname && git-pull origin
msg "The local files are updated."
else
git clone $_gitroot
fi
msg "GIT checkout done or server timeout"
msg "Starting make..."
cp -r $startdir/src/$_gitname $startdir/src/$_gitname-build
cd $startdir/src/${_gitname}-build
##### Avoid manpage compilation #####
mv Makefile.am Makefile.am.old
cat Makefile.am.old | sed -e 's/SUBDIRS = src man/SUBDIRS = src/g' > Makefile.am
mv configure.ac configure.ac.old
cat configure.ac.old | sed -e 's/XORG_MANPAGE_SECTIONS/# XORG_MANPAGE_SECTIONS/g' | sed -e 's/man/Makefile//g' > configure.ac
##### End of hack #####
./autogen.sh
./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
here are my 2cents

Similar Messages

  • Satellite A100-599 - Unable to install driver for nVidia GeForce Go 7600

    Greetings to all!
    Trying to install driver for Nvidia GeForce Go 7600 after complete system reinstall, but without any success. Only safe mode is available after this driver installation, tried with Windows XP, Vista and Windows 7 and with different drivers from Nvidia and Toshiba sites - same result all the time :(
    Would be glad to realize how to solve this... Thanks a lot.
    Satellite A100-599
    Current OS: Windpws Vista Home premium sp1.
    Message was edited by: Airtoground

    I do not want to install XP again, will try to fund a solution for Vista. Here is what I got from Installs list:
    Component List Satellite A100 PSAAR; Satellite Pro A100 PSAAs; Satego A100 PSAAW
    Contents and Installation order
    for Windows VISTA
    Windows Vista 32bit Home Premium - Windows Vista Home Premium&Basic(English) RTM
    - SLP Module OEMSLP2.0
    - Sun Java 2 Runtime Environment v1.6.0
    1 KB928190(For updated USBHub.sys) KB928190
    2 TOSHIBA Value Added Package Please use the attached ini file for ButtonSetting.ini and FeatureSelect.ini when the TVAP installation. v1.0.7
    3 Intel 945GM/940GML Display Driver v7.14.10.1114 (Package:V15.0.1.1114 PV)
    4 ATI ATI M52P/M54P/M56P Display Driver V8.31.100.3.2-061124a2-039454C
    *5 Nvidia G72M/G72MV/G73M Display Driver v97.46(TBD)*
    I found this driver but it says "no suitable driver found, installation wizard stops its work".
    Any ideas what could it mean?
    Thanks to all.

  • Driver for NVidia GeForce 2 MX 200

    Hello!
    I have this problem for a while... I also know that there is a patch with drivers for Nvidia, but
    it does not include one for Geforce 2 MX 200 (only GeForce 2 Ulta....).
    Did anyone know if there is an answer for my problem?
    Thank You.

    Check this link:
    http://soldc.sun.com/developer/support/driver/tools/video/video-index.html

  • Which display driver package do I need for Nvidia Quadro NVS 110m?

    Hi there,
    I'm new to (Arch) Linux and was wondering which display driver package I need. I have a Dell Latitude D620 with a "nvidia quadro nvs 110m".
    In the Arch Linux beginners guide it says:
    1. nvidia-96xx slightly newer cards up to the GF 4.
    2. nvidia-173xx Geforce FX series cards
    3. nvidia newest GPUs after the GF FX
    Consult the NVIDIA-Homepage to see which one is for you.
    But on the NVIDIA-Homepage it says:
    The GeForce M series and GeForce Go series notebook GPUs use drivers that have been customized by the notebook manufacturers to support hot key functions, power management functions, lid close and suspend/resume behavior. NVIDIA has worked with some notebook manufacturers to provide notebook-specific driver updates, however, most notebook driver updates must come from the notebook manufacturer.
    And they just forward me to Dell Support which obviously neither offers a linux driver nor linux driver information for the D620.
    So which of the three packages do I have to install?
    Are these packages open-source drivers? Do I need proprietary nvidia drivers to get full 3D-performance?
    Does anybody have experience with the D620?
    Although I'm new to Linux and I like the KISS idea behind Arch Linux, I still want to have all that Compiz Fusion eye candy. I also want to play a few games which need 3D performance (once I'm familiar with wine). ;-)
    Thanks in advance for your help,
    Blackhole
    Last edited by blackhole (2008-12-14 10:22:05)

    Thanks a lot.
    Final question: How does Arch Linux deal with license issues? If the nvidia package includes the original nvidia drivers linked above, doesn't that cause any legal/moral problems? Like in Ubuntu for example they always point out that it's proprietary software you're gonna install when enabling the nvidia drivers.
    Just wondering...

  • Gaming: driver update for NVIDIA GeForce - Sat P20

    i am not able to run an driver update for my NVIDIA GeForce FX Go5600 on Satellite p20-521. can someone help me out please.

    Hi Cuong
    I assume you use a wrong graphic driver or a wrong graphic card driver update procedure.
    Toshiba recommend to use the own graphic drivers. The all drivers for European Toshiba notebooks you will find on this website:
    http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp
    After successfully downloading please unpack the driver. There you should find a setup.exe. Please install it.
    Well, if this procedure doesnt work so please go to device manager and select the graphic card and right click. Then you can select the option update driver. The driver source is the driver download place.

  • Need driver for Nvidia Geforce Go 6150 for Windows 7

    Hi, can anyone please tell me where I can download the driver for Nvidia Geforce Go 6150 for Windows 7. I have tried the drivers for Windows Vista but it does not work. Thanks in advance.

    I followed this tutorial after installing Win7 on a friend's HP Pavilion tx1332LA (the tutorial is in Spanish):
    http://www.taringa.net/posts/ebooks-tutoriales/2570715/NVIDIA-nForce-Chipset-Driver-(windows-7-_-vista).html 
    And since the coprocessor was no longer listed as an unknown device (or something similar), I assumed everything worked correctly afterwards... is that alright or do I have to check in some other way? 
    Well, here is a part of what the tutorial says (what was enough for me):
    -Should work for 32-bits and 64-bits versions (I installed it on Windows 7 x64).
    -First of all, we see that in the Device Administrator, there is an unknown device, a coprocessor. That's because Windows 7 can't find its driver.
    -Download and install the following:
    NVIDIA nForce Chipset Driver
    ftp://ftp.hp.com/pub/softpaq/sp39501-40000/sp39535.exe
    and see if the coprocessor is recognized.
    -If not, go to the Device Administrator and find the unrecognized coprocessor.
    -Right-click on it and select Update driver...
    -Select browse my computer -> let me pick -> have disk (this is what the tutorial says, it wasn't exactly the same for me, but I eventually got to pick a folder on my hard drive)
    -Browse and select the following (assuming C represents the drive where everything from the file above got unpacked):
    C:\swsetup\SP39535\WinVista32\SMU\smuc.inf (for 32-bits version)
    C:\swsetup\SP39535\WinVista64\SMU\smuc64.inf (for 64-bits version)
    Note: That is what the tutorial says, but I could only select the SMU folder and not a specific file. After selecting the SMU folder, a driver was automatically listed, I selected it and it got installed.
    -Now, the coprocessor should be recognized (check the Device Manager).
    Hope it helps!
    Pixzeto
    (PD: HP, the graphical editor on this forum sucks on Opera 10.01)

  • 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.

  • I cannot find an update for NVIDIA nForce 10/100 Ethernet Driver Version

    I am upgrading from Windows Vista to Windows 7 and the Upgrade Advisor states that NVIDIA nForce 10/100 Ethernet needs the latest driver.The current driver is 67.8.9.0
    I cannot find the uodate on the NVIDIA site! This is the only action the Advisor mentions.
    Chipset: GeForce 7100/nForce 630i
    Intel Core 2 Duo
    About my cpu:- http://support.hp.com/us-en/product/HP-Pavilion-a6540in-Desktop-PC/3733085/model/3750808/document/c0...
    about my motherboard:- http://support.hp.com/us-en/product/HP-Pavilion-a6540in-Desktop-PC/3733085/model/3750808/document/c0...
    This question was solved.
    View Solution.

    Hi:
    Here is the 32 bit driver...
    http://www.nvidia.com/download/driverResults.aspx/30521/en-us

  • I have an external drive - WD My Passport FOR MAC. I want to format it to work on both mac and windows. Which format do you think I should use? Will either one cause damage to the files on the hard drive?

    I have an external hard drive - WD My Passport FOR MAC. I want to format it to work on both mac and windows. I also want to be able to connect it to my TV and watch movies.
    I read up and I think I am supposed to use exFAT or FAT32? I also saw MS-DOS. Which format should I should use? Will any of them cause damage to the files on the hard drive?
    My little memory stick uses MS-DOS and it works on both mac and windows.
    Please can you just tell me a little about each and suggest which one to use.
    I know how to change it once you tell me so don't waste your time writing about changing it.

    Will any of them cause damage to the files on the hard drive?
    WARNING: FORMATTING A DRIVE ERASES IT COMPLETELY !!
    If you need to carry large files (e.g., larger than about 4GB) back and forth, you may need ExFAT. Otherwise MS-DOS works for smaller files.
    The Mac can Read, but not write Windows New Technology File System (NTFS) without an add-on program such as Paragon NTFS.

  • My problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set sav

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/986549 /questions/986549]''
    my problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set save downloads to my e drive....but still firefox keeps saving them to my c drive....i have 4 internal hard drives in my rig....and have tried saving downloads to them all.......why this is happening i cant understand....i have tried lots of suggestions....and have re-installed firefox multiple times

    hello, there's a general regression in firefox 27 that won't allow files to download directly into a root drive. please try to create a subfolder (like ''E:\Downloads'') and set this as default location for downloads...
    also see [https://bugzilla.mozilla.org/show_bug.cgi?id=958899 bug #958899].

  • Got a new MBP and old external hard drive is too full for backup

    I just got a new MBP and got all my data migrated and everything. I plugged my external hard drive in to run a backup, and it apparently is too full to run a backup of the new computer.  Even though all the files are the same (mostly), I guess it's not going to overwrite anything because it's a new computer.  Should I just get a new backup drive and start fresh for this computer.  Should I reformat my old backup drive (and if so, how?)?  Advice?

    You should always have two backups of all vital data in any regard. A good 1TB Toshiba USB is $65
    If there is NOTHING on the external HD you cant lose, format in disk utility > erase > format MAC OSX extended journaled.
    then apply a Time Machine backup to the old HD of your new computer. That will free of a great deal of space.
    However you should still have a 2nd backup of data.  2 backups is 1, and 1 is none.

  • How do I use WD Raptor for OS/Apps drive and RAID 0 for Home/Data drive

    So far I have configured my machine with a WD Raptor 74GB as the startup disk, and created a RAID 0 with the Seagate 250 GB drive (shipped with the machine) and a 250GB partion of a WDC 320GB drive. All drives were zeroed and I used the install disks to load Tiger on the Raptor. I backed up to a LaCie D2 1TB external hard drive with LaCie's Silverkeeeper.
    I would like to use the WD Raptor as startup/apps/scratch disk and the RAID 0 for the user folders and other data. I would then like to create a RAID 1 with the RAID 0 and a 500GB partion of the LaCie 1TB external.
    I have learned however that what I would like and what I can have are not always compatible.
    My questions:
    Is the Silverkeeper backup sufficent, or should I have cloned my previous system?
    What folders should accompany the application folder on the Raptor? So far I have only put the app folder there and nothing works. I suspect things like 'application support' should be there as well.
    Is there a way to keep my home folder on the RAID 0 without using Terminal or spending too much time as the root user? I tried copying my home folder onto to the RAID 0 and putting an alias in the user account I had to create while installing the OS on the Raptor. This kind of works but is not a particularly elegant solution.
    I would appreciate any advice on how to proceed or if the proposed configuration is even achievable.

    Photoshop files of 1GB+ can eat up memory and scratch. And the more drives for scratch, the better.
    Some of the limitations are with the bus, bandwidth, and 'swapping' code in and out of different cores that is inefficient.
    Compilers can do some, but from the time new hardware (8 cores) to seeing improvements to compiler, and out to software (applications) and OS, can take a year or more but provide in the neighborhood sometimes of 40%. In which time, newer designs will change the equation. Caching and VM will improve with Leopard, but beyond that...?
    So... back to "read world" IF you are in the habit of working with 1-2GB images, then a pair of Raptors for boot is helpful, AND 8GB and more of RAM, AND 4-8 drives for scratch. (Think of those Sonnet Port Multiplier controllers and Fusion 500 style case for 5 drives on one port).
    If you work with files smaller than 500MB range, your needs are cut way down.
    150GB Raptor boot drive. Small. subtract 25% for minimum free space, 140GB formatted, kind of tight for some. But it handles 60% well.
    The outer 30% of 465GB (RE2) is also fast and good performance. I partition large boot drives to keep the OS and apps contained in the outer 1/3.
    Mac Pro Memory Usage and Performance
    If your work flow means doing more than one thing at a time on your Mac Pro, then you will see significant gains if you spend extra to get the 8-core version. Our Photoshop CS3 actions were completed 39% faster on the 8-core when we had 3 other apps busy crunching. This advantage emerges in spite of the memory bus limitations of the 8-core Mac Pro.
    http://www.barefeats.com/octopro3.html
    CS3: Justifying 8-Cores
    http://www.barefeats.com/octopro4.html
    Pshop Test G5 Quad 16GB Raptor RAID
    Photoshop and multi-core
    http://blogs.adobe.com/scottbyer/
    Mac Pro 2GHz 4GB 10K Raptor 23" Cinema   Mac OS X (10.4.9)   WD RE RAID Aaxeon FW800 PCIe MDD-G4 APC RS1500 Vista

  • I want to know about time machine if i can use the hard drive that i use for time machine back up as a normal hard drive too or if it's only for time machine

    I want to know about time machine if i can use the hard drive that i use for time machine back up as a normal hard drive too or if it's only for time machine
    and if it yes i want to know if i have 1TB hard disk to use the 500gb for time machine and the other 500gb for normal use

    thank you very much because i am considering to buy the porsche design hard disk 1TB and i want to have it for normal use and for time machine is a pitty to give 1TB for back up only again thanks and i know seperate the back and the working jobs are better but the i have to have 2 hardisks and i want only 1

  • On my Macbook pro 15 2011, System Profiler is suggesting that it uses SATA III for the hard drive and SATA II for the Optical Drive.  Is that true?

    On my Macbook pro 15, 2011, System Profiler is suggesting that it uses SATA III for the hard drive and SATA II for the Optical Drive.  Is that true?

    That is correct. The tech specs indicate:
    Hard Drive Interface
    6.0 Gbps Serial ATA (SATA)
    Optical Drive Interface
    3.0 or 6.0 Gbps Serial ATA (SATA)

  • HT201250 How do I find out what portable drive was the drive I used for Time Machine Backup?

    Hi, I have 10.7.4 and need to figure out what drive I was using for Time Machine Backup.  I have three drives and I have connected each of them to my macbook pro, but I get an error, "Time Machine Error, The backup disk is not available" when I hit the time machine icon on the top of the screen and the "backup delayed" prompt.  If I try Back up Now I get message, "Time Machine could not complete the backup.  Back up disk is not available."  I am trying to figure out what the time machine back up would actually look like as a file on the drives but I don't see a folder/file name Time Machine.  If I enter Time Machine I can see in the far right column, in purple, the last back up date (Sept. 12, 2012), but when I hit it nothing happens.  In the Time Machine preference box the select disk has, in red and to the right, "Delayed" with an "i" within a circle, and the option indicates, "Next backup: when disk is connected."
    I know I have a years worth of backups on one of the three drives, but I can't figure out how the heck to find them or how to determine what was the last drive I used for the backups within Time Machine.  Help please.

    Hi, I have 10.7.4 and need to figure out what drive I was using for Time Machine Backup.  I have three drives and I have connected each of them to my macbook pro, but I get an error, "Time Machine Error, The backup disk is not available" when I hit the time machine icon on the top of the screen and the "backup delayed" prompt.  If I try Back up Now I get message, "Time Machine could not complete the backup.  Back up disk is not available."  I am trying to figure out what the time machine back up would actually look like as a file on the drives but I don't see a folder/file name Time Machine.  If I enter Time Machine I can see in the far right column, in purple, the last back up date (Sept. 12, 2012), but when I hit it nothing happens.  In the Time Machine preference box the select disk has, in red and to the right, "Delayed" with an "i" within a circle, and the option indicates, "Next backup: when disk is connected."
    I know I have a years worth of backups on one of the three drives, but I can't figure out how the heck to find them or how to determine what was the last drive I used for the backups within Time Machine.  Help please.

Maybe you are looking for

  • Report of input - GR and IR

    Hi, expert. I need your help about an report to , I need check if  all input GR and IR with the registers of the documents 50...and 51...was input an SAP. Have any t-code standard for this it. PS: MB5S - no good. Tks Armando

  • From and To date Validations in Adobe form

    Hi All, I'm new to the Adobe forms, I have a requirement to do validations on Date fields. from >= current to >= from               and use Month YYYY format (e.g., September 2009) Could anyone please let me know the code to validate in the Adobe for

  • With the Z process code IDOC going to status 64

    Hello Everyone, I have created the Z process code for a custom function module via finishing the steps in BD51, WE57 and WE42. But when I used this Z process code in my inbound idoc, my IDOC are going to the status 64. Any inputs please? Thanks, Pooj

  • I run OSX 10.6.8 The latest version of Safari has been downloaded in error. How can I retrieve Safari with all old bookmarks etc?

    I run OSX 10.6.8. Latest version of Safari has been downloaded in error. What is the best metod of retrieving Safari with all bookmarks etc intact?

  • Cross platform in PRD environment

    Hi, we have DB and CI with HP-UX and four aplication servers. the 4 apps are running with Linux. In this 4 apps 1 Dialog instance is running in DEV/QAS. can we maintain like this type of environment in PRD. Please clarify this, Thanks, Harish