Mount Windows / Samba share in Debian or Ubuntu
apt-get install cifs-utils sudo mount -t cifs /// / -o username=,domain=,password= It’s fine to omit the password on the command line for security purposes. It will then prompt for it to be enter...
apt-get install cifs-utils sudo mount -t cifs /// / -o username=,domain=,password= It’s fine to omit the password on the command line for security purposes. It will then prompt for it to be enter...
Configuring Proxy Settings in CentOS/RHEL 7 This guide explains how to set up system-wide proxy settings for CentOS or Red Hat Enterprise Linux 7. Setting Global Proxy Configuration Step 1: Edit...
Download psexec from Sysinternals / MS. It only needs to be installed on the machine you run the commands from, not the targets. Note: * All machines must be in the same domain or workgroup * Fire...
Resolving Hyper-V Error 23001 in SCVMM The Problem When you’ve created a Hyper-V cluster using Cluster Shared Volumes (CSV) and installed System Center Virtual Machine Manager (SCVMM), you might ...
Overview It’s very easy to enable SNMP 1.0 / 2.0 management of the Dell MXL blade network switches. All it takes is one command really (“snmp-server community public ro”). SSH to the network switc...
Example of enabling the VNC server on an iDRAC and setting the password: racadm -r 10.1.1.200 -u root -p calvin set idrac.vncserver.enable Enabled racadm -r 10.1.1.200 -u root -p calvin set idrac...
Yes. Yes I can.
Configuring iSCSI on Windows Server 2012 R2 Core This guide demonstrates how to configure iSCSI connections on Windows Server 2012 R2 Core using PowerShell commands. 1. Start and Configure the iS...
$IPAddressPool = Get-SCStaticIPAddressPool -IPv4 -Subnet “10.1.1.0/24” $IPAddress = Get-SCIPAddress -StaticIPAddressPool $IPAddressPool ForEach ($ip in $IPAddress) {Revoke-SCIPAddress -AllocatedIPA...