Gentoo Forums
Gentoo Forums
Quick Search: in
[Solved]emerging app-admin/webmin fails due to mask
View unanswered posts
View posts from last 24 hours

rackathon
 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
jordanwb
Guru
Guru


Joined: 10 Jul 2008
Posts: 514
Location: Ottawa, Canada

PostPosted: Sat Aug 16, 2008 11:57 am    Post subject: [Solved]emerging app-admin/webmin fails due to mask Reply with quote

All right so I know why it won't install, webmin is not deemed stable (correct?) for the x86 arch. So I found this wiki article: http://gentoo-wiki.com/Masked#But_you_want_to_install_the_package_anyway...

I run

Code:
echo "=app-admin/webmin-1.400-r1" >> /etc/portage/package.keywords


But bash says it can't find /etc/portage/package.keywords.


Last edited by jordanwb on Sat Aug 16, 2008 12:49 pm; edited 1 time in total
Back to top
View user's profile Send private message
FrankRizz0
Guru
Guru


Joined: 28 Nov 2006
Posts: 312

PostPosted: Sat Aug 16, 2008 12:10 pm    Post subject: Reply with quote

Well as far as I know it should be as simple as mkdir /etc/portage/package.keywords but myself personally have never seen a gentoo system built that did not have /etc/portage/package.keywords :?:
Back to top
View user's profile Send private message
avendesora
Veteran
Veteran


Joined: 16 Aug 2002
Posts: 1528
Location: Betelgeuse vicinity

PostPosted: Sat Aug 16, 2008 12:19 pm    Post subject: Reply with quote

Not quite - mkdir /etc/portage/package.keywords then echo "..." > /etc/portage/package.keywords won't work.

Well, the most "current" way of doing it is a mix of both your posts:
Code:
mkdir -p /etc/portage/package.keywords
echo "=app-admin/webmin-1.400-r1" >> /etc/portage/package.keywords/webmin

The older way would have been:
Code:
mkdir /etc/portage
echo "=app-admin/webmin-1.400-r1" >> /etc/portage/package.keywords

which still works.

/etc/portage was not created during the install process last time I looked, so you have to create that directory,
and some subdirectories if you want to use them.
_________________
I won't disclose my real .sig for less than $10.
Back to top
View user's profile Send private message
FrankRizz0
Guru
Guru


Joined: 28 Nov 2006
Posts: 312

PostPosted: Sat Aug 16, 2008 12:34 pm    Post subject: Reply with quote

Oooops, forgot the -p
Back to top
View user's profile Send private message
jordanwb
Guru
Guru


Joined: 10 Jul 2008
Posts: 514
Location: Ottawa, Canada

PostPosted: Sat Aug 16, 2008 12:49 pm    Post subject: Reply with quote

Thanks avendesora it works now.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT - 5 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum