Reply to this topic Topic Options
How We Made Shift 0.6 Gnome
Simon
Post #1 Jan 27 2008, 15:46


Dumbo dumbo.
Group Icon
Group Icon

Group: Developer
Posts: 6,486
Joined: 5-July 05
From: St. John's, NL, Canada
Member No.: 117,243
Alright, it was asked for, so here it is. Shift was split in half for developing 0.6, so I was doing Gnome, and CrimsonRedMk was doing KDE and Lite (thanks, by the way tongue.gif). I'll tell you how I got Shift 0.6 Gnome made.

Get an awesome customizing program

For most of the time I was making Shift, I was inside a program called Reconstructor, even though most of the work was done via the command line. What's good about Reconstructor is that it takes a Ubuntu or Ubuntu-compatible ISO, and splits it into 3 parts: remaster (which is the actual bootable CD), root (the root of the filesystem, this is a full version of Ubuntu or Shift that will eventually end up on someone's system), and intrid (I didn't really touch this, but it is the initial ramdisk. Don't worry about it, we'll tell you when it's useful).

So, we loaded the ISO into Reconstructor, and we were greeted with a plethora of options. What did we do now?

Remove the stuff no one wants, add the stuff everyone wants

Our next step was to add and remove some packages. The best way to do that is by using the command line and apt-get. Another useful thing about reconstructor is that there is a little terminal icon at the bottom left of the window, which gives you command line access to a working Shift system. If you type in apt-get install packagename, packagename will be installed into the system, and added to the menus (if necessary).

It's the same for apt-get remove, except in reverse (things get taken out of menus, the apps get removed, etc.).

Another thing we did was an apt-get dist-upgrade. This will upgrade the entire system to the latest stable packages, but if there are instabilities with the system, this is probably the root of the problem. We looked at it from the perspective that this is not a stable distro yet, and we have time to fix the bugs, so we might as well be shipping everything up to date.

And finally, what are we supposed to do with all of those extra package files that were just downloaded? They've been installed, and we don't really have much use for them anymore, so we run an apt-get clean. If you have a 900MB ISO at one point, as I can tell you I did, it's because you forgot that single command tongue.gif .

Get everything branded

So, you've got a system that's working pretty well now, but it's not branded! How dare Ubuntu (or Shift) take your work and put their branding all over it? We'll just have to fight back.

But truth be told, branding can be a pain. Reconstructor helps, but you actually have to replace everything with a Ubuntu logo or name on it with the name of your distro, because of the trademark, and sometimes files hide in places they shouldn't. Shift is also a registered trademark, and thus if you are basing your distribution off of it, you need to have your own distribution name (unless you're working on Shift and not a derivative).

So, to get the easy stuff out of the way. There is a tab at the top of Reconstructor called Gnome, which is where you can add a theme, wallpaper, icon set, and set the default configuration for such things. There, easy part done. But there's still pesky little Ubuntu icons everywhere!

