I Got 8.0.5 to work on Slackware 3.6!

I got Oracle 8.0.5 to link and run on Slackware 3.6!
The trick was getting my system to link using glibc (2.0.7) and
not the default libc5.
Steps:
1) From the slackware distribution media (cdrom), read
/cdrom/contrib/glibc-2.0.7pre6.README. Big clues in this file.
2) Uninstall (from setup) glibc1 & glibc2. These are runtime
support libraries for glibc and are not meant for
compiling/linking.
3) Install (from setup, pkgtool, from /cdrom/contrib)
glibc-2.0.7pre6. Do not install by hand (tar xf)! I had to boot
off floppy several times 'cause I trashed the runtime libraries
and crashed the system by doing that. Not to mention corrupting
my hard disk and having to run fsck... gheeeeese. As a matter of
fact I'd recommend booting to single user (init 1) and then
installing.
4) Modify the gcc specs file. You want the specs file to use the
specs.glibc2 version. I just deleted specs and copied
specs.glibc2 to specs.
kirk:~# gcc -v
Reading specs from /usr/lib/gcc-lib/i486-linux/2.7.2.3/specs
gcc version 2.7.2.3
kirk:~# cd /usr/lib/gcc-lib/i486-linux/2.7.2.3
kirk:/usr/lib/gcc-lib/i486-linux/2.7.2.3# ls -l spec*
-rwxr-xr-x 1 root root 979 Sep 7 01:53 specs*
-rwxr-xr-x 1 root root 979 Sep 6 19:41
specs.glibc2*
-rwxr-xr-x 1 root root 952 Sep 6 19:41
specs.libc5*
kirk:~# rm specs; cp specs.glibc2 specs
5) Run ldconfig (not sure if this is required).
6) Optional? The only other thing I had to do was change the
symbolic link of /lib/libdl.so from -> libdl.so.1
to -> libdl.so.2
7) Run the oracle installer and go for it!
Extra stuff regarding libraries:
Before I finally got everything working, I had installed
glibc2.0.7pre6 on top of existing glibc1 & glibc2. Oracle linked
but svrmgrl came back with return(3), aka: everything linked with
no error from oracle installer. The 8.0.5/orainst/make.log showed
the results (warnings!) of the link. I was getting something like
(sorry I deleted my old make logs allready):
function_whatever.o expected/needs libdl.so.2, may conflict
with libdl.so.1
This basically says the dl.so library is pointing to the old
glibc5 libraries and not glibc6 (aka glib 2.0.7). Take a look at
/lib & /usr/lib directories and note the symbolic links.
glibc2.0.7pre6 may not re-define all links so you may have to do
one or two by hand like I had to.
The make.log message: "gets function is dangerous and should not
be used" message can be ignored.
How I figured out what libraries were being used (/lib or
/usr/lib):
From the make.log file, I cut and pasted the line to compile
svrmgrl executable (this was a file I was having problems with).
I modified the -o option to save the output to my current (test)
directory so if it linked ok, I could execute and see if it ran.
And I added the qualifier -Xlinker -t. -Xlinker allows you to
send a qualifier available to the linker only (and not gcc). -t
means show libraries as they are loaded.
Pay attention to linefeeds and continuations. This is one big
line...
So I had something like this:
$ cat t
cc -L/oracle/product/8.0.5/lib/
-L/oracle/product/8.0.5/rdbms/lib -o svrmgrl
/oracle/product/8.0.5/lib/smalmain.o -lsvrmgrl -lslpm
/oracle/product/8.0.5/rdbms/lib/defopt.o
/oracle/product/8.0.5/rdbms/lib/ssdbaed.o -Xlinker -t
-lclient -lsql /oracle/product/8.0.5/lib/libclntsh.so
/oracle/product/8.0.5/lib/nautab.o
/oracle/product/8.0.5/lib/naeet.o
/oracle/product/8.0.5/lib/naect.o
/oracle/product/8.0.5/lib/naedhs.o `cat
/oracle/product/8.0.5/lib/naldflgs` -lnetv2 -lnttcp -lnetwork
-lncr -lclient -lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4
-lnlsrtl3 -lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork -lncr
-lclient -lvsn -lcommon -lgeneric -lepc -lnlsrtl3 -lcore4
-lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -lcommon -lgeneric
-lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 `cat
/oracle/product/8.0.5/lib/sysliblist` -ldl -lm -ldl -lnetv2
-lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork -lncr -lnetv2
-lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork -lncr -lnetv2
-lnttcp -lnetwork -lncr -lsql -lsql
Executing t got me something like this:
(/oracle/product/8.0.5/lib//libnlsrtl3.a)lxwc2lx.o
(/oracle/product/8.0.5/lib//libnlsrtl3.a)lxwuppx.o
-lnsl (/usr/lib/libnsl.so)
-lm (/usr/lib/libm.so)
-ldl (/lib/libdl.so)
-lm (/usr/lib/libm.so)
-ldl (/lib/libdl.so)
(/usr/lib/gcc-lib/i486-linux/2.7.2.3/libgcc.a)_divdi3.o
(/usr/lib/gcc-lib/i486-linux/2.7.2.3/libgcc.a)_udivdi3.o
(/usr/lib/gcc-lib/i486-linux/2.7.2.3/libgcc.a)_umoddi3.o
/lib/libc.so.6
/oracle/product/8.0.5/lib//libcore4.a(lcd.o): In function
`lcdprm':
lcd.o(.text+0xacb): the `gets' function is dangerous and should
not be used.
/usr/lib/gcc-lib/i486-linux/2.7.2.3/crtend.o
/usr/lib/crtn.o
Notice that libdl.so & libc.so.6 comes from the /lib directory
(not /usr/lib as I had in earlier attempts). This is how I knew
where to change the symbolic links if I had to. This was the
biggest issue on my system... which is why I'm including all the
mess for ya'll :)
Bad compiles:
If you get link errors like "bad reference to __sigsetjmp" or
whatever... it will cause oracle installer to error out; the the
wrong libraries are being pointed to and/or you have a
combintation of glibc5 and glibc6 libraries in place. Thats why
I uninstalled glibc1 and glibc2. Merging glibc2.0.7pre6 on top of
glibc1 and glibc2 did not work!
The right way:
The correct way to do all of this is to probably put glic5 and
glibc6 libraries in separate directories and configure the linker
to use one or the other with ldconfig (I do not know how to do
this. Any suggestions?).
After effects:
Oracle runs just fine, including SQL*Plus and PL/SQL. I havent
done much testing but the db comes up and the demo tables
(scott/tiger) come up OK. I successfully installed the RDBMS
Sever, Docs, SQL*PLUS, PL/SQL and a few other items. I did'nt
install any net stuff.
I have not uninstalled glibc2.0.7pre6 and re-installed glibc1 and
glibc2... but I do not forsee any problems.
A note on oracle installer:
I downloaded 8.0.5 on my 56k modem... took 9.5 hours! The
untarred .tgz is itself a staging area, you do not have to build
one.
Create the oracle user account before you untar from it, and
untar with the p (permission) option... as the tar file is built
from oracle:dba. This worked for me anyway, the install files had
all the right permissions.
Post Installation:
The post installation notes say to set 8.0.5/lib to chmod 644.
This does'nt allow svrmgrl to come up cause it cant get to a
library function.
Running oraenv from my .profile (actually .bash_profile) deletes
the $LD_LIBRARY_PATH environment variable (which has 8.0.5/lib)
in it, hence I cant run anything (again, cant find library
functions). So I don't run oraenv anymore! Actually... I guess I
should define the variable AFTER I run oraenv... duh!!
It figures, the programmer O/S that slackware is, allows multiple
libraries. So you just gotta deal with 'em! Switching to RedHat
just for a differnet library-set just did'nt seem like the right
solution.
Go Slackware!!
Earl Wagner
[email protected]
null

I got Oracle 8.0.5 to link and run on Slackware 3.6!
The trick was getting my system to link using glibc (2.0.7) and
not the default libc5.
Steps:
1) From the slackware distribution media (cdrom), read
/cdrom/contrib/glibc-2.0.7pre6.README. Big clues in this file.
2) Uninstall (from setup) glibc1 & glibc2. These are runtime
support libraries for glibc and are not meant for
compiling/linking.
3) Install (from setup, pkgtool, from /cdrom/contrib)
glibc-2.0.7pre6. Do not install by hand (tar xf)! I had to boot
off floppy several times 'cause I trashed the runtime libraries
and crashed the system by doing that. Not to mention corrupting
my hard disk and having to run fsck... gheeeeese. As a matter of
fact I'd recommend booting to single user (init 1) and then
installing.
4) Modify the gcc specs file. You want the specs file to use the
specs.glibc2 version. I just deleted specs and copied
specs.glibc2 to specs.
kirk:~# gcc -v
Reading specs from /usr/lib/gcc-lib/i486-linux/2.7.2.3/specs
gcc version 2.7.2.3
kirk:~# cd /usr/lib/gcc-lib/i486-linux/2.7.2.3
kirk:/usr/lib/gcc-lib/i486-linux/2.7.2.3# ls -l spec*
-rwxr-xr-x 1 root root 979 Sep 7 01:53 specs*
-rwxr-xr-x 1 root root 979 Sep 6 19:41
specs.glibc2*
-rwxr-xr-x 1 root root 952 Sep 6 19:41
specs.libc5*
kirk:~# rm specs; cp specs.glibc2 specs
5) Run ldconfig (not sure if this is required).
6) Optional? The only other thing I had to do was change the
symbolic link of /lib/libdl.so from -> libdl.so.1
to -> libdl.so.2
7) Run the oracle installer and go for it!
Extra stuff regarding libraries:
Before I finally got everything working, I had installed
glibc2.0.7pre6 on top of existing glibc1 & glibc2. Oracle linked
but svrmgrl came back with return(3), aka: everything linked with
no error from oracle installer. The 8.0.5/orainst/make.log showed
the results (warnings!) of the link. I was getting something like
(sorry I deleted my old make logs allready):
function_whatever.o expected/needs libdl.so.2, may conflict
with libdl.so.1
This basically says the dl.so library is pointing to the old
glibc5 libraries and not glibc6 (aka glib 2.0.7). Take a look at
/lib & /usr/lib directories and note the symbolic links.
glibc2.0.7pre6 may not re-define all links so you may have to do
one or two by hand like I had to.
The make.log message: "gets function is dangerous and should not
be used" message can be ignored.
How I figured out what libraries were being used (/lib or
/usr/lib):
From the make.log file, I cut and pasted the line to compile
svrmgrl executable (this was a file I was having problems with).
I modified the -o option to save the output to my current (test)
directory so if it linked ok, I could execute and see if it ran.
And I added the qualifier -Xlinker -t. -Xlinker allows you to
send a qualifier available to the linker only (and not gcc). -t
means show libraries as they are loaded.
Pay attention to linefeeds and continuations. This is one big
line...
So I had something like this:
$ cat t
cc -L/oracle/product/8.0.5/lib/
-L/oracle/product/8.0.5/rdbms/lib -o svrmgrl
/oracle/product/8.0.5/lib/smalmain.o -lsvrmgrl -lslpm
/oracle/product/8.0.5/rdbms/lib/defopt.o
/oracle/product/8.0.5/rdbms/lib/ssdbaed.o -Xlinker -t
-lclient -lsql /oracle/product/8.0.5/lib/libclntsh.so
/oracle/product/8.0.5/lib/nautab.o
/oracle/product/8.0.5/lib/naeet.o
/oracle/product/8.0.5/lib/naect.o
/oracle/product/8.0.5/lib/naedhs.o `cat
/oracle/product/8.0.5/lib/naldflgs` -lnetv2 -lnttcp -lnetwork
-lncr -lclient -lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4
-lnlsrtl3 -lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork -lncr
-lclient -lvsn -lcommon -lgeneric -lepc -lnlsrtl3 -lcore4
-lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -lcommon -lgeneric
-lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 `cat
/oracle/product/8.0.5/lib/sysliblist` -ldl -lm -ldl -lnetv2
-lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork -lncr -lnetv2
-lnttcp -lnetwork -lncr -lnetv2 -lnttcp -lnetwork -lncr -lnetv2
-lnttcp -lnetwork -lncr -lsql -lsql
Executing t got me something like this:
(/oracle/product/8.0.5/lib//libnlsrtl3.a)lxwc2lx.o
(/oracle/product/8.0.5/lib//libnlsrtl3.a)lxwuppx.o
-lnsl (/usr/lib/libnsl.so)
-lm (/usr/lib/libm.so)
-ldl (/lib/libdl.so)
-lm (/usr/lib/libm.so)
-ldl (/lib/libdl.so)
(/usr/lib/gcc-lib/i486-linux/2.7.2.3/libgcc.a)_divdi3.o
(/usr/lib/gcc-lib/i486-linux/2.7.2.3/libgcc.a)_udivdi3.o
(/usr/lib/gcc-lib/i486-linux/2.7.2.3/libgcc.a)_umoddi3.o
/lib/libc.so.6
/oracle/product/8.0.5/lib//libcore4.a(lcd.o): In function
`lcdprm':
lcd.o(.text+0xacb): the `gets' function is dangerous and should
not be used.
/usr/lib/gcc-lib/i486-linux/2.7.2.3/crtend.o
/usr/lib/crtn.o
Notice that libdl.so & libc.so.6 comes from the /lib directory
(not /usr/lib as I had in earlier attempts). This is how I knew
where to change the symbolic links if I had to. This was the
biggest issue on my system... which is why I'm including all the
mess for ya'll :)
Bad compiles:
If you get link errors like "bad reference to __sigsetjmp" or
whatever... it will cause oracle installer to error out; the the
wrong libraries are being pointed to and/or you have a
combintation of glibc5 and glibc6 libraries in place. Thats why
I uninstalled glibc1 and glibc2. Merging glibc2.0.7pre6 on top of
glibc1 and glibc2 did not work!
The right way:
The correct way to do all of this is to probably put glic5 and
glibc6 libraries in separate directories and configure the linker
to use one or the other with ldconfig (I do not know how to do
this. Any suggestions?).
After effects:
Oracle runs just fine, including SQL*Plus and PL/SQL. I havent
done much testing but the db comes up and the demo tables
(scott/tiger) come up OK. I successfully installed the RDBMS
Sever, Docs, SQL*PLUS, PL/SQL and a few other items. I did'nt
install any net stuff.
I have not uninstalled glibc2.0.7pre6 and re-installed glibc1 and
glibc2... but I do not forsee any problems.
A note on oracle installer:
I downloaded 8.0.5 on my 56k modem... took 9.5 hours! The
untarred .tgz is itself a staging area, you do not have to build
one.
Create the oracle user account before you untar from it, and
untar with the p (permission) option... as the tar file is built
from oracle:dba. This worked for me anyway, the install files had
all the right permissions.
Post Installation:
The post installation notes say to set 8.0.5/lib to chmod 644.
This does'nt allow svrmgrl to come up cause it cant get to a
library function.
Running oraenv from my .profile (actually .bash_profile) deletes
the $LD_LIBRARY_PATH environment variable (which has 8.0.5/lib)
in it, hence I cant run anything (again, cant find library
functions). So I don't run oraenv anymore! Actually... I guess I
should define the variable AFTER I run oraenv... duh!!
It figures, the programmer O/S that slackware is, allows multiple
libraries. So you just gotta deal with 'em! Switching to RedHat
just for a differnet library-set just did'nt seem like the right
solution.
Go Slackware!!
Earl Wagner
[email protected]
null

Similar Messages

  • Anyone got 8.1.6 to work on Slackware 7?

    It seems to fail on the DB configuration
    assistant which locks up (after spawning
    off loads of threads looking at the process
    listing). A friend of mine who installed
    8.1.6 on Redhat 6.2 had no probs.
    Anyone got any suggestions?

    May be you need to make soft link for the following files
    ln -s /usr/bin/awk /bin/awk
    ln -s /bin/free /usr/bin/free
    then will be able to get through the installation.
    Afterward, you may encounter problem on using dbstart to startup you db, it is due to the script is not able to capture the version number of the installed oracle.
    you may just edit the create another script by copying the origin dbstart, and add a statement, VERSION="8.1", near somewhere STATUS=1. Hopefully, you can have this up and running by these few tips.
    null

  • While updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    while updating my ipad to new software through itunes it got stuck and does not work anymore - it just displays the screen with symbols of itunes and the cable to connect to it - help - what should i do?

    Disconnect the iPad, do a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release. The screen will go blank and then power ON again in the normal way.] It is 'appsolutely' safe!, reconnect and follow the prompts.
    If that does not work then see here http://support.apple.com/kb/HT1808

  • Just got an Ipad and am working on setting it up.  the one issue I am having with it is my screen will not rotate no matter what I do to the settings, I can't figure out if the settings are wrong or if there really is something wrong with my Ipad.

    just got an Ipad and am working on setting it up.  the one issue I am having with it is my screen will not rotate no matter what I do to the settings, I can't figure out if I have a setting wrong or if there really is something wrong with my Ipad.  any help would be greatly appreciated.

    Double click the home button (square)  and all the things you did are there.keep sliding the bar that will come up on the bottom to the left till it cant go anymore there should be a icon looking like this.press that and it should work
    Good luck hope it works.

  • Iam from Yemen we have CDMA carrier called Yemen mobile I bought an iPad from the US CDMA works with Verizon when I got to Yemen doesn't work with the carrier Yemen mobile and  both carriers verizon and Yemen mobile work by the CDMA system don't know whey

    Iam from Yemen we have CDMA carrier called Yemen mobile I bought an iPad from the US CDMA works with Verizon when I got to Yemen doesn't work with the carrier Yemen mobile and  both carriers verizon and Yemen mobile work by the CDMA system don't know whey can anyone help me please..

    A Verizon-model iPad can only work on CDMA with Verizon. You cannot use it with any other carrier. Apple, to my knowledge, has not released the iPad in Yemen, so there is no iPad you can use with any carrier there that works only on CDMA. You would need to find a GSM carrier and then get an unlocked GSM iPad.
    Regards.

  • Can the apple external disc drive that I just got for my air also work with my late 2007 macbook pro?  The internal disc drive broke after apple care expired, natch.

    Can the apple external disc drive that I just got for my air also work with my late 2007 macbook pro?  The internal disc drive broke after apple care expired, natch.

    No, sorry. it won't work with the 2007 MBP. You can replace the optical drive yourself - just go shopping at OWC.
    Good luck,
    Clinton

  • The keyboard for my iMac 9, 1 got wet and is not working correctlly. Delete,return, and some other keys not functioning. In all caps including numerals. I've left it to dry for a few days but still will not work. Computer now in Safe boot mode and I c

    The keyboard for my iMac 9, got wet and is not working correctly. Delete ,return, and some other keys not functioning. In all caps including numerals. I've left it to dry for a few days but still will not work. Computer now in Safe boot mode and I can't login due to all caps and numbers being symbols. Is there anything I can do?

    Buy a replacement keyboard. They're only $50-65 USD.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Has anyone got Client (Mutual) Authentication to work with 6.0 SP2?

    I 've been unsuccessful and was just wondering if anyone has done it...
    Kirk

    The questions is "Where do you get a root ca file for a verisign trial client cert?" I've looked everywere on verisign's site without luck. BEA support emailed me one but can't remember where/how they
    got it....
    Kirk
    Paul Ferwerda wrote:
    I think that the Server Certificate Chain File Name contains a sequential list of certificates, the first of which was used to sign the cert in the "Server Certificate File Name" and the last is self-
    signed (ie a root ca). There is a minimum of 1 cert required in the Server Certificate Chain File Name (which would be the self-signed cert that signed the cert in the Server Certificate File
    Name file. As you walk through the certs in the Server Certificate Chain File Name each cert is expected to be signed by the following cert (if there is one) and the last one must be self-
    signed.
    The Trusted CA file on the other hand is a collection of self-signed CAs on which no validation is performed and no relationship is assumed between the certs in that file. My guess is that
    the code expects that each cert in the Trusted CA list is self-signed.
    So the Server Certificate Chain File Name contains a chain and the Trusted CA File Name contains unordered self-signed certs.
    Paul F.
    On Thu, 2 Aug 2001 18:52:38 +0200, "Bart Jenkins" <[email protected]> wrote:
    Kirk,
    The PEM file we grabbed from the Verisign site worked in the "Server
    Certificate Chain file name" entry but NOT in the "Trusted CA File Name"
    entry. The guy at support in BEA thought it should have worked for both.
    I'm sure I could append the "Trusted CA chain" to the PEM file that I'm
    using for "Server Certificate Chain File name" and then I could use one file
    for both...
    Could you post yours or send it me via Email so I can have a backup? I'd be
    curious to compare your rootCA list with mine. I'll use whichever has the
    most entries. If my list has more rootCA certs in it I'll pass it along.
    ok?
    'preciate it.
    Bart Jenkins
    [email protected]
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]...
    So if the one you got off verisign didn't work, where did you get the onethat
    worked? The one BEA sent me works for mutual auth.
    Kirk
    Bart Jenkins wrote:
    Kirk,
    My security expert found it buried deep in the Verisign site. Have
    you
    successfully tested the Mutual Authentication? The root CA we found onthe
    Verisign Site allowed us to connect via HTTPS but failed on the 2-way
    authentication.....test it...
    I actually mailed the .PEM file we found from Verisign to BEA support
    because I also had an issue open on this with them...it would be funnyif
    they then turned around and mailed it to you...
    If you get stopped...give me a shout...
    good luck
    Bart Jenkins
    Globeflow SA
    [email protected]
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]...
    Thanks. I finally got it working yesterday. Apparently, I was not
    using
    the
    correct root ca. Support
    mailed me the root ca they were using and everything works fine now.The
    problem is that I still
    don't know where on Verisign's site to go to get the root ca. Where
    did
    you
    get yours from?
    Kirk
    Bart Jenkins wrote:
    Kirk,
    I've finally got it working today. I've got a Class 3 Verisign
    certificate on the WLS 6 server and a personal Verisign Class 1 cert
    on
    the
    client browser (IE 5.5) and am able to connect via HTTPS in 2-way,mutual
    authentication. Tell me where you are blocked and I'll try to help.
    Bart Jenkins, CTO
    Globeflow SA
    [email protected]
    "Kirk Everett" <[email protected]> wrote in message
    news:[email protected]...
    I 've been unsuccessful and was just wondering if anyone has done
    it...
    Kirk

  • Has anyone got a Sony EX3 to work in this program?

    Has anyone got a Sony EX3 to work in this program?

    yep,
    there are lots of ways to do this in logic. straight off the top of my head (so it won't necessarrily be the best way)
    set your loops up in individual exs insts
    transform midi note to controller 7 with a trasnformer in environment, mapped note to midi channel.
    now when you hit the right key, it will turn the note into controller message to open the volume on the exs instrument with the right midi channel.
    you will need a 'master' note to turn on your loops in the exs inistruments. obviously this needs to be connected outside of the transform to midi channel.
    if you need to more than 16 loops, you can put a transformer before 'notes to controller 7' to split the messages by their key range. sounds complicated but is really easy, no harder in fact than programming VCR.
    you will need a master instrument to run all this from in arrange. i would have used a single channel midi instrument in environemnt new>instrument.
    my method will work but there maybe a way to set everything up in an exs instance, but i not sure how you would do that so it didn't retrigger rather than open up the volume on the part of the loop you want.
    my way will work though.

  • I need to cancel my membership I got today it did not work the way I wanted to and my computer is not working with it. Thank please cancel to today!!

    I need to cancel my membership I got today, it did not work the way I wanted to. So please cancel it today! Thanks

    This is a user forum; we have no access to your subscriptions, but we can help you to get it canceled.  So what did you subscribe to:
    Creative Cloud?
    an Acrobat.com online service?

  • I recently got an apple computer at work and downloaded my Juno email on it. Now, I can not access all my past email in my juno inbox from other computers. Pls help.

    I recently got an apple computer at work and downloaded my Juno email on it. Now, I can not access all my past email in my juno inbox from other computers. Pls help.

    If it's a POP account and you set it up in Mail with the option to delete read messages from the server, then you can indeed no longer read it on the server. You may be able to restore the messages to the server if you also have IMAP access. Ask your mail service provider whether it's possible.

  • Everytime i plug my iphone into my computer it says device not recognized i was syncing my phone and it got interupted and has not worked since i have iphone 4 with 4.1 software lol what can i do to not lose everything

    Everytime i plug my iphone into my computer it says device not recognized i was syncing my phone and it got interupted and has not worked since i have iphone 4 with 4.1 software lol what can i do to not lose everything

    I'd start with the following document with that one:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • I finally got the TV@nywhere master working

    After installing winamp 5 and this plugin:
    http://winamptv.zapto.org/
    I didn't install MSIPVS.
    I finally got my TV@nywhere master working under XP SP1.
    I've got all the channels and a good video and sound quality.
    I didn't install the new drivers, the ones I got with the card are working fine.
    I hope anyone can solve their problems the same way...
    TVANYWHERE is real fun, now it works....

    I have that plugin and it works wonderfully. Although you cannot actually record television from it and thats one big loss. I'm still having trouble with mine blue screaning when shutting down, restarting, hibernating or standby. [ see this threadand help me! ]. I use the card to do a lot of recording and tis just annoying now.

  • Finally got my 5th gen. ipod working and when i hook it up to itunes it....

    finally got my 5th gen. ipod working and when i hook it up to itunes it says "iTunes cannot read the contents of the iPod “IPOD”. Use the iPod Software Updater application to restore the iPod to factory settings." i put in the cd after this and it didnt do a thing. i really have no idea what this means. please help.

    finally got my 5th gen. ipod working and when i hook
    it up to itunes it says "iTunes cannot read the
    contents of the iPod “IPOD”. Use the iPod Software
    Updater application to restore the iPod to factory
    settings." i put in the cd after this and it didnt do
    a thing. i really have no idea what this means.
    please help.
    I had this problem, then replaced my usb pci card w/ a new one and it worked...

  • Got Connect to Server to work again, file sharing 4.9 to 10.1.5!!!

    Folks:
    Have a number of unanswered questions lost on this forum, and been following as many of the threads pertaining to file sharing as possible--and finally pieced some of the suggestions, mostly from BDAqua, together and got the two units to connect. Before this I got "Log In Failed" or "Connection failed" error windows. Haven't had time to actually move files, but I did open some JPEG's from the 10.1 computer in the 10.4.9 . . . what got it working doesn't totally make sense--but it worked.
    When I first posted my issue after erase & upgrade from 3.9 to 4.9 BD asked me if I had another User in account to do some testing with--and I said yes, but what will that do? And he said, ah, you could test things . . . wasn't real encouraging--I think I logged into one new account and tried to connect and it FAILed. Went on to the "roll the AppFileServer kext back to 4.8 version--didn't work. Kept whining--eventually everybody stopped replying. Then I saw another comment by BDAqua answering someone about some issue with having the same user name when trying to use File sharing; that was awhile back.
    Today--put those ideas together and logged both computers into the other user and then used Connect to Server, entering IP address--got the Log In window--put password in and--IT CONNECTED, but only to a "Drop Box" folder that I didn't have "privileges" to open. Following another thread's idea I changed both of those accounts to "allow user to administer computer" in Acounnts. In Tiger I had to log back into the main account to do that--and then I tried to connect, and that time it worked. The most important thing is having another user name to enter--and then I could get access to the HD of either computer. Still some things to work on--going from the iBook to the iMac I can open all files, going from the iMac back to the iBook I can mount the HD, but some of the original files in my Home folder have red minus's and can't be opened. What was odd is that both of my other user accounts have the same name/password, but I could connect; but couldn't with the main accounts--having the same name/password. When I changed those extra accounts into admin also and then logged back into main accounts--I connected by using the name/password of the OTHER account in the second computer.
    The Key is as BD "recalled seeing somewhere" that the User name should be different, so you can use another account on that computer. In Panther it didn't matter if both computers had the same name--in Tiger apparently it does. Hope this helps--took me a lot of messing/time to bring all the details together--1.5 months. A head's up from Apple might have been--nice???
    eep
    iBook G4, 14, 933 MHz,   Mac OS X (10.4.9)   iMac G4, 15, 800MHz, (10.1.5)

    Rick/BDAq:
    Verbosity doesn't really begin to cover it--that was the short version of the process. 1.5 months ago had 15 posts--100 posts later a solution was developed. Don't know if rolling back the kext to 4.8 is needed--won't get a chance to try doing a full install of 4.9 + Security update on my Ext HD to test what is really necessary. Or whether it is necessary to make the New Account an administrator or not; when they connected it was so surprising and so simple. I'd like to find the thread where it shows how to change the original User Name for the admin/computer & see if that is all that is needed. Like all creative people I named my units after me, my name. Now I'd like to change one to be "Johnny" or I'll name it "Tiger" after all the fiddling it's taken to find such a simple solution--I've grown attached to my OS. : - 0
    Haven't had the chance to check the link to Hornware--thanks Rick, but Firefox couldn't find the server. BD--thanks for being there, buddy.
    eep

Maybe you are looking for

  • Turkish Special characters issue in ECC 6.0, while uploading into table

    HI All, We are working with Turkish special characters in ECC 6.0 We are uploading a CSV file containing characters like : İ, Ğ, Ş, Ü, Ö, as soon as the file gets uploaded to application server, it gets converted to ? or # or Ý. Also, we are reading

  • Query Document Print

    Hi All, I executed a query in portal. In comment tab, we have options to create document, upload doc and formatted text. I have created a document and uploaded one doc. I want to print these docs. Is there any way to print doc other than right-click

  • Running MII on a Wintel virtual environment + hybrid architecture questions

    Hi, I have two MII Technical Architecture questions (MII 12.0.4). Question1:  Does anyone know of MII limitations around running production MII in a Wintel virtualized environment (under VMware)? Question 2: We're currently running MII centrally on W

  • Photoshop CS not opening/launching

    I've had my new imac 24" for 5 months with no problems. However,just now when i tried to launch Photoshop CS nothing happened! I've tried clicking the jpeg files and using open with CS in the finder:ziilch! Also double clicking the jpeg file..and sti

  • RV220W Access Rules Failing - Requests Answered By Firewall

    I have setup my RV220W with NAT rules and access policies to accept HTTPS and SSH requests on a web server. When I set the policies up the site works fine for a while and then the firewall itself begins to answer the requests instead of forwarding th