Notes by woolf

Displaying keyword search results 1 - 5
Created by woolf on December 11, 2011 13:38:58    Last update: December 11, 2011 13:38:58
Install usb.essentials . Package usbutils is optional. # opkg update # opkg install kmod-usb2 # opk... Install usb printer support: # opkg install kmod-usb-printer Install p910nd print server: # opkg install p910nd Edit /etc/config/p910nd : config p910nd option device /dev... Configure firewall to allow port 9100 ( /etc/config/firewall ): # Allow printer con... If clients are connecting from wan then the first line should be: option src wan Enable automatic start of print server when router boots: #/etc/init.d/p910nd enable Restart router: # reboot
Created by woolf on July 27, 2011 20:56:11    Last update: July 27, 2011 20:56:11
Install the DHCP server: voodoo@newpc:~$ sudo apt-get install dhcp3-server ... Edit /etc/dhcp/dhcpd.conf (this is the minimum for a local network without DNS): ddns-update-style none; default-lease-time ... Start the DHCP server: voodoo@newpc:/etc/dhcp$ sudo /etc/init.d/isc-dhcp-...
Created by woolf on December 28, 2009 00:11:20    Last update: January 15, 2010 04:01:46
From http://www.videohelp.com/tools/MJPEG_Tools : A sample command line to deinterlace dv footage, give a slight film look, pass it through a Spatial-Pre-Filter, Temporal-Noise-Filter, and a Spatial-Post-Filter, then encode to DVD complient mpeg2 video looks like this - lav2yuv capture.dv | yuvdeinterlace -f | yuvdenois... From http://www.linux.com/archive/feature/40069 , the actual video file can be used in place of edit list (eli) file: # de-noice the video and scale for DVD output l...
Created by woolf on July 30, 2009 23:08:23    Last update: July 30, 2009 23:09:30
This works for Excel 2003 and Excel 2007. Bring up the Folder Options dialog (My Computer ->Tools -> Folder Options). Select File Types , highlight XLSX (or XLS for 2003), click Advanced . Uncheck "Browse in same window". Highlight Open , click Edit . Change the end of Application used to perform action to: EXCEL.EXE" "%1" . Empty DDE Message and DDE Application Not Running .
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...