Search found 80 matches

by Darco
Wed Jan 11, 2012 6:08 pm
Forum: Fedora / Red Hat
Topic: Pango-WARNING **: failed to choose a font
Replies: 2
Views: 7154

The characters are a bit weird, but indeed this solution seems to work.
:P
by Darco
Mon Sep 26, 2011 12:22 pm
Forum: General
Topic: How to configure switchport for trunking Hyper-v
Replies: 2
Views: 10547

by Darco
Fri Jul 29, 2011 7:54 am
Forum: PowerShell
Topic: Check the active node of a cluster
Replies: 3
Views: 11219

Another script with same result 8)

Code: Select all

$servername = "Server01"
$Clu = New-Object -com "MSCluster.Cluster"
$Clu.Open($ServerName)
$GroupOwner = $Clu.ResourceGroups.Item($ServerName).OwnerNode.Name
by Darco
Fri Jul 29, 2011 5:52 am
Forum: PowerShell
Topic: Check the active node of a cluster
Replies: 3
Views: 11219

Just for the fun, hereby the vbs version. See the differences in lines Set args = WScript.Arguments resourcename = args.Item(0) strClusterWMINameString = "winmgmts:\\" & resourcename & "\root\cimv2" Set objWMISvc = GetObject( strClusterWMINameString ) Set ...
by Darco
Wed Jun 08, 2011 6:21 am
Forum: PowerShell
Topic: Check if hostname exists in DNS
Replies: 0
Views: 8232

Check if hostname exists in DNS

Hello, Hereby a small script which check if a hostname exists in DNS. function verify_host { $erroractionpreference = "SilentlyContine" try { ([System.Net.Dns]::GetHostAddresses($strTargetComputerAccount.split('.')[0]))[0].ipaddresstostring } catch &#...
by Darco
Mon Jun 06, 2011 12:56 pm
Forum: PowerShell
Topic: Getting initial info from a SQL server
Replies: 0
Views: 6859

Getting initial info from a SQL server

Hello, Hereby a small script which retreives some basic info from a SQL Server: Function Get-SQLServer { param($SQLServer) Begin{} Process { write-host Connecting to $SQLSERVER $SqlConnection = New-Object System.Data.SqlClient.SqlConnection $SqlConnection.ConnectionString...
by Darco
Wed May 04, 2011 8:42 am
Forum: VMware
Topic: 1 minutes How to's
Replies: 1
Views: 5948

Nice to try something without the need to install first
by Darco
Wed May 04, 2011 8:41 am
Forum: Fedora / Red Hat
Topic: Creating a Red Hat cluster on VMware workstation 6.5
Replies: 3
Views: 14064

Thx for the info
by Darco
Wed Apr 20, 2011 6:20 am
Forum: SuSE
Topic: How To Disable Auto Login
Replies: 1
Views: 6339

You can also try to be a more knowledged person :lol:

Go to /etc/sysconfig
edit the file displaymanager

Search after the key DISPLAYMANAGER_AUTOLOGIN

Remove the name of the person between the ""

:idea:
by Darco
Fri Dec 17, 2010 8:26 am
Forum: General
Topic: Remount root filesystem
Replies: 0
Views: 6902

Remount root filesystem

Best way to remount a ro filesystem

Code: Select all

mount -o remount /dev/sda
by Darco
Fri Dec 17, 2010 8:21 am
Forum: VMware
Topic: Interesting VM Appliances
Replies: 1
Views: 6229

Thx for the info
by Darco
Thu Oct 21, 2010 8:34 am
Forum: General
Topic: Security related info
Replies: 0
Views: 6713

Security related info

Hereby some sites with security info.
Especially for hardening (or something like that :D )

https://network.csudh.edu

FTP related:
http://en.wikibooks.org
http://docstore.mik.ua
http://www.snow.nl

:arrow:
by Darco
Thu Oct 21, 2010 8:27 am
Forum: Xen
Topic: Usefull sites
Replies: 0
Views: 6832

Usefull sites

Hello,

Hereby some sites where they provide good info for installation:

http://www.server-world.info/

:idea:
by Darco
Thu Oct 21, 2010 8:21 am
Forum: General stuff
Topic: Open source DIY hardware keylogger
Replies: 0
Views: 7920

Open source DIY hardware keylogger

Something useful to know: KeeLog has decided to release an early version of it's hardware keylogger family to the public domain, including full firmware & software source code, keylogger hardware electrical schematics, and documentation. This PS/2 key logger is a 100% operational and tested devi...
by Darco
Thu Sep 16, 2010 11:37 am
Forum: General
Topic: How To Remove Packages With RPM "Error: ... Specifies M
Replies: 1
Views: 6183

How To Remove Packages With RPM "Error: ... Specifies M

How To Remove Packages With RPM "Error: ... Specifies Multiple Packages "

for example:
Server# rpm -e --nodeps xulrunner-1.9.0.6-1.el5
error: "xulrunner-1.9.0.6-1.el5" specifies multiple packages

:?

Go to advanced search