up vote 0 down vote favorite
share [g+] share [fb]

While I was trying to install intltool on unbuntu I got this:

install: cannot create directory /usr/share/doc/intltool-0.35.5: Permission denied

Today is my first day using Ubuntu so I apologize if this is a basic question.

To get this error I typed:

make install

and also:

make install &&
install -v -m644 -D doc/I18N-HOWTO \
    /usr/share/doc/intltool-0.35.5/I18N-HOWTO

and I also tried:

sudo make install &&
install -v -m644 -D doc/I18N-HOWTO \
    /usr/share/doc/intltool-0.35.5/I18N-HOWTO
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Why did you try to install this from source? Use the Ubuntu packages and the system will keep them up to date:

sudo aptitude install intltool
link|improve this answer
Oops. You're right. – lipton Sep 18 '09 at 17:15
feedback

You might want to try:

sudo make install && sudo install -v -m644 -D doc/I18N-HOWTO \ 
/usr/share/doc/intltool-0.35.5/I18N-HOWTO

sudo executes the immediately following command as superuser you need to put it in front of both commands.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.