- Ctrl + a => Return to the start of the command you’re typing
- Ctrl + e => Go to the end of the command you’re typing
- Ctrl + u => Cut everything before the cursor to a special clipboard
- Ctrl + k => Cut everything after the cursor to a special clipboard
- Ctrl + y => Paste from the special clipboard that Ctrl + u and Ctrl + k save their data to
- Ctrl + t => Swap the two characters before the cursor (you can actually use this to transport a character from the left to the right, try it!)
- Ctrl + w => Delete the word / argument left of the cursor
- Ctrl + l => Clear the screen
Tutorial: The best tips & tricks for bash, explained
Microsoft has failed
How do I forward an exported function to an ordinal in another DLL?
Elementary OS
Adventures in Microsoft UEFI Signing
Using Reactive Extensions with Mono
Step-By-Step Guide to Controlling Device Installation Using Group Policy
Contents
Introduction
Who Should Use This Guide?
Benefits of Controlling Device Installation Using Group Policy
Scenario Overview
Technology Review
Device Installation in Windows
Group Policy Settings for Device Installation
Group Policy settings for Removable Storage Access
Requirements for completing the scenarios
Prerequisite Procedures
Prevent installation of all devices
Prerequisites for preventing installation of all devices
Steps for preventing installation of all devices
Allow users to install only authorized devices
Prerequisites for allowing users to install only authorized devices
Steps for allowing users to install only authorized devices
Prevent installation of prohibited devices
Prerequisites for preventing installation of prohibited devices
Steps for preventing installation of prohibited devices
Control read and write permissions on removable media
Prerequisites for controlling read and write permissions on removable media
Steps for controlling read and write permissions on removable media
Conclusion
Additional resources
Logging bugs and feedback
Introduction
This step-by-step guide describes how you can control device installation on the computers that you manage, including designating which devices users can and cannot install. Specifically, in Windows Server 2008 and Windows Vista you can apply computer policy to:
Prevent users from installing any device.
Allow users to install only devices that are on an "approved" list. If a device is not on the list, then the user cannot install it.
Prevent users from installing devices that are on a "prohibited" list. If a device is not on the list, then the user can install it.
Deny read or write access to users for devices that are themselves removable, or that use removable media, such as CD and DVD burners, floppy disk drives, external hard drives, and portable devices such as media players, smart phones, or Pocket PC devices.
This guide describes the device installation process and introduces the identification strings that Windows uses to match a device with the device driver packages available on a computer. The guide also illustrates three methods of controlling device installation. Each scenario shows, step by step, one method you can use to allow or prevent the installation of a specific device or a class of devices. The fourth scenario shows how to deny read or write access to users for devices that are removable or that use removable media.
Read more: MSDN
Using Caller Info Attributes in .NET 4.5
MediaSuite.NET
- CamCapture.NET, WaveInput & WaveOutput
- Audio Encoder/Decoder setup and feedback loop
- Using AVIWriter.NET
- Using MP4Writer.NET
- Using MP4Toolkit
- Using Resampler.NET
- Encoding and sending G.711 over RTP
- Receiving G.711 over RTP, decoding & Playout
- Generating DTMF Tones
- How to extract information from a FLV (Flash Video) file
- RTP Send & Receive symmetric using RTPSession with one participant
Step by step guide to setting up Xen and XAPI (XenAPI) on Ubuntu 12.04 and managing it with Cirtix XenCenter
- Manage dom0 using a configuration management framework (Puppet, Chef)
- Apply security updates to dom0 root file system
- Run Xen version 4.1. XCP appliance runs version <to be filed>
- Ubuntu 12.04 is a LTS release that is supported for 5 years
- A fresh installation of Ubuntu 12.04 on the server
- Small root file system partition – I usually have a 10GB partition for root fs (/) and the rest of the space is setup as a physical volume for setting up LVM later. This LVM partition will be used for vm storage and snapshots later. You can choose any partition layout that you are comfortable with, just remember to keep the root partition small and have a large space dedicated for a LVM volume
- root access to the host
- $sudo apt-get install xen-hypervisor
- Setup GRUB to boot the Xen Hypervisor
- $sudo sed -i ‘s/GRUB_DEFAULT=.*\+/GRUB_DEFAULT=”Xen 4.1-amd64″/’ /etc/default/grub
- Disable apparmor at boot
- $sudo sed -i ‘s/GRUB_CMDLINE_LINUX=.*\+/GRUB_CMDLINE_LINUX=”apparmor=0″/’ /etc/default/grub
- Restrict dom0 to 2GB of memory and 2 vcps
- $sudo vi /etc/default/grub
after GRUB_CMDLINE_LINUX=”apparmor=0″ add the line GRUB_CMDLINE_XEN=”dom0_mem=2G,max:2G dom0_max_vcpus=2″
- Update Grub with the config changes we just made
- $sudo update-grub
- Reboot the server so that Xen boots on the server
- $sudo reboot
- Once the server is back online ensure that Xen is running
- cat /proc/xen/capabilities should display “control_d”
- Install XCP-XAPI