LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-26-2018, 07:40 PM   #31
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176

Quote:
So, should I put ./home/ellie/Downloads/amdgpu-pro-18.40-676022-ubuntu-18.04/amdgpu.install in there?
Yes only change /amdgpu.install to ./amdgpu-install.
 
Old 11-26-2018, 07:41 PM   #32
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
How's it going?
 
Old 11-26-2018, 07:44 PM   #33
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,810
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Code:
$ pwd
~/amdgpu-pro-18.40-676022-ubuntu-18.04
$ ls -lGg *ll
-rwxr-xr-x 1 6868 Oct 18 10:10 amdgpu-install
lrwxrwxrwx 1   14 Nov 26 21:17 amdgpu-pro-install -> amdgpu-install
$
The install script
Code:
amdgpu-install
is in the amdgpu-pro-18.40-676022-ubuntu-18.04 directory in whatever directory the download was extracted.
Code:
$ cd amdgpu-pro-18.40-676022-ubuntu-18.04
$ sh amdgpu-install
or
Code:
$ cd amdgpu-pro-18.40-676022-ubuntu-18.04
$ ./amdgpu-install
should run it.

Last edited by mrmazda; 11-26-2018 at 08:23 PM. Reason: had rhel while needed ubuntu
 
Old 11-26-2018, 08:01 PM   #34
elliepiper
Member
 
Registered: Nov 2018
Distribution: Ubuntu 18
Posts: 65

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Ztcoracat View Post
If this:

Code:
amdgpu-pro-18.40-676022-ubuntu-18.04
is the script run it like this:

Code:
./amdgpu-pro-18.40-676022-ubuntu-18.04
Check your directory with the script in it. I'm thinking (according to the instructions) it should be ./amdgpu-install.

https://amdgpu-install.readthedocs.i...ll-script.html
I put in './amdgpu-pro-18.40-676022-ubuntu-18.04/amdgpu-install' and it came back Unsupported OS.

I'm about to go to work for a couple of hours, but I'll be back later. Thanks for helping. If you have any idea where to go from here, let me know. Otherwise, enjoy your evening. You're awesome for taking the time.
 
1 members found this post helpful.
Old 11-26-2018, 08:07 PM   #35
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Try:

Code:
 
cd amdgpu-pro-18.40-676022-ubuntu-18.04
Than type:
Code:
./amdgpu-install
Don't work to hard.

Is the script executable?
 
Old 11-26-2018, 08:22 PM   #36
elliepiper
Member
 
Registered: Nov 2018
Distribution: Ubuntu 18
Posts: 65

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Ztcoracat View Post
Try:

Code:
 
cd amdgpu-pro-18.40-676022-ubuntu-18.04
Than type:
Code:
./amdgpu-install
Don't work to hard.

Is the script executable?
Lol, I never do. Well, not true, but it's a rewarding job. It is executable, and maybe I did it wrong? I am alllllmost there with understanding it.
 
Old 11-26-2018, 08:34 PM   #37
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, others
Posts: 5,810
Blog Entries: 1

Rep: Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068Reputation: 2068
Quote:
Originally Posted by elliepiper View Post
I put in './amdgpu-pro-18.40-676022-ubuntu-18.04/amdgpu-install' and it came back Unsupported OS.
I wonder could the script be written to reject usage in Ubuntu's parent Debian or its derivative Mint? If so, I'd expect Debian or Mint repos to provide an appropriately conformed version.

Last edited by mrmazda; 11-26-2018 at 08:36 PM.
 
Old 11-26-2018, 08:35 PM   #38
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
Originally Posted by elliepiper View Post
Lol, I never do. Well, not true, but it's a rewarding job. It is executable, and maybe I did it wrong? I am alllllmost there with understanding it.
Glad to hear it's a rewarding job.

Mine is too:-

That's good that it is executable. I'd like to know why it returned Unsupported OS.

When you have time run this command and post the output.

Code:
cat /etc/os-release
 
Old 11-26-2018, 08:36 PM   #39
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
Quote:
I wonder could the script be written to reject usage in Ubuntu's parent Debian or its derivative Mint?
I too had that thought since it is returning Unsupported OS.......
 
Old 11-26-2018, 08:45 PM   #40
Ztcoracat
LQ Guru
 
Registered: Dec 2011
Distribution: Slackware, MX 18
Posts: 9,484
Blog Entries: 15

Rep: Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176Reputation: 1176
https://forums.linuxmint.com/viewtopic.php?t=272074
 
Old 11-26-2018, 11:18 PM   #41
elliepiper
Member
 
Registered: Nov 2018
Distribution: Ubuntu 18
Posts: 65

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Ztcoracat View Post
If your still having trouble, right click on the script and go to properties.

