Advanced Search
Search Results
372 total results found
Wine
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
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
REDIRECT Installatie openftd in OpenSUSE 10.3
Speedup Package Management
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...
Enable harddisk spin-down / sleep mode / standby
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
How to make your CUPS server broadcast itself Install Dymo Labelwriter in openSUSE
How to make your CUPS server broadcast itself
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
In KDE: Regional settings keyboard layout xkb options | enable compose key position | menu is compose
Install a PXE boot server on 11.1
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
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
use iostat (package sysstat) siga (outputs in HTML) sitar (SLES)
Disable hardware polling for CD-drives
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
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
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
Install all updates using Zypper The following command gives you ALL updates: zypper up -t package
How to find duplicate files BY CONTENT!!
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
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
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...