Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

372 total results found

Wine

Homelab Multimedia

Installing Newsleecher in Wine As for installing your licence, I recommend exporting the registry key from your Windows install, edit the first line in it where it says 'Windows Registry Editor Version 5.00' and change it to 'REGEDIT4'. Then open a te...

Installatie openftd in OpenSUSE 10.3

ZZ - Archief Archief

Installatie OpenFTD in OpenSUSE 10.3 '''De installatie bestaat uit 2 delen: eerst de installatiebron toevoegen de daadwerkelijke installatie De installatiebron toevoegen: open YaST klik op 'Software' en dan op 'Software repositories' klik op 'Add' ...

Installatie openftp in OpenSUSE 10.3

ZZ - Archief Archief

REDIRECT Installatie openftd in OpenSUSE 10.3

Speedup Package Management

Homelab openSUSE

Speeding up the package manager Package Management is one part of the system where massive databases are thrown around, changed incrementally and is generally used heavily. Due to incremental nature of modifications it will cause the databases used to...

SDB:10.3
SDB:Installation
SDB:YOU

Enable harddisk spin-down / sleep mode / standby

Homelab Boot & Disk

Aan elke harddisk in een Linux systeem kun je een aparte time-out geven wanneer deze een spin-down moet gaan doen (standby / sleepmode). Zodra een harddisk in standmode staat gebruikt deze fors minder stroom. Hiervoor kun je het volgende commando gebr...

CUPS

Homelab Netwerk & Server

How to make your CUPS server broadcast itself Install Dymo Labelwriter in openSUSE

How to make your CUPS server broadcast itself

Homelab Netwerk & Server

In order for your clients to automatically recognize the printers that CUPS has, add/edit the following setting in /etc/cups/cupsd.conf: BrowseAddress @LOCAL In this way, your clients won't have to do anything, as their (local) CUPS server will recogn...

Keyboard setting for diacritical characters

Homelab openSUSE

In KDE: Regional settings keyboard layout xkb options | enable compose key position | menu is compose

Install a PXE boot server on 11.1

Homelab Netwerk & Server

This document shows quick and dirty how to install a working PXE boot server on openSUSE We start of course with a working server with a static IP address and a working DHCP server somewhere (could be on your server or on your home router or something...

How to make a .iso file from your CD or DVD

Homelab Multimedia

To make an ISO from your CD/DVD, place the media in your drive but do not mount it. If it automounts, unmount it. for DVD: dd if=/dev/dvd of=dvd.iso  for CD: dd if=/dev/cdrom of=cd.iso SATA device dd if=/dev/sr0 of=file.iso SCSI device: dd if=/dev/scd...

Monitor an OpenSUSE system

Homelab openSUSE

use iostat (package sysstat) siga (outputs in HTML) sitar (SLES)

Disable hardware polling for CD-drives

Homelab openSUSE

hal cdrom polling hal is a core component of the various desktop environments and deals with all sorts of hardware interaction. One component of the hal daemon is the part where it polls the cdrom drive regularly (as often as once every two seconds!) ...

Apache en HTML

Homelab Netwerk & Server

Apache compare Apache conf files and Nginx conf files joomla migratie 1.x naar 1.5 embed video in html5 certificate renewal apache

Joomla migratie 1.x naar 1.5

ZZ - Archief Archief

Migratie Joomla vaan 1.5 d/l migratie component maak nieuwe site aan naast de oude admin -> installer -> components (install php-zlib) installeer extra plugins? start migratie installeer nieuwe joomla stap 6, kies voor load migration script, old tab...

Install all updates using zypper

Homelab openSUSE

Install all updates using Zypper The following command gives you ALL updates: zypper up -t package

How to find duplicate files BY CONTENT!!

Homelab Linux algemeen & CLI

Today in IRC suseROCKS needed to find all duplicate files in a directory by their content, not by their file name, so we whipped up this fancy little 1 liner bash script to do the trick: find . -type f -exec md5sum '{}' \; | sort | awk 'dup[$1]++{prin...

Install ATI/NVIDIA drivers in Opensuse 11

ZZ - Archief Archief

Or commandline friendly    su -c “OCICLI http://opensuse-community.org/ati.ymp”    su -c “OCICLI http://opensuse-community.org/nvidia.ymp” One more commandline way via zypper: NVIDIA:    zypper sa http://download.nvidia.com/opensuse/11.0 nvidia    zyp...

How to clone or copy your harddisk over the network

Homelab Linux algemeen & CLI

Method 1 (tested!) On the bron/zender/source: #dd if=/dev/sda | gzip -c | netcat -l -q 0 -p 2222  On the ontvanger/doel/target: #netcat  2222 | gzip -cd | dd of=/dev/sda This way we get a throughput of 14,1 MB/s, 160 GB in 11543 seconds (3,2 hour) Met...