Home Home
Sign up | Login

Deprecation notice: openSUSE Lizards user blog platform is deprecated, and will remain read only for the time being. Learn more...

Author Archive

Using docker 1.0 on openSUSE 13.1

June 16th, 2014 by

There is quite some buzz around docker and no one can avoid to read about it. So I wanted to try it out. Since version 1.0 is now out some things got even smoother it seems.
Here is the short version of the commands:

  1. Add the Virtualization repository
    zypper ar http://download.opensuse.org/repositories/Virtualization/openSUSE_13.1 docker
    zypper ref
  2. Install docker
    zypper in docker
  3. Start the docker service
    systemctl start docker
  4. Then for example search for openSUSE based containers in the docker registry
    docker search opensuse

    This should provide the same list as using this web page:

    https://registry.hub.docker.com/

  5. For now we are going to download and use Flavio Castelli’s 12.3 container by first pulling it
    docker pull flavio/opensuse-12-3

    Depending on your connection that may take some time or finish quite quickly with output looking like this:

    # docker pull flavio/opensuse-12-3
     Pulling repository flavio/opensuse-12-3
     7b4864b5c142: Download complete
     3ac0450b90b3: Download complete
  6. If that worked well, you are ready to use that container. For example check what RPM’s are installed by simply issuing
     docker run flavio/opensuse-12-3 rpm -qa

Now you are ready to pull and use containers. If you want to build your own containers the following blog post by Flavio Castelli might be of interest to you:

http://flavio.castelli.name/2014/05/06/building-docker-containers-with-kiwi/

How to be user friendly

December 21st, 2011 by

After having read an answer containing a rude “RTFM” on one of the openSUSE mailing lists I think I have to make a point. A very important one, since it seems to become a habit to be brief and put information into single spots only, which might be found with Google.

Helping users, and I don’t mean only new users, cannot be done with pointing them to Google all the time unless it’s a very well-known issue. A Unix system like Linux comes from a very good tradition of man pages, howtos and other local information e.g. files in /usr/share/doc/packages/. Unfortunately this tradition seems to be dying. This wouldn’t be dramatic if there would be more openSUSE specific documentation, but this is not the case. It’s either brief, old or fragmented over the net in blogs or mailing list archives. Especially the latter may be a good source for solving problems, but some threads are filled with long discussions and the satisfied solution cannot be found with a few glimpses or even clicks.

Therefore all of us need to write more documentation that can be found easily and at best on *.opensuse.org servers. Otherwise the search function there is pointless. The best place for documenting solutions to common and not-so-common problems is the support database in the openSUSE wiki:

http://en.opensuse.org/Portal:Support_database

Writing things in your personal blog is good and welcome, but at the same time there should be an SDB article about the provided solution.

I have to add that there are a lot of people who already put a lot of effort into documenting things. This post is not to criticize, but to support them, so that there are not only a few who contribute valuable help to users.