Close Batch Window After Execution
Example will start exe file and close window, good for batch files
ECHO off
ECHO.
ECHO Starting file.exe
ECHO.
start "" "C:\dir\file.exe"
ECHO.
ECHO Done
ECHO.
Also can use /MIN to start app window minimized like:
start /MIN "" "C:\dir\file.exe"
Windows 7 Remote Desktop and RealVNC
Windows 7 Remote Desktop (Professional and Ultimate)
Configure RealVNC for Windows 7
Windows 7 SENDTO Directory
Shortcut, address bar: shell:sendto
Ubuntu Remove Package
#apt-get remove [package]
#apt-get --purge remove [package] (will remove package and config files)
#dpkg --list (show package list)
#dpkg --list | less
#dpkg --list | grep -i '[package]'
Ubuntu Hosts File
127.0.0.1 localhost
192.168.1.110 linux
Samba Configuration
Sample /etc/samba/smb.conf
[global]
# Change this to the workgroup/NT-domain name your Samba server will part of
workgroup = MATRIX
# server string is the equivalent of the NT Description field
server string = %h server (Samba, Ubuntu)
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable its WINS Server
# wins support = no
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# This will prevent nmbd to search for NetBIOS names through DNS.
dns proxy = no
…
[webserver]
comment = Linux Web Server
path = /var/www
browsable = yes
guest ok = yes
read only = no
create mask = 0755
Debian System Info
# head /proc/cpuinfo
# head /proc/version
# head /proc/meminfo
# head /proc/swap
# head /proc/partitions
# cat /etc/issue