Is it executable?
I'm back. It says it is executable when I look at the properties, but I this is all I've gotten so far:

ellie@ellie-MS-7B24:~$ cd Downloads
ellie@ellie-MS-7B24:~/Downloads$ ./amdgpu-install
bash: ./amdgpu-install: No such file or directory
ellie@ellie-MS-7B24:~/Downloads$ ./amdgpu-pro-18.40-676022-ubuntu-18.04/amdgpu-install
Unsupported OS
ellie@ellie-MS-7B24:~/Downloads$ amdgpu-pro-18.40-676022-ubuntu-18.04/
bash: amdgpu-pro-18.40-676022-ubuntu-18.04/: Is a directory
ellie@ellie-MS-7B24:~/Downloads$ ./amdgpu-install
bash: ./amdgpu-install: No such file or directory
ellie@ellie-MS-7B24:~/Downloads$ amdgpu-pro-18.40-676022-ubuntu-18.04/
bash: amdgpu-pro-18.40-676022-ubuntu-18.04/: Is a directory
ellie@ellie-MS-7B24:~/Downloads$ ./amdgpu-install
bash: ./amdgpu-install: No such file or directory
ellie@ellie-MS-7B24:~/Downloads$ cd amdgpu-pro-18.40-676022-ubuntu-18.04
ellie@ellie-MS-7B24:~/Downloads/amdgpu-pro-18.40-676022-ubuntu-18.04$ ./amdgpu-install
Unsupported OS
ellie@ellie-MS-7B24:~/Downloads/amdgpu-pro-18.40-676022-ubuntu-18.04$
 
Old 11-26-2018, 11:30 PM   #42
elliepiper
Member
 
Registered: Nov 2018
Distribution: Ubuntu 18
Posts: 65

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by mrmazda View Post
I wonder could the script be written to reject usage in Ubuntu's parent Debian or its derivative Mint? If so, I'd expect Debian or Mint repos to provide an appropriately conformed version.
This is interesting, but I'm not sure what action to take. Are you thinking there is a version of the driver out there that would work better with Mint specifically? Bc I will say, I noticed in the files that the Documents file folder (within the download, not my system doc folder) had a changelog in it called 'changelog.Debian.gz'. Something? lol I don't know.
 
Old 11-26-2018, 11:32 PM   #43
elliepiper
Member
 
Registered: Nov 2018
Distribution: Ubuntu 18
Posts: 65

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Ztcoracat View Post
Glad to hear it's a rewarding job.

Mine is too:-

That's good that it is executable. I'd like to know why it returned Unsupported OS.

When you have time run this command and post the output.

Code:
cat /etc/os-release
Here you go. ALmost missed this post.

ellie@ellie-MS-7B24:~$ cat /etc/os-release
NAME="Linux Mint"
VERSION="19 (Tara)"
ID=linuxmint
ID_LIKE=ubuntu
PRETTY_NAME="Linux Mint 19"
VERSION_ID="19"
HOME_URL="https://www.linuxmint.com/"
SUPPORT_URL="https://forums.ubuntu.com/"
BUG_REPORT_URL="http://linuxmint-troubleshooting-guide.readthedocs.io/en/latest/"
PRIVACY_POLICY_URL="https://www.linuxmint.com/"
VERSION_CODENAME=tara
UBUNTU_CODENAME=bionic
ellie@ellie-MS-7B24:~$
 
Old 11-26-2018, 11:38 PM   #44
elliepiper
Member
 
Registered: Nov 2018
Distribution: Ubuntu 18
Posts: 65

Original Poster
Rep: Reputation: Disabled
This looks like it MIGHT contain my solution somewhere, but ffs I cannot understand what they are talking about well enough to get my bearings and try anything. It's the link you gave me, Cat. I downloaded version 18 of this amdgpu pro, and I have Mint 19. Could THAT be the issue?

***https://forums.linuxmint.com/viewtopic.php?t=272074
 
Old 11-27-2018, 01:36 AM   #45
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by elliepiper View Post
It says I do NOT have that installed. So, I am looking online now to see if I can download and install whatever that is.
NO!
that is NOT how we do things on gnu/linux!!!
please read this.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Flickering screen after fresh install of 11.04 afro76 Ubuntu 5 06-04-2011 03:53 PM
New Widescreen Monitor Problems...Flickering and Blanking 1bloke Linux - Hardware 7 09-15-2007 10:44 PM
monitor flickering w/linux, not windows viveleroi0 Linux - Hardware 2 06-16-2004 08:03 PM
Monitor flickering and going black after install of Redhat 9 Petrovski Linux - Hardware 4 05-04-2004 11:44 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:32 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration