ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Installation of Particular Java version at Ubuntu

    Scheduled Pinned Locked Moved IT Discussion
    ubuntu
    43 Posts 4 Posters 6.8k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • scottalanmillerS
      scottalanmiller @Lakshmana
      last edited by

      @Lakshmana said:

      @thanksajdotcom Yes I have downloaded the coliver given command and downloaded the jdk,I have extracted the file and then the tried to install but it is not possible

      Okay, what error did you get?

      LakshmanaL 1 Reply Last reply Reply Quote 0
      • thanksajdotcomT
        thanksajdotcom @Lakshmana
        last edited by

        @Lakshmana said:

        @thanksajdotcom Yes I have downloaded the coliver given command and downloaded the jdk,I have extracted the file and then the tried to install but it is not possible

        What command did you run to install the jdk?

        LakshmanaL 1 Reply Last reply Reply Quote 0
        • LakshmanaL
          Lakshmana @scottalanmiller
          last edited by

          @scottalanmiller The file I was downloaded was .tar.gz.Then I have extracted the file and then I have used dpkg -i command with the extracted file and there are many files are present but there is no .deb file at this file

          thanksajdotcomT scottalanmillerS 2 Replies Last reply Reply Quote 0
          • thanksajdotcomT
            thanksajdotcom @Lakshmana
            last edited by

            @Lakshmana said:

            @scottalanmiller The file I was downloaded was .tar.gz.Then I have extracted the file and then I have used dpkg -i command with the extracted file and there are many files are present but there is no .deb file at this file

            That doesn't answer the question. What command did you run?

            1 Reply Last reply Reply Quote 0
            • scottalanmillerS
              scottalanmiller @Lakshmana
              last edited by

              @Lakshmana said:

              @scottalanmiller The file I was downloaded was .tar.gz.Then I have extracted the file and then I have used dpkg -i command with the extracted file and there are many files are present but there is no .deb file at this file

              We already discussed in the thread that this is not a DEB file and using dpkg is not an option. Why are you doing that at all?

              There is an installer IN the tarball that you just unpacked. Just run it!

              thanksajdotcomT 1 Reply Last reply Reply Quote 1
              • thanksajdotcomT
                thanksajdotcom @scottalanmiller
                last edited by

                @scottalanmiller said:

                @Lakshmana said:

                @scottalanmiller The file I was downloaded was .tar.gz.Then I have extracted the file and then I have used dpkg -i command with the extracted file and there are many files are present but there is no .deb file at this file

                We already discussed in the thread that this is not a DEB file and using dpkg is not an option. Why are you doing that at all?

                There is an installer IN the tarball that you just unpacked. Just run it!

                Actually there isn't. Just FYI.

                scottalanmillerS 2 Replies Last reply Reply Quote 0
                • scottalanmillerS
                  scottalanmiller @thanksajdotcom
                  last edited by

                  @thanksajdotcom said:

                  @scottalanmiller said:

                  @Lakshmana said:

                  @scottalanmiller The file I was downloaded was .tar.gz.Then I have extracted the file and then I have used dpkg -i command with the extracted file and there are many files are present but there is no .deb file at this file

                  We already discussed in the thread that this is not a DEB file and using dpkg is not an option. Why are you doing that at all?

                  There is an installer IN the tarball that you just unpacked. Just run it!

                  Actually there isn't. Just FYI.

                  Huh? What do you mean? The installer is missing?

                  1 Reply Last reply Reply Quote 0
                  • LakshmanaL
                    Lakshmana @thanksajdotcom
                    last edited by

                    @thanksajdotcom Sorry I have replied for Scott,AJ.Now I have used the wget command given by coliver and the download of the file has done and then I extracted the file and tried to install by dpkg -i jdk 1.7.0._65 file but it showed me the error to login as sudo user.But I have also done at root but also same error with permission denied is shown.I came to home now I will give you the screenshort of the error after going to office

                    scottalanmillerS 2 Replies Last reply Reply Quote 0
                    • thanksajdotcomT
                      thanksajdotcom
                      last edited by

                      So what you need to do is this: (DO THIS EXACTLY)

                      cd /tmp
                      wget --no-check-certificate --no-cookies - --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/7u65-b17/jdk-7u65-linux-x64.tar.gz"
                      tar -xvzf jdk-7u65-linux-x64.tar.gz
                      mv jdk1.7.0_65/ /usr/local/
                      cd ~
                      vi .profile
                      

                      Now place the following lines in your .profile file.

                      export JAVA_HOME=/usr/local/jdk1.7.0_65
                      export PATH=$PATH:$JAVA_HOME/bin
                      

                      Now log out and log back in. That should be it.

                      LakshmanaL 3 Replies Last reply Reply Quote 0
                      • scottalanmillerS
                        scottalanmiller @thanksajdotcom
                        last edited by

                        @thanksajdotcom said:

                        @scottalanmiller said:

                        @Lakshmana said:

                        @scottalanmiller The file I was downloaded was .tar.gz.Then I have extracted the file and then I have used dpkg -i command with the extracted file and there are many files are present but there is no .deb file at this file

                        We already discussed in the thread that this is not a DEB file and using dpkg is not an option. Why are you doing that at all?

                        There is an installer IN the tarball that you just unpacked. Just run it!

                        Actually there isn't. Just FYI.

                        You are correct, it's just a tarball. That's SO easy.

                        1 Reply Last reply Reply Quote 0
                        • thanksajdotcomT
                          thanksajdotcom
                          last edited by thanksajdotcom

                          Please tell me you know how to use vi...If not, after you type:

                           vi .profile
                          

                          Hit the "I" key (that's the letter i ) and then paste those two lines shown. Then hit Esc, followed by :wq and hit Enter.

                          1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @Lakshmana
                            last edited by

                            @Lakshmana said:

                            @thanksajdotcom Sorry I have replied for Scott,AJ.Now I have used the wget command given by coliver and the download of the file has done and then I extracted the file and tried to install by dpkg -i jdk 1.7.0._65 file but it showed me the error to login as sudo user.But I have also done at root but also same error with permission denied is shown.I came to home now I will give you the screenshort of the error after going to office

                            Just checked. I downloaded and unpacked myself. What do you want now? You've already installed it. There is nothing more to do. You have your Java already.

                            thanksajdotcomT 1 Reply Last reply Reply Quote 0
                            • LakshmanaL
                              Lakshmana @thanksajdotcom
                              last edited by

                              @thanksajdotcom said
                              Thank You AJ.I utry it in my office and say you the result of this as soon as possible after going to office

                              1 Reply Last reply Reply Quote 0
                              • scottalanmillerS
                                scottalanmiller @Lakshmana
                                last edited by

                                @Lakshmana said:

                                @thanksajdotcom Sorry I have replied for Scott,AJ.Now I have used the wget command given by coliver and the download of the file has done and then I extracted the file and tried to install by dpkg -i jdk 1.7.0._65 file but it showed me the error to login as sudo user.

                                But WHY are you running dpkg? We keep telling you that you can't do that. This is not a Debian package. The installation is already done. You can stop now.

                                thanksajdotcomT 1 Reply Last reply Reply Quote 1
                                • thanksajdotcomT
                                  thanksajdotcom @scottalanmiller
                                  last edited by

                                  @scottalanmiller said:

                                  @Lakshmana said:

                                  @thanksajdotcom Sorry I have replied for Scott,AJ.Now I have used the wget command given by coliver and the download of the file has done and then I extracted the file and tried to install by dpkg -i jdk 1.7.0._65 file but it showed me the error to login as sudo user.But I have also done at root but also same error with permission denied is shown.I came to home now I will give you the screenshort of the error after going to office

                                  Just checked. I downloaded and unpacked myself. What do you want now? You've already installed it. There is nothing more to do. You have your Java already.

                                  I have posted instructions. Please reference this: http://stackoverflow.com/questions/14788345/how-to-install-jdk-on-ubuntu-linux

                                  scottalanmillerS LakshmanaL 2 Replies Last reply Reply Quote 0
                                  • scottalanmillerS
                                    scottalanmiller @thanksajdotcom
                                    last edited by

                                    @thanksajdotcom said:

                                    I have posted instructions. Please reference this: http://stackoverflow.com/questions/14788345/how-to-install-jdk-on-ubuntu-linux

                                    None needed, he has already installed it. He just doesn't believe it or something.

                                    1 Reply Last reply Reply Quote 0
                                    • thanksajdotcomT
                                      thanksajdotcom @scottalanmiller
                                      last edited by

                                      @scottalanmiller said:

                                      @Lakshmana said:

                                      @thanksajdotcom Sorry I have replied for Scott,AJ.Now I have used the wget command given by coliver and the download of the file has done and then I extracted the file and tried to install by dpkg -i jdk 1.7.0._65 file but it showed me the error to login as sudo user.

                                      But WHY are you running dpkg? We keep telling you that you can't do that. This is not a Debian package. The installation is already done. You can stop now.

                                      Because he doesn't listen. I've posted EXACT VERBOSE instructions. If he copy/pastes those exactly, he cannot screw up...

                                      1 Reply Last reply Reply Quote 0
                                      • LakshmanaL
                                        Lakshmana @thanksajdotcom
                                        last edited by

                                        @thanksajdotcom Thank you AJ for your help

                                        scottalanmillerS 1 Reply Last reply Reply Quote 0
                                        • scottalanmillerS
                                          scottalanmiller @Lakshmana
                                          last edited by

                                          @Lakshmana said:

                                          @thanksajdotcom Thank you AJ for your help

                                          Did you test your Java? It's fully installed already.

                                          LakshmanaL 1 Reply Last reply Reply Quote 0
                                          • LakshmanaL
                                            Lakshmana @scottalanmiller
                                            last edited by

                                            @scottalanmiller I came to my room Scott.Its around 11:30 PM at India.So I will attend my office at 11:00 AM on tommorrow.so at that time I will check say the result of the process

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 2 / 3
                                            • First post
                                              Last post