Kenneth Dalbjerg, IT Konsulent i århus

Archive for the ‘Linux’ Category

Installere 2 ens Debian maskiner op.

Saturday, August 2nd, 2008 Posted in Debian | No Comments »

Det kan være praktisk at nå man skal installere 2 ens maskiner op, bare at finde frem til hvilket pakker der er installeret på den ene, og så overfører dem til den anden, dette gøres nemt med dpkg og dselect. Først ...

Tæl antal linier i en fil

Saturday, August 2nd, 2008 Posted in Linux | No Comments »

Jeg havde en fil liggende som jeg vil have talt for mange linier der var i. Her kommer linux programmet wc ind i billedet, filen jeg vil tælle hed installedpackages. wc –l installedpackages

Apache and multiple SSL virtual host on same IP address

Tuesday, July 8th, 2008 Posted in Computer, Linux, Windows | 2 Comments »

In standard way, apache only supports one SSL virtual host per IP address, if you want to use different SSL Certificates file. But with mod-gnutls it is possible to have multiple Virtual host with different SSL Certificates file. Install mod-gnutls in ...

Forward Inline or As Attachment by Default in Thunderbird

Wednesday, July 2nd, 2008 Posted in Linux, Windows | No Comments »

To change whether Mozilla Thunderbird inserts the forwarded message as an attachment or inline in the new email: Select Tools | Options... (or Thunderbird | Preferences...) from the menu. Go to the Composition category. Make sure you're on the General tab. Choose Inline or ...

Opgraderingen til Apache 2 fra Apache 1.3 og danske bogstaver

Tuesday, July 1st, 2008 Posted in Linux | No Comments »

Jeg har her til aften opgraderet en webserver fra Apache 1.3 til 2.0, herefter var alle danske bogstaver rettet af alle muligt mærkelige tegn. Dette kan nemt rettes i apache2.conf filen, som ligger i /etc/apache2/apache2.conf (I hvert fald hvis du kører ...

Problems with apt-get in Debian (NO_PUBKEY A70DAF536070D3A1)

Tuesday, July 1st, 2008 Posted in Computer, Debian, Linux | No Comments »

I got this error: W: GPG error: http://security.debian.org testing/updates Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A70DAF536070D3A1 W: GPG error: ftp://ftp.port80.se testing Release: The following signatures couldn't be verified because the public key is ...

Arcserve (Brightstor) Linux behind Windows Arcserve R12

Monday, June 23rd, 2008 Posted in Linux, Windows | No Comments »

We have upgraded a Arcserve (Brightstor) R11.5 to version R12. But behind this one there was install some R11.1 Linux agents. We have been told by CA Support that R12 support R11.1 linux clients. That can maybe be true, but ...

Grep .gz files on linux

Tuesday, June 3rd, 2008 Posted in Linux | No Comments »

I was looking to a method to search a lot of .gz files through. It was some logfiles, you can use zgrep to do this. Example: zgrep 'Search word' /path/to/yours.gz So I do this to search a lot of gz files through: Zgrep '130.226.165.XXX' ...

Vmware Server 1.0.5-80187 on Ubuntu 8.04

Monday, June 2nd, 2008 Posted in Computer, Debian, Linux | No Comments »

I have some trouble install vmware-mui on my Ubuntu 8.04. I got it fix, doing this: ln -s /usr/lib/vmware-mui/lib/libcrypto.so.4 /lib/libcrypto.so.4 ln -s /usr/lib/vmware-mui/lib/libssl.so.4 /lib/libssl.so.4 ln -s /usr/lib/vmware-mui/lib/libcrypto.so.4 /lib/libcrypto.so.4 And after that i edit /etc/init.d/httpd.vmware And go line 256. I change so that vmware_exec "Starting httpd.vmware:" vmware_start_httpd is ...

Debian and build a package from source

Tuesday, March 11th, 2008 Posted in Debian, Linux | No Comments »

I want to build pure-ftpd from source becurs my debian server dosent support capabilities. So first i download the package: host:/usr/local/src/# cd /usr/local/src host:/usr/local/src/# apt-get -b source packagename Then i change the debian/rules files in the package, so that pure-ftpd not support capabilities. (--without-capabilities) host:/usr/local/src/# ...