Step # 1: Create self signed SSL Certificates lighttpd

Step # 1: Create self signed SSL Certificates Create a directory to store SSL certificate: # mkdir /etc/lighttpd/ssl/domain.com -p # cd /etc/lighttpd/ssl/domain.com # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes # chown lighttpd:lighttpd /etc/lighttpd/ssl -R # chmod 0600 /etc/lighttpd/ssl/domain.com You need to provide information such as country name, your domain name… Read More: Step # 1: Create self signed SSL Certificates lighttpd »

fix heartbleed update OpenSSL on Raspbian raspberry

As of 09/04/2014 the main wheezy repository uses the patched version 1.0.1e-2+deb7u5 and as commented, you can get it like this: > sudo apt-get update > sudo apt-get upgrade Which will update the following packages: libssl1.0.0 openssh-client openssh-server openssl ssh

7 habits of highly successful Unix admins

http://www.itworld.com/operating-systems/413259/unix-7-habits-highly-successful-unix-admins   7 habits of highly successful Unix admins You can spend 50-60 hours a week managing your Unix servers and responding to your users’ problems and still feel as if you’re not getting much done or you can adopt some good work habits that will both make you more successful and prepare you for… Read More: 7 habits of highly successful Unix admins »

Categoría: Nix

Setting up a private opencsw

Setting up a private mirror Sometimes it is sufficient to simply use a mirror on the Internet. However, there are situations where a local mirror can be useful. When you have a lot of servers accessing the repository, want to control the package updates exactly or when your production servers just can’t access the internet… Read More: Setting up a private opencsw »

OpenCSW pkgutil config solaris

Getting started OpenCSW uses a tool named pkgutil on top of the Solaris packaging utilities to automatically download, install and update packages. It needs to be installed manually once, after that all maintenance is done via pkgutil.

local repository solaris 11

svccfg -s application/pkg/server setprop pkg/inst_root=/install/sol_11_1_repo_full/repo svccfg -s application/pkg/server setprop pkg/readonly=true pkg set-publisher -G ‘*’ -g http://localhost solaris pkg update

Solaris 11 – Install Gnome

After a fresh install of Solaris 11 express, only the console mode is activated. To add Gnome, simply do : $ sudo pkg install slim_install This will install additional packages that are not installed by default. Then the service needs to be enabled: $ sudo svcadm enable gdm You can reboot now and voilà the… Read More: Solaris 11 – Install Gnome »