Notes by woolf

Displaying keyword search results 1 - 11
Created by woolf on December 29, 2011 10:12:53    Last update: December 29, 2011 10:14:17
To identify the display driver info with the DirectX Diagnostic Tool included in Widnows 7 and Vista: Bring up the "Run" dialog with the Win button Type dxdiag and press Enter. Click the Diaplay tab.
Created by woolf on September 21, 2011 16:23:06    Last update: September 21, 2011 16:24:29
VirtualBox creates/uses a network adapter named vboxnet0 on the host, when a VM network adapter is connected as "host-only". As the VM starts, VirtualBox assigns the IP address 192.168.56.1 to vboxnet0 on the host. The VM DHCP client grabs the IP address 192.168.56.101 from the VirtualBox DHCP server. Connectivity is limited between the VM and the host - unless you configure NAT and IP forwarding on the host. For OpenWRT, if the DHCP client is not started automatically: #/sbin/udhcpc -i br-lan -p /var/run/udhcpc.pid -s ...
Created by woolf on September 07, 2011 08:16:10    Last update: September 07, 2011 08:17:09
Follow these steps to restore the Gnome panel if you deleted it by accident: Open a terminal by bringing up the Run dialog and entering gnome-terminal In the terminal enter: $ gconftool-2 --shutdown $ rm -rf ~/.gconf/apps...
Created by woolf on September 07, 2011 08:09:03    Last update: September 07, 2011 08:09:03
Use the shortcut Alt+F2 to bring up the "Run" dialog. This may be handy when you lost the Gnome panel on the desktop.
Created by woolf on July 05, 2011 16:03:48    Last update: July 05, 2011 16:03:48
The DHCP client packaged with BusyBox is udhcpc . It negotiates a lease with the DHCP server and executes a script when it is obtained or lost. There are four possible arguments to this script: deconfig : The script should put the interface in an up but deconfigured state. bound : The script should configure the interface and set any other relevant parameters. renew : This is used when a lease is renewed. IP address does not change but other parameters may change. nak : This happens when a NAK packet is received from the DHCP server. Network parameters are passed to the script via environment variables. Ubuntu documents that the default script is at /etc/udhcpc/default.script . For OpenWRT, it is located at /usr/share/udhcpc/default.script ....
Created by woolf on April 01, 2009 18:56:29    Last update: April 01, 2009 18:56:29
Press the Windows button together with R (Win+R).
Created by woolf on March 14, 2009 22:31:59    Last update: March 15, 2009 01:34:23
Python version is 2.6 windows native build (not cywgin build). Download setup tools from http://pypi.python.org/pypi/setuptools . The download links are at the bottom of the page. Create symbolic link python26 and run setuptools-0.6c9-py2.6.egg as shell program. C:\local>bash bash-3.2$ cd /cygdrive/c/download... Add C:\python26\Scripts to PATH.
Created by woolf on March 14, 2009 23:25:18    Last update: March 15, 2009 01:18:03
One of the first things you notice about Windows Vista is the annoying User Account Control (UAC) popup. It keeps nagging you to click a confirmation button whenever you try to install or reconfigure something. With UAC, you are working with normal user privileges even though you may be logged in with an administrator account. When the application requires administrator privileges, the UAC prompt pops up to ask for your confirmation. UAC compatible applications are packed with an application manifest to tell Vista that they need elevated privileges . For legacy applications needing elevated privileges , you can check " Run this program as an administrator " on the Compatibility tab of file properties dialog. Application manifest itself is not new to Windows Vista. In...
Created by woolf on February 10, 2009 21:05:54    Last update: February 10, 2009 21:05:54
Press the "Windows" key Press R to bring up the Run dialog Enter tasks and hit Return.
Created by woolf on February 02, 2009 02:53:34    Last update: February 02, 2009 02:53:34
From the "Start" button, select "Run", then type in "services.msc", hit return.
Created by woolf on January 15, 2009 05:05:19    Last update: January 19, 2009 05:07:49
MinGW is "Minimalist GNU for Windows" - a collection of freely available and freely distributable Windows specific header files and import libraries that allows you to build Windows native executables with GCC. MSYS is a minimal system that provides a POSIX compatible shell and utilities so that you can run the normal set of GNU build tools (such as configure, make). You can download MinGW and MSYS from sourceforge.net: http://sourceforge.net/project/showfiles.php?group_id=2435 . The set of files is overwhelming and installation is confusing sometimes. But here's what I did in order to build ffmpeg on Windows XP: Download "Automated MinGW Installer" (MinGW 5.1.4) Install MinGW 5.1.4. Select "Candidate". Check g++, but leave other options unchecked Finish installation of MinGW Install MSYS DTK 1.0 in C:\msys\1.0. Download "MSYS...