Difference between revisions of "Convert a FreeBSD System to PC-BSD®"
From PC-BSD Wiki
Tigersharke (Talk | contribs) |
Tigersharke (Talk | contribs) (minor update) |
||
| (9 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{NavHome|custompagename=Turn FreeBSD into PC-BSD{{r}}|custompagecategory={{PAGENAME}}}} | |
Make sure you have these ports installed, using pkg_add or ports: | Make sure you have these ports installed, using pkg_add or ports: | ||
| − | + | {{txtbox|box= | |
| − | + | devel/subversion<br> | |
| − | + | devel/cmake<br> | |
| − | devel/subversion | + | devel/cmake-gui<br> |
| − | devel/cmake | + | devel/gmake<br> |
| − | devel/cmake-gui | + | devel/qt4-assistant<br> |
| − | devel/gmake | + | devel/qt4-assistant-adp<br> |
| − | devel/qt4-assistant | + | devel/qt4-designer<br> |
| − | devel/qt4-assistant-adp | + | misc/qt4-doc<br> |
| − | devel/qt4-designer | + | devel/qt4-libqtassistantclient<br> |
| − | misc/qt4-doc | + | devel/qt4-linguist<br> |
| − | devel/qt4-libqtassistantclient | + | devel/qt4-moc<br> |
| − | devel/qt4-linguist | + | devel/qmake4<br> |
| − | devel/qt4-moc | + | devel/qt4-rcc<br> |
| − | devel/qmake4 | + | |
| − | devel/qt4-rcc | + | |
devel/qt4-qtsolutions-singleapplication | devel/qt4-qtsolutions-singleapplication | ||
| − | + | }} | |
Then run: | Then run: | ||
| + | {{txtbox|box= | ||
| + | {{pound}} svn co <nowiki>svn://</nowiki>svn.pcbsd.org/pcbsd/current current<br> | ||
| + | {{pound}} cd current/src-sh<br> | ||
| + | {{pound}} make<br> | ||
| + | {{pound}} make install<br> | ||
| + | {{pound}} cd ../src-qt4/libpcbsd<br> | ||
| + | {{pound}} qmake-qt4 *.pro<br> | ||
| + | {{pound}} make<br> | ||
| + | {{pound}} make install<br> | ||
| + | {{pound}} cd ..<br> | ||
| + | {{pound}} qmake-qt4 *.pro<br> | ||
| + | {{pound}} make<br> | ||
| + | {{pound}} make install| | ||
| + | The keyword 'current' means this would not be the release (9.1) version.<br> | ||
| + | <br> <!-- These empty lines help align the above sentence with the top --> | ||
| + | <br> <!-- If there were more text it could be added. --> | ||
| + | <br> | ||
| + | <br> <!-- Take a peek at txtbox template, results are as expected. --> | ||
| + | <br> | ||
| + | <br> | ||
| + | <br> | ||
| + | <br> | ||
| + | <br> | ||
| + | <br> | ||
| + | <br> | ||
| + | }} | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
[http://forums.pcbsd.org/showthread.php?p=96451#post96451 source] | [http://forums.pcbsd.org/showthread.php?p=96451#post96451 source] | ||
Revision as of 23:58, 13 February 2013
| Turn FreeBSD into PC-BSD® |
Make sure you have these ports installed, using pkg_add or ports:
| devel/subversion devel/cmake |
Then run:
| # svn co svn://svn.pcbsd.org/pcbsd/current current # cd current/src-sh |