Go through /usr/icons/, and replace every single Ubutnu- or Shift-related icon with an icon for your distro. Yeah, it's a pain, I know. There's also some in /usr/pixmaps/ that you should replace, like the icon for Ubiquity (the Ubuntu/Shift installer). And when you're done, delete the icon cache and run a gtk-update-icon-cache on every icon set you've modified, (if you've added an icon set, run a gtk-update-icon-cache on that, too). This will change that little, stupid, irritating icon at the top left of your screen, next to the Applications menu. I spent 5 hours straight trying to change that from Ubuntu to Shift, at one point getting mad at the Ubuntu developers themselves in their IRC room (sorry guys! tongue.gif).

Useful tip: in your own terminal (not the terminal of the distro you're developing), run a sudo nautilus. The root, remaster, and intrid folders have big fancy permissions on them, but using that command, you can drag files in and out of the ISO using a nice file navigator. You need to be root (or elevated permissions a la sudo) to change things within those folders.

Config files

This is more of a pasteboard for me. When I find a config file, I honestly don't want to come in and explain it to everyone, but I want to remember where it is, and might as well share tongue.gif . So the following is useful links, commands, files, etc.

http://library.gnome.org/admin/system-admin-guide/2.20/

/usr/share/gconf/defaults -- Default gconf stuff.

gconftool-2 --dump <a directory in gconf> -- Useful for exporting things like a panel configuration

update-gconf-defaults -- writes files in /usr/share/gconf/defaults to a single, default gconf structure.

/etc/skel/ -- the default home folder for a user.

/etc/lsb-release is a text file that also needs to be changed. We recommend only changing the description, as the rest is probably still a pretty accurate description of your distro for programs that want to know.

Conclusion

You should also be clicking Apply on Reconstructor after you change anything within the interface (not from the Terminal, since that actually updates things as soon as you say "Do this"). You want to click Next after hitting Apply one last time, and name your distro, your ISO, etc. And now, you wait. And wait. And wait. And wait. And wait. And wait. And then you have an ISO sitting there for you to burn to a CD, or run ion a virtual machine. Congratulations, you just made a Linux distribution.

Thanks to the entire Shift Linux team, especially Barney, CrimsonRedMk, and Mephistopheles, and anyone who helped me out at some point in #neowin on irc.neowin.net or #ubuntu or its other channels on irc.ubuntu.com.

This post has been edited by simon360: Feb 24 2008, 04:46
Profile Card PM + Reply to Post Go to the top of the page Email Poster

Log In or Register · Advertise on Neowin
vetJames7
Post #2 Jan 27 2008, 15:56


Neowinian UNSTOPPABLE
Group Icon
Group Icon

Group: vetVeteran
Posts: 6,241
Joined: 26-June 04
From: Britain
Member No.: 60,405
Cool guide! Please do post your guide to the config files when you get a chance.

I thought you went with UCK as your GUI tool. Do you think Reconstructor is better?
Profile Card PM + Reply to Post Go to the top of the page Email Poster
Simon
Post #3 Jan 27 2008, 16:16


Dumbo dumbo.
Group Icon
Group Icon

Group: Developer
Posts: 6,486
Joined: 5-July 05
From: St. John's, NL, Canada
Member No.: 117,243
Quote - (James7 @ Jan 27 2008, 13:26) *
Cool guide! Please do post your guide to the config files when you get a chance.

I thought you went with UCK as your GUI tool. Do you think Reconstructor is better?

Well, I did most things via Nautilus and the command line. I tried UCK at one point, but it's more of a wizard than it is a tool iirc, and Reconstructor eflt better to me. Really, it's all about what the user likes more. I should have a link to UCK in there anyway...
Profile Card PM + Reply to Post Go to the top of the page Email Poster
slythfox
Post #4 Jan 27 2008, 17:48


Neowinian
Group Icon

Group: Registered
Posts: 20
Joined: 6-January 08
Member No.: 244,934
Thanks for the guide.

Reconstructor only supports Gnome customization?
Profile Card PM + Reply to Post Go to the top of the page
Simon
Post #5 Jan 28 2008, 01:18


Dumbo dumbo.
Group Icon
Group Icon

Group: Developer
Posts: 6,486
Joined: 5-July 05
From: St. John's, NL, Canada
Member No.: 117,243
Quote - (slythfox @ Jan 27 2008, 15:18) *
Thanks for the guide.

Reconstructor only supports Gnome customization?

No, it also supports KDE, but I haven't worked on Shift KDE. I'm writing this purely from the perspective of a Gnome developer. You should be able to adapt most things in here to KDE.
Profile Card PM + Reply to Post Go to the top of the page Email Poster
slythfox
Post #6 Jan 30 2008, 23:29


Neowinian
Group Icon

Group: Registered
Posts: 20
Joined: 6-January 08
Member No.: 244,934
From the screenshots, it seems as if Reconstructor only supports GNOME. UCK supports KDE and GNOME. So what about Fluxbox or possibly Xfce? (How does shift 0.6 work now with Fluxbox? I mean, is it based off of Ubuntu?)
Profile Card PM + Reply to Post Go to the top of the page
vetJames7
Post #7 Jan 31 2008, 18:00


Neowinian UNSTOPPABLE
Group Icon
Group Icon

Group: vetVeteran
Posts: 6,241
Joined: 26-June 04
From: Britain
Member No.: 60,405
Quote - (simon360 @ Jan 27 2008, 10:16) *
Well, I did most things via Nautilus and the command line. I tried UCK at one point, but it's more of a wizard than it is a tool iirc, and Reconstructor eflt better to me. Really, it's all about what the user likes more. I should have a link to UCK in there anyway...


I'm actually using both Reconstructor and UCK to work on a live 'test' DVD with all the stuff (including nonfree codecs, etc) that I want. The reason for both is that UCK lets you add packages via Synaptics, so if you don't know the name of the package then it's easier (I think) to find it that way. Reconstructor is nicer in other ways I think.

The problem is that you've got to remake the ISO every time you leave one to start the other. Anyway, great guide!
Profile Card PM + Reply to Post Go to the top of the page Email Poster
+CrimsonRedMk
Post #8 Jan 31 2008, 21:26


CrimsonRedMk
Group Icon
Group Icon

Group: +Subscriber
Posts: 823
Joined: 8-June 05
From: Chicago, USA
Member No.: 113,733
Both UCK and Reconstructor play nice with KDE and XFCE smile.gif
Profile Card PM + Reply to Post Go to the top of the page Email Poster
Sevan
Post #9 Feb 6 2008, 01:33


Resident Fanatic
Group Icon

Group: Registered
Posts: 511
Joined: 12-October 05
From: York, Pennsylvania
Member No.: 134,524
Sounds complicated, but a good source. I might make my own distro on my own, we'll see how that goes I suppose.
Profile Card PM + Reply to Post Go to the top of the page
Simon
Post #10 Feb 24 2008, 04:46


Dumbo dumbo.
Group Icon
Group Icon

Group: Developer
Posts: 6,486
Joined: 5-July 05
From: St. John's, NL, Canada
Member No.: 117,243
Config files section added.
Profile Card PM + Reply to Post Go to the top of the page Email Poster
slythfox
Post #11 Mar 8 2008, 23:09


Neowinian
Group Icon

Group: Registered
Posts: 20
Joined: 6-January 08
Member No.: 244,934
I can't get Reconstructor to work with XFCE. The gdm (or whatever it uses) looks funny, and the logins don't work. I've tried twice, I'll try again at some point.
Profile Card PM + Reply to Post Go to the top of the page
« Older · Neowin Shift Linux · Newer »
 Reply to this topic