DaemonForums  

Go Back   DaemonForums > NetBSD > NetBSD Package System (pkgsrc)

NetBSD Package System (pkgsrc) Installation and upgrading of packages on NetBSD.

Reply
 
Thread Tools Display Modes
  #1   (View Single Post)  
Old 11th September 2009
jaideep_jdof jaideep_jdof is offline
Port Guard
 
Join Date: Nov 2008
Posts: 45
Default NetBSD 5 as a desktop

I want to use netbsd 5 as a desktop os on my laptop. I want gnome as my desktop. So I have some questions:

1) Is there a meta binary package for gnome which will install the complete gnome set.

2) On linux we have hal and fam which handles auto mount and other stuff in gnome, what all packages do I need to install to get similar functionality on netbsd.

3) I read in netbsd 5 release note that their is now a journalized filesystem, how do i enable that, what all options do i have to select during installation.

4) I have a 160 gd hdd so what should be the ideal partitioning for a desktop setup, I want to dedicate whole disk to NetBSD.

5) I searched on pkgsrc.se and the complete list on pkgsrc.org but i couldn't find gnome full text search app called tracker, doesn't NetBSD support it. I use tracker and 'gnome-do' a lot.

Last edited by jaideep_jdof; 11th September 2009 at 07:39 AM. Reason: Forgot something
Reply With Quote
  #2   (View Single Post)  
Old 11th September 2009
s0xxx's Avatar
s0xxx s0xxx is offline
Package Pilot
 
Join Date: May 2008
Posts: 192
Default

Quote:
Originally Posted by jaideep_jdof View Post
I want to use netbsd 5 as a desktop os on my laptop. I want gnome as my desktop. So I have some questions:

1) Is there a meta binary package for gnome which will install the complete gnome set.
There is a section in pkgsrc Guide devoted to Gnome:
Quote:
pkgsrc includes three GNOME-related meta packages:
  • meta-pkgs/gnome-base: Provides the core GNOME desktop environment. It only includes the necessary bits to get it to boot correctly, although it may lack important functionality for daily operation. The idea behind this package is to let end users build their own configurations on top of this one, first installing this meta package to achieve a functional setup and then adding individual applications.
  • meta-pkgs/gnome: Provides a complete installation of the GNOME platform and desktop as defined by the GNOME project; this is based on the components distributed in the platform/x.y/x.y.z/sources and desktop/x.y/x.y.z/sources directories of the official FTP server. Developer-only tools found in those directories are not installed unless required by some other component to work properly. Similarly, packages from the bindings set (bindings/x.y/x.y.z/sources) are not pulled in unless required as a dependency for an end-user component. This package "extends" meta-pkgs/gnome-base.
  • meta-pkgs/gnome-devel: Installs all the tools required to build a GNOME component when fetched from the CVS repository. These are required to let the autogen.sh scripts work appropriately.
http://www.netbsd.org/docs/pkgsrc/gn...#meta-packages

Quote:
Originally Posted by jaideep_jdof
2) On linux we have hal and fam which handles auto mount and other stuff in gnome, what all packages do I need to install to get similar functionality on netbsd.
There was a Google SoC for porting of Hal to NetBSD. It should be in pkgsrc now. I don't use it so I don;t know.
Quote:
Originally Posted by jaideep_jdof
3) I read in netbsd 5 release note that their is now a journalized filesystem, how do i enable that, what all options do i have to select during installation.
I'm not sure whether there is an option during installation as I haven't reinstalled my system in a while. But, if you want to add journaling to one of your partition's the only thing you need to do is to add 'log' option in fstab for that partition. Example:
Code:
/dev/wd0a       /       ffs     rw,log        1 1
WAPBL and softdep don't go together. WAPBL doesn't work with ffs(4) either, unless it has been done lately and I didn't hear about it. See the man page for wapbl(4) and the following:

http://www.feyrer.de/NetBSD/bx/blosx...0822_2037.html

Quote:
Originally Posted by jaideep_jdof
4) I have a 160 gd hdd so what should be the ideal partitioning for a desktop setup, I want to dedicate whole disk to NetBSD.
That really depends of what are you're going to do with it. If it's a desktop system then make a big /home partition, 'cause that will hold all your big files like movies, music etc. No need for bigger root that 512MB. The same for /var. Put /tmp in RAM (see mount_tmpfs(8)).

