NVidia packages - let's not use nvidia-installer [RFC]

Hi. After messing around with Xgl I (for some reason) decided that I hated the way the nvidia driver package doesn't account for all the files the nvidia-installer spits out/modifies. I wanted all the files involved to be properly managed by pacman. So I made some PKGBUILDs, looking at Fedora and Gentoo stuff for inspiration, and getting annoyed trying to work out what needs to be where based on NV's unmaintained install makefile..:shock:
The PKGBUILDs that follow separate the kernel module from the rest of the nvidia package, but this is by no means necessary - I just wanted to be able to reinstall one without the other (to do with installing gl parts without restarting X - see below for more).
(If there is to be a separation, it may be more logical to put the x.org driver module with the kernel module, with just the GL parts separate.)
pkgname=nvidia-kernel
pkgver=1.0.8178
_pkgbinary=NVIDIA-Linux-x86-1.0-8178
pkgrel=1
pkgdesc="NVidia driver kernel module"
url="http://www.nvidia.com"
depends=('bash' 'gcc' 'binutils' 'glibc' 'make' 'nvidia-glx')
source=(ftp://download.nvidia.com/XFree86/Linux-x86/1.0-8178/$_pkgbinary-pkg0.run nvidia.rc
nvidia.patch nv2.diff)
install="nvidia.install"
#provides=()
conflicts=('nvidia')
build() {
cd $startdir/src/
chmod +x $_pkgbinary-pkg0.run
./$_pkgbinary-pkg0.run --extract-only
cd $_pkgbinary-pkg0
#strip stuff that's in nvidia-glx to make download lighter
rm -rf usr/bin
rm -rf usr/include
rm -rf usr/lib
rm -rf usr/share
rm -rf usr/X11R6
mkdir -p $startdir/pkg/usr/share/nvidia
cp -p LICENSE $startdir/pkg/usr/share/nvidia
# adding patches from nvidia forum and now provided by zander
patch -Np0 -i $startdir/src/nvidia.patch || return 1
patch -Np0 -i $startdir/src/nv2.diff || return 1
#clean src
install -D -m 755 $startdir/src/nvidia.rc $startdir/pkg/etc/rc.d/nvidia
cd $startdir/src
rm *
mkdir -p $startdir/pkg/opt/nvidia
mv * $startdir/pkg/opt/nvidia
md5sums=('6c8081bfde4a806a487efc2a9a1ff016' '08f4f614066c08bd0774c7e557953fbe'
'3b5a2525633e88b9d78c4721190542e6')
(the file nv2.diff patches the kernel code for 2.6.16 kernels..)
Here's the .install
_driver=NVIDIA-Linux-x86-1.0-8178-pkg0/./nvidia-installer
post_install() {
cat << EOF
IMPORTANT
==> In order to use the software, you have to agree to NVIDIA's license located in
==> /usr/share/nvidia/LICENSE
==> If you don't, please remove this package (pacman -R nvidia-kernel)
Installation starts now ...
EOF
cd /opt/nvidia/NVIDIA-Linux-x86-1.0-8178-pkg0/usr/src/nv
make install > /dev/null 2>&1 || (echo "INSTALLATION FAILED!" ; echo "==> You have to shutdown Xserver to finish installation! You have to rerun 'pacman -S nvidia-kernel'" ; echo "==> If you're running a custom kernel, make sure the source tree is available." ; echo "==> Other common solutions can be found on the wiki: http://wiki.archlinux.org/index.php/How_to_install_NVIDIA_driver" )
modprobe nvidia
rm -r /opt/nvidia
cat << EOF
To use this driver you need the nvidia-glx package too.
If you need more information about setting up nvidia drivers have a look at:
"http://wiki.archlinux.org/index.php/How_to_install_NVIDIA_driver"
EOF
post_upgrade() {
rmmod nvidia > /dev/null 2>&1
post_install $1
pre_remove() {
cat << EOF
==> Deinstallation starts now!
EOF
rmmod nvidia
_KERNELNAME=$(uname -r)
rm /lib/modules/$_KERNELNAME/kernel/drivers/video/nvidia.ko > /dev/null 2>&1
cat << EOF
==> Don't forget to update your /etc/X11/XF86Config or /etc/X11/xorg.conf!
You may want to remove nvidia-glx as well.
EOF
op=$1
shift
$op $*
Now for the other bit..
pkgname=nvidia-glx
pkgver=1.0.8178
_pkgbinary=NVIDIA-Linux-x86-1.0-8178
pkgrel=1
pkgdesc="The NVidia X.org driver and utilities (without the kernel module)"
url="http://www.nvidia.com"
depends=('bash' 'gcc' 'binutils' 'glibc' 'make' 'nvidia-kernel')
source=(ftp://download.nvidia.com/XFree86/Linux-x86/1.0-8178/$_pkgbinary-pkg0.run)
install="nvidia-glx.install"
provides=('libgl')
conflicts=('libgl' 'nvidia')
md5sums=('6c8081bfde4a806a487efc2a9a1ff016')
build() {
cd $startdir/src/
chmod +x $_pkgbinary-pkg0.run
./$_pkgbinary-pkg0.run --extract-only
cd $_pkgbinary-pkg0
mkdir -p $startdir/pkg/usr/share/applications
mkdir -p $startdir/pkg/usr/bin
mkdir -p $startdir/pkg/usr/man/man1
mkdir -p $startdir/pkg/usr/lib/xorg/modules/{extensions,drivers}
mkdir -p $startdir/pkg/usr/share/nvidia
#Point .desktop to correct location
chmod +w ./usr/share/applications/nvidia-settings.desktop
sed 's:__UTILS_PATH__:/usr/bin:' ./usr/share/applications/nvidia-settings.desktop > ./nv.desktop
sed 's:__DOCS_PATH__:/usr/share/nvidia:' ./nv.desktop > ./usr/share/applications/nvidia-settings.desktop
chmod -w ./usr/share/applications/nvidia-settings.desktop
#Grab what we need and put it where we want
install -m 755 usr/bin/nvidia-bug-report.sh ${startdir}/pkg/usr/bin
install -m 755 usr/bin/nvidia-settings ${startdir}/pkg/usr/bin
install -m 755 usr/bin/nvidia-xconfig ${startdir}/pkg/usr/bin
install usr/lib/libGL.so.${pkgver} ${startdir}/pkg/usr/lib
install usr/lib/libGLcore.so.${pkgver} ${startdir}/pkg/usr/lib
install usr/lib/libnvidia-tls.so.${pkgver} ${startdir}/pkg/usr/lib
install usr/lib/libnvidia-cfg.so.${pkgver} ${startdir}/pkg/usr/lib
install usr/X11R6/lib/libXvMCNVIDIA.a ${startdir}/pkg/usr/lib
install usr/X11R6/lib/libXvMCNVIDIA.so.${pkgver} ${startdir}/pkg/usr/lib
install usr/X11R6/lib/modules/drivers/nvidia_drv.o ${startdir}/pkg/usr/lib/xorg/modules/drivers
install usr/X11R6/lib/modules/drivers/nvidia_drv.so ${startdir}/pkg/usr/lib/xorg/modules/drivers
install usr/X11R6/lib/modules/extensions/libglx.so.${pkgver} ${startdir}/pkg/usr/lib/xorg/modules/extensions
cp -pr usr/include ${startdir}/pkg/usr/share/nvidia
cp -pr usr/share/doc/* ${startdir}/pkg/usr/share/nvidia
cp -pr usr/share/applications/* ${startdir}/pkg/usr/share/applications
cp -pr usr/share/man/man1 ${startdir}/pkg/usr/man
cd ${startdir}/pkg/usr/lib/
ln -fs libGL.so.${pkgver} libGL.so
ln -fs libGL.so.${pkgver} libGL.so.1
ln -fs libGLcore.so.${pkgver} libGLcore.so.1
ln -fs libnvidia-cfg.so.${pkgver} libnvidia-cfg.so.1
ln -fs libnvidia-cfg.so.${pkgver} libnvidia-cfg.so
ln -fs libnvidia-tls.so.${pkgver} libnvidia-tls.so.1
ln -fs libXvMCNVIDIA.so.${pkgver} libXvMCNVIDIA-dynamic.so.1
cd ${startdir}/pkg/usr/lib/xorg/modules/extensions
ln -fs libglx.so.${pkgver} libglx.so
..and here's the .install
_driver=NVIDIA-Linux-x86-1.0-8178-pkg0/./nvidia-installer
post_install() {
#switch in nvidia GL headers
ln -sf /usr/share/nvidia/include/GL/gl.h /usr/include/GL/gl.h
ln -sf /usr/share/nvidia/include/GL/glext.h /usr/include/GL/glext.h
ln -sf /usr/share/nvidia/include/GL/glx.h /usr/include/GL/glx.h
ln -sf /usr/share/nvidia/include/GL/glxext.h /usr/include/GL/glxext.h
cat << EOF
IMPORTANT
==> In order to use the software, you have to agree to NVIDIA's license located in
==> /usr/share/nvidia/LICENSE (installed with nvidia-kernel - required)
==> If you don't, please remove this package (pacman -R nvidia-glx)
To use this driver you need the nvidia-kernel package too.
If you need more information about setting up nvidia drivers have a look at:
"http://wiki.archlinux.org/index.php/How_to_install_NVIDIA_driver"
Note: OpenGL headers have been replaced (if applicable) by symlinks to the NVidia headers.
To switch to the mesa headers, reinstall mesa.
(You may want to do this if compiling a GL app for another system.)
EOF
post_upgrade() {
post_install $1
pre_remove() {
cat << EOF
==> Don't forget to update your /etc/X11/XF86Config or /etc/X11/xorg.conf!
You may want to remove nvidia-kernel as well.
EOF
op=$1
shift
$op $*
..As you can see, the nvidia-glx .install instates the NVidia gl headers to aid compiling against them. If mesa is installed it's versions of these files will be overwritten. Making sure to install the package for the desired headers last seemed like the simplest way to select them. Gentoo has some script to select the gl libs.
PS: This is designed alongside the current mesa-6.4.2-1 package in testing.
So. Any comments? Any good? Or shall I just keep them to myself?

tpowa wrote:well, problem is not that it's not possible, problem is if it is allowed.
i'm not a license expert but as far as i can remember no big distro provides the packages other then nvidia-installer.
gentoo is a special case.
Yeah, I thought that might be a problem. The LICENSE seems to have a clause to do with splitting up the package...
No Separation of Components.  The SOFTWARE is licensed as a
single product.  Its component parts may not be separated for use
on more than one computer, nor otherwise used separately from the
other parts.
But this refers to *use* of the seperate parts, which I suppose is a bit vague. Anyhoo, as I say, this modified install method can still work with a combined package. It could even not bother with the kernel module compile if it's already present.
The only other part that seems relevant is...
2.1.2  Linux/FreeBSD Exception.  Notwithstanding the foregoing terms
of Section 2.1.1, SOFTWARE designed exclusively for use on the Linux or
FreeBSD operating systems, or other operating systems derived from the
source code to these operating systems, may be copied and redistributed,
provided that the binary files thereof are not modified in any way
(except for unzipping of compressed files).
But since no binary files are modified this doesn't seem to apply. Of course, IANAL..

Similar Messages

  • How to install a package that does not use DESTDIR?

    Hi All
    I am trying to create a PKGBUILD for a package called cantera.  This package uses the standard "configure", "make", and "make install" process; however,  "--prefix" is supported but DESTDIR is not used.  Unfortunately, this package is very large (many files) and "make install" install with absolute path names.  Is there any strategies for handling this situation?  An example of another package that handles this would be great.
    Thanks
    Kevin

    It doesn't work for me, I get the following error:
    /bin/install -c ijs_server_epsonepl -c /var/abs/local/epsoneplijs/pkg/usr/bin/ijs_server_epsonepl
    /bin/install: cannot create regular file `/var/abs/local/epsoneplijs/pkg/usr/bin/ijs_server_epsonepl': No such file or directory
    make: *** [install] Error 1
    ==> ERROR: Build Failed.  Aborting...
    So I have to create a folder called usr/bin in my pkg-folder, then it will work.
    But this is stupid, can't makepkg create those folders by itself?
    Hmm ok tried creating the folders and still the same error, here is my PKGBUILD:
    pkgname=epsoneplijs
    pkgver=0.4.0
    pkgrel=1
    pkgdesc="a Epson EPL printer driver for ghostscript"
    url="http://sourceforge.net/projects/epsonepl/"
    source=($pkgname-$pkgver.tgz)
    md5sums=('8bc16b9df5b2a4168abc773745b9b2d7')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make prefix=$startdir/pkg/usr install
    Whats wrong, I don't get it... 

  • XML Publisher can not use after installation

    Dear All,
    I need your help on the XML Publisher!
    Today, I instaleed the XML Publisher Desktop in my PC. Normally, the Template Builder menu will be added into word once XMLP is installed. But I faced a strange issue today.
    As we know, there is a sample rtf file will be opened once the installation completed, at this time, if I open any other rtf file, the template builder is there, but once I closed all rdf files and reopen any rtf file, the template builder menu is missing and can not be found any more. I reinstalled many time, but the issue is still there. Can someone help me on this? I really don't want to reinstall Windows to fix the issue.
    Thanks & Best Regards,
    Jerome

    Hi Hussein,
    No issue with other client, Only my PC has this issue. The issue can be reproduced in my PC again and again.
    Jerome

  • Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    Deploying manually CC PKG file built with CC Packager. Not using any third party deployment tool. However after each 5 installations, the PKG files corrupt and cannot be use for a 6th installation. I have to build a new PKG file using CC packager.  Why ?

    http://helpx.adobe.com/creative-cloud/packager.html
    http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent

  • ITunes 7.0.1 does not install--Windows Installer Package Problem

    I am trying to upgrade from iTunes 6 to the newest version. I downloaded setup and ran it, and it got a bit through installing iTunes before it said, "There is a problem with the Windows Installer Package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."
    I have never had problems installing other programs using Windows Installer. I also never had problems upgrading iTunes until now. There is no info on this specific issue anywhere in the Apple website or on the internet, that I have found. Any ideas?

    okay, let's try getting an itunes 7 installer log to the Apple engineers for a look.
    1. Open a command prompt window. (Start menu -> Run. Type in "cmd". Hit return.)
    2. Drag and drop iTunesSetup.exe onto the window so that the full pathname of the file is at the command line prompt.
    3. Type in a space, then the following line:
    /l*v C:\log.txt
    4. Hit return.
    5. The installer will create a log file:
    C:\log.txt
    Find that file and send it as an attachment to this email address.
    in the email to Roy, be sure to include the following information:
    - A link to the thread on Apple Discussions where the issue is being discussed
    - The username you are using in the thread
    - The version of iTunes you are using or trying to use
    - the version of Windows you are using (mention service packs)
    - A concise description of the issue you are seeing
    - The exact text of the error message you are seeing

  • NVIDIA installer and problems [yes I know I got the kernel]

    all should work fine, but dont! I get this: [i have linux264 under /usr/src]
    -> No precompiled kernel interface was found to match your kernel; would you li
       ke the installer to attempt to download a kernel interface for your kernel f
       rom the NVIDIA ftp site (ftp://download.nvidia.com)? (Answer: No)
    -> No precompiled kernel interface was found to match your kernel; this means
       that the installer will need to compile a new kernel interface.
    -> Using the kernel source path '/usr/src/linux-2.6.4/' as specified by the
       '--kernel-source-path' commandline option.
    -> Kernel source path: '/usr/src/linux-2.6.4/'
    -> Performing cc_version_check with CC="cc".
    ERROR: Unable to determine the NVIDIA kernel module filename.
    ERROR: Installation has failed.  Please see the file
           '/var/log/nvidia-installer.log' for details.  You may find suggestions
           on fixing installation problems in the README available on the Linux
           driver download page at www.nvidia.com.
    WIKI says sth about copying the old files to /tmp and then back again. well it's too late for that . I have the arch-pkg but couldn't found those files. maybe one can name me which they are where I can find them and if is going to solve the above problem. I have the standard ide kernel.
    thank you

    the files you removed are either all in the kernel you downloaded or can be created from that kernel.
    you need a .config file, which will be created when you do what i said in my previous post and i believe you need some include files in the /usr/src/linux-2.6.4/include/config directory, which will be put there when you do the make. (just don't do make install!)
    when you do the make config, just make sure loadable modules support is a yes, the rest can be default i would guess.
    if you really want a .config file for a 2.6.4 scsi kernel i'll put one up here:
    http://www.oreycay.com/config.bz2
    i think you should just answer all defaults and make your own.  im pretty sure the nivida installer is just checking for these files, it is not really using them in a way you have to worry about.

  • HT1925 Can't update iTunes because of error message "iTunes.msi is not a valid installation package for the produce iTunes".  How can I fix this?

    I can't update iTunes because of error message "iTunes.msi is not a valid installation package for the product iTunes". How can this be resolved.  I am using a PC with Windows XP

    If you can, uninstall and reinstall itunes..... Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Hope this helps.

  • I cannot uninstall itunes from my computer PC. I cannot update itunes on my computer. I get this message." C:\Documents and Settings\Sally-Anne\Local Settings\Application Data\Apple\Apple Software Update\'iTunes.msi' is not a valid installation package

    I cannot uninstall itunes from my computer PC. I cannot update itunes on my computer. I get this message." C:\Documents and Settings\Sally-Anne\Local Settings\Application Data\Apple\Apple Software Update\'iTunes.msi' is not a valid installation package Try to find the installation package itunes.msi in a folder from which you installiTunes."
    I have tried a serach for the file itunes.msi and nothing comes up.
    Help anyone/
    thanks

    I get this message." C:\Documents and Settings\Sally-Anne\Local Settings\Application Data\Apple\Apple Software Update\'iTunes.msi' is not a valid installation package Try to find the installation package itunes.msi in a folder from which you installiTunes."
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I have installed executable installer but I still can not use adobe flash player 10.1

    I have installed executable installer but I still can not use adobe flash player 10.1 and i cant not find it on my
    documents. I do not know what to do? My computer is XP and Internet Explorer.
    Why won't it let me download it or use it?

    Can you see the Flash animation at http://www.adobe.com/software/flash/about/ ?  If yes, Flash Player is correctly installed and working.
    If not, what files do you have in C:\Windows\system32\Macromed\Flash ?

  • The file 'C:\Users\netrgm\AppData\Local\Apple\Apple Software Update\iTunes64.msi' is not a valid installation package

    I am currently at iTunes version 10.5.1.42. It is telling me there is an update. It downloads and trys to install version 10.5.2 but i keep getting this error message:
    The file 'C:\Users\netrgm\AppData\Local\Apple\Apple Software Update\iTunes64.msi' is not a valid installation package for the product iTunes.
    Try to find the installation package 'iTunes64.msi' in a folder from which you can install iTunes.
    The file is in the directory that is looking in, but it doesnt seem to think it is valid. I have tried several times over the last week or 2.

    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • I am really angry that I get this message every time I try to update Itunes.  "The File 'C:/documents and settings\DEAN\Local Settings\Application Data\Apple\Apple Software Update\itunes.msi' is not a valid installation package for the product itunes.  Tr

    I am really angry that I get this message every time I try to update Itunes.
    “The File ‘C:/documents and settings\DEAN\Local Settings\Application Data\Apple\Apple Software Update\itunes.msi’ is not a valid installation package for the product itunes.  Try to find the installation package ‘itunes.msi’ in a folder from which you can install itunes.
    What kind of gobbledegook is that?  Are you or Microsoft crazy.  Us computer users need simpler instructions.  Or you need to write your programs so that they work.
    Signed,
    Frustrated Apple User
    Dean Weaver

    “The File ‘C:/documents and settings\DEAN\Local Settings\Application Data\Apple\Apple Software Update\itunes.msi’ is not a valid installation package for the product itunes.  Try to find the installation package ‘itunes.msi’ in a folder from which you can install itunes.
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Creation of backup DVD's since you will not allow the installation DVD to be used.

    I now understand that you refuse to let me use the installation /back up DVD as an installation / back up DVD and insist that I make my own back up DVD’s. I have gone through the usual nightmare trying to find your instructions and can find none. 
    How do I go through the excess steps to create back up DVD’s for Photoshop Elements and Premier Elements that you will not allow the installation/backup DVD to be used for?
    I bought DVD's to be spared this nightmare.

    The chat folks got the Premiere Elements installed with a herculean effort including downloading off the Internet.  The Photoshop Elements installed fine.
    My request was based on the legal agreement.  It read to me like I had to save the application from the hard drive to a DVD to get a back up copy made and that that was the only way I was allowed to do it.
    The chat folks, based on the severe problem I had installing Premiere, are mailing me a replacement DVD to use as a backup which is the sort of media I would expect.  I guess the legal language as I read it deviates from the normal situation.
    Thank you for the follow up.
    Robert J. La Trémouille
    875 Massachusetts Avenue, #31
    Cambridge, MA 02139-3070
    617-283-7649 / 617-491-7181
    Facebook:  Friend the Charles River White Geese on their facebook page.Visit our blog: http://charlesriverwhitegeeseblog.blogspot.com
    Visit our website: http://www.charlesriverwhitegeese.org
    Watch The Cambridge Environment on local cable in Cambridge, MA
        Cable Channel 9, Sundays at 6:30 pm, now in its 17th year.

  • I bought a new imac running Loin and Office 2011. The server we use to access emails runs exchange 2003 and my IT person says the imac is not compatible with the server. The server does not want to let me access using any email software.

    I bought a new imac running Loin with Office 2011. I am the only mac in the office and the Server we use to access emails runs exchange 2003 and my IT person says the imac is not compatible with the server. The server does not want to let me access using any email software other than webmail access through our website. It looks as though 2011 is not compatible with 2003 per some searches online, but what are some options I have to gain full access again? I purchased parallels in hopes that this my help and I am able to use remote desktop connection to log on to server but can not drag and drop files I need. There is a shared drive on that Server we all use to exchange files.
    The two main issues are gaining access to my email again and ability to drag and drop files from mac to pc. I hope this is enough info to get some solutions.
    PS - IT person says my iMac's IP is what his server does not understand so that is why I can not login.

    Office 2011 is not compatbile with Exchange 2003.
    I suggest you post further Office related questions on Microsoft's own forums for their Mac software:
    http://answers.microsoft.com/en-us/mac

  • Okay my iPod touch 4th generation will not sync. I reinstalled iTunes . Can someone please tell me what to do?!?!?! Oh would there be any chance that me letting my friend use my sync cord could've messed it up???

    I need some help. I want to sync my iPod touch 4th generation and it WILL NOT sync. I reinstalled iTunes and it still won't sync. I also let my friend use my sync cord, could that have anything to do with my problem?? I really need some help. So please answer me back if you know what could be wrong.

    Could be the cable.  Have you tried:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X

  • I've a problem which is: Ibelieve there's someone who knows my password in some games like "Happy Day" so, could you please help me by not letting anybody to use this game except for this IMEI 01 336000 521261 1 even if they have the correct password.

    I've a problem which is: Ibelieve there's someone who knows my password in some games like "Happy Day" so, could you please help me by not letting anybody to use this game except for this IMEI 01 336000 521261 1 even if they have the correct password. Thanks alot for your help.

    Change your password.
    These are user forums. We can't do what you ask, in fact no one can.

Maybe you are looking for