Solved
make[2]: Entering directory `/home/
/bin/mkdir -p '/usr/local/bin'
/usr/bin/install -c soundconverter '/usr/local/bin'
/usr/bin/install: cannot create regular file ‘/usr/local/
make[2]: *** [install-
make[2]: Leaving directory `/home/
make[1]: *** [install-am] Error 2
make[1]: Leaving directory `/home/
make: *** [install-recursive] Error 1
This is at the end of install. I checked the rpogram for version and it was still 2.04.
The rest of the script seemed to run fine. Am I supposed to run as su?
Doesn't seem to be able to open/write to /usr/bin.
Any help would be greatly appreciated
SOLVED by Manfred Hampl again Thank You
Question information
- Language:
- English Edit question
- Status:
- Solved
- Assignee:
- No assignee Edit question
- Solved by:
- Manfred Hampl
- Solved:
- 2016-03-05
- Last query:
- 2016-03-05
- Last reply:
- 2016-03-04
|
#1 |
I assume that your user does not have administrative authorizations by default, and you have to use su or sudo to be allowed writing in the /usr/local/bin area.
The README and INSTALL files do not specifically state it, but I assume on Ubuntu and similar systems the correct command is
./configure && make && sudo make install
Del Lewis (shamsrumi) said : | #2 |
Many Thanks!!!
Much appreciation
On Fri, Mar 4, 2016 at 4:08 AM, Manfred Hampl <
<email address hidden>> wrote:
> Your question #287789 on SoundConverter changed:
> https:/
>
> Status: Open => Answered
>
> Manfred Hampl proposed the following answer:
> I assume that your user does not have administrative authorizations by
> default, and you have to use su or sudo to be allowed writing in the
> /usr/local/bin area.
>
> The README and INSTALL files do not specifically state it, but I assume on
> Ubuntu and similar systems the correct command is
> ./configure && make && sudo make install
>
> --
> If this answers your question, please go to the following page to let us
> know that it is solved:
>
> https:/
>
> If you still need help, you can reply to this email or go to the
> following page to enter your feedback:
> https:/
>
> You received this question notification because you asked the question.
>
--
"Forage the plains of madness, for sanities sustenance"
Del Lewis (shamsrumi) said : | #3 |
Thanks Manfred Hampl, that solved my question.