Quote:
Originally Posted by jaideep_jdof
5) I searched on pkgsrc.se and the complete list on pkgsrc.org but i couldn't find gnome full text search app called tracker, doesn't NetBSD support it. I use tracker and 'gnome-do' a lot.
I don't use Gnome either so I can't help you there. But a search in pkgsrc.se reveals it is in wip/meta-tracker.

At the end, just want to point you to Desktop NetBSD project, but unfortunatelly it's still at the beggining of development.

Cheers
__________________
The best way to learn UNIX is to play with it, and the harder you play, the more you learn.
If you play hard enough, you'll break something for sure, and having to fix a badly broken system is arguably the fastest way of all to learn. -Michael Lucas, AbsoluteBSD

Last edited by s0xxx; 11th September 2009 at 08:59 AM.
Reply With Quote
  #3   (View Single Post)  
Old 11th September 2009
jaideep_jdof jaideep_jdof is offline
Port Guard
 
Join Date: Nov 2008
Posts: 45
Default

Thanks s0xxx for the input. I read some docs and found out the netbsd already has softdep so according to you which one is better log or softdep for a desktop system. Also is there a binary meta pkg for gnome.

Last edited by jaideep_jdof; 11th September 2009 at 09:15 AM.
Reply With Quote
  #4   (View Single Post)  
Old 11th September 2009
s0xxx's Avatar
s0xxx s0xxx is offline
Package Pilot
 
Join Date: May 2008
Posts: 192
Default

Quote:
Originally Posted by jaideep_jdof View Post
Thanks s0xxx for the input. I read some docs and found out the netbsd already has softdep so according to you which one is better log or softdep for a desktop system.
Look at it this way, softdep will soon be removed, so WAPBL it is. From the NetBSD 6.x changes list:
Quote:
softdep
  • The soft dependences / soft updates feature of the fast file system (FFS) has been supplanted by meta data journaling (logging). Logging provides better reliability and better performance for most applications. Soft dependencies will no longer be available from NetBSD 6.0 onwards. We encourage users to enable logging on FFS file systems. [ad 20090222]
http://www.netbsd.org/changes/changes-6.0.html#softdep
Quote:
Originally Posted by jaideep_jdof View Post
Also is there a binary meta pkg for gnome.
The link I gave you will provide everything, just do this:
Code:
# pkg_add -v ftp://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/i386/5.0/All/gnome-2.26.2.tgz
All best
__________________
The best way to learn UNIX is to play with it, and the harder you play, the more you learn.
If you play hard enough, you'll break something for sure, and having to fix a badly broken system is arguably the fastest way of all to learn. -Michael Lucas, AbsoluteBSD
Reply With Quote
  #5   (View Single Post)  
Old 11th September 2009
s0xxx's Avatar
s0xxx s0xxx is offline
Package Pilot
 
Join Date: May 2008
Posts: 192
Default

After installation is done, i suggest you read this also:

ftp://ftp.netbsd.org/pub/pkgsrc/curr.../gnome/MESSAGE
__________________
The best way to learn UNIX is to play with it, and the harder you play, the more you learn.
If you play hard enough, you'll break something for sure, and having to fix a badly broken system is arguably the fastest way of all to learn. -Michael Lucas, AbsoluteBSD
Reply With Quote
  #6   (View Single Post)  
Old 12th September 2009
jaideep_jdof jaideep_jdof is offline
Port Guard
 
Join Date: Nov 2008
Posts: 45
Default

Thank you so much s0xxx.
Reply With Quote
Reply

Thread Tools
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Your Desktop OS? Carpetsmoker Off-Topic 81 13th November 2011 12:17 AM
Fastest 64 bit desktop OS? Randux General software and network 8 12th January 2009 12:05 AM
FreeBSD KDE/GUI DESKTOP HELP rave_mystery_inc FreeBSD Installation and Upgrading 5 5th July 2008 06:18 AM
How about desktop applications thread revzalot Feedback and Suggestions 3 19th May 2008 07:36 PM
[Help] Making the desktop in [BSD 7.0] seadog109 FreeBSD General 15 9th May 2008 05:10 AM


All times are GMT. The time now is 05:40 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content copyright © 2007-2010, the authors
Daemon image copyright ©1988, Marshall Kirk McKusick