Debian on Windows with VMWare, Linux applications in Windows using X server
With this little and very simple tutorial I will explain what I did to:
- install VMWare for Windows
- run Debian virtual appliance
- connect from Windows host to Linux guest and connect from Linux guest to Windows host
- run seamless Linux applications in the Windows graphical environment using an X server


Posted by: Z24 | Wed, May 04 2011 |
Category: /windows |
Permanent link |
home
Tagged as: client-server, linux, security, virtualization, VMWare, windows
How to rename multiple files from bash
Rename all *html files to *test:
for x in `ls *html`; do mv $x `echo $x | sed -e "s/html/test/"`; done
Bash for:
for var in some-list ; do command ; done


Posted by: Z24 | Wed, May 04 2011 |
Category: /linux |
Permanent link |
home
Tagged as: command-line, linux, programming, script, shell
Execute a command at shutdown
To dismount TrueCrypt volumes at shutdown and reboot time, I created a script, put it in/etc/init.d/
and symlinked it into the needed /etc/rc?.d/
directories using update-rc.d
.
Here is the detail:


Posted by: Z24 | Wed, May 04 2011 |
Category: /linux |
Permanent link |
home
Tagged as: command-line, linux, programming, script, shell