shareVM- Share insights about using VM's

Simplify the use of virtualization in everyday life

Posts Tagged ‘ubuntu

Find VM’s older than N days to free up disk space

leave a comment »

I wrote a Python 2.6 script to find and list VM’s older than 90 days on my Windows workstation, so that I could compress them, move them to a 1TB drive attached to my machine, or to a file server, or delete them.

find_old_vms is a tool to find and list old VM’s (vmdk’s, vhd’s) on your hard drives that are older than a given number of days.

Usage: find_old_vms in_this_directory_tree older_than_days

Example: find_old_vms “c:\\” 90

Download for Windows XP, 2003, and Linux. The script uses atime (latest file access time), which is not supported on Windows Vista and Windows 7.

Code:

#
# NOTE: This script uses atime - the last access time for deciding whether a VM
# ****  file is a candidate. On Windows XP, atime is updated every hour, whereas,
#          Windows Vista and Windows 7 do not provide an atime.

import os, sys, glob, time

# dtroot is the pathname for a node in a directory tree
# age is the number of days for which a file has not been accessed
# size in bytes is the maximum size of a file
def scan(dtroot, age, size):
	""" scan <dir> scans the <dir> on host for virtual images
	"""
	filecount = 0
	wctime = time.time(); # get current time

	for root, subdirs, files in os.walk(dtroot):
		# Build a list of filenames that have a suffix vmd* or vhd*
		vfiles = glob.glob(os.path.join(root,"*.v[mh]d*"))
		for f in vfiles:
			atime = os.path.getatime(f)
			elapsed_time = (wctime - atime)/(60*60*24)
			if elapsed_time > age:
				filecount = filecount + 1
				print f, " last accessed ", int(elapsed_time), " days ago\n",

if __name__ == "__main__":

	import sys

	# User asked for help
	if sys.argv[1] == '?':
		print "\nfind_old_vms in_this_directory_tree older_then_days\n",
		print "Find all files with the suffix .v[mh]d* that have not been accessed since older_than_days",
		print "through a recusrive descent starting from the root in_this_directory_tree",
		sys.exit()	

	# Validate that the first argument in_this_directory_tree is a valid path
	if not os.path.exists(sys.argv[1]):
		print sys.argv[1], " is not a valid directory. Please provide another",
		sys.exit()

	# Arbitrarily limit search to 10 years
	invalid_age = 0
	if int(sys.argv[2]) < 1:
		invalid_age = 1
	elif int(sys.argv[2]) > 3650:
		invalid_age = 1

	if invalid_age == 1:
		print sys.argv[2], " is invalid. Please provide between 1 and 3650 days",
		sys.exit()

	scan(sys.argv[1], int(sys.argv[2]), 0)

If you remove the restriction of searching for vImh]d* files, it will help you find other older files as well. I will appreciate your feedback.

Written by paule1s

November 23, 2009 at 12:35 am

A year in review: What are our readers looking for?

leave a comment »

Our readers are primarily asking questions like:

  • How can I free up disk space, on Windows, and on ext4, ext3 on Ubuntu and Linux, within virtual disks like vmdk, vhd and vdi?
  • Where can I find the best virtual appliances/ Top 10 virtual appliances?
  • How can I convert from one virtual disk (vmdk to vhd, or vdi to vhd) to another?
  • Who are the competitors for ec2?

An analysis of the search terms shows interesting clusters:

Serial

Topic

% of queries

Search terms

1

ext4 defragmentation

23%

ext4 defrag, defrag ext4, ext4 defragment, defragment ext4

2

ubuntu ext4 defragmentation

14%

ext4 defrag ubuntu, ext4 ubuntu defrag, ubuntu ext4 defrag, ubuntu defrag ext4, defrag ext4 ubuntu, defrag ubuntu ext4

3

vmware virtual appliance

14%

vmware virtual appliance, vmware virtual appliances, top vmware appliances, top 10 vmware appliances, best vmware appliances

4

virtual appliance

5%

virtual appliance, virtual appliances, top appliances, top 10 appliances, best appliances

5

vmware firewall appliance

5%

vmware firewall appliance, vmware appliance firewall

6

ubuntu defragmentation

4%

defrag ubuntu, ubuntu defrag, defragment ubuntu, ubuntu defragment

7

ec2 competitors

4%

amazon ec2 competitors, ec2 competitors

8

windows 7 virtual appliance

4%

windows 7 virtual appliance, virtual applaince windows 7

9

ext3 defragmentation

4%

ext3 defrag, defrag ext3, ext3 defragment, defragment ext3

10

convert vdi to vhd

3%

convert vdi to vhd, vdi to vhd

If I abstract it out, our readers are primarily interested in learning how to free disk storage and where to find the best / Top 10 vmware, Xen and Windows virtual applainces.

Thank you. I appreciate your interest in this blog.

Top 10 VMware Virtual Appliances for Security

with one comment

I have reviewed several appliances in the Secure Content and Threat Management and Identity, Access and Vulnerability Managament categories of the VMware Appliance Marketplace to identify the Top 20 appliances. Here are the steps I followed for selecting the appliances listed below:

  • I have relied on the Average customer Rating, expressed as a 5 star, or a 4 star, etc., rating (you may wish to review my analysis of VMware’s ratings)
  • I discarded all virtual appliances that solely package OS distributions, primarily, ubuntu, fedora, etc. My rationale is that an OS by itself provides low business value to an IT Administrator. While an IT administrator can use these just as if they were using a ghost image, these virtual appliances neither package applications in a usable form, nor simplify the task of installing and configuring the applications that provide business value. Besides, the base OS virtual appliances are available in a category by themselves
  • I also discarded several appliances rated 4 star or less, which are present in the directory but have either broken or stubbed out download links. They seem to have been retained in the directory to beef up the appliance count, however, they are not useful to the community.

S. No.

Virtual Appliance

What is it used for?

Download Link

Average Customer Rating

Number of Reviews

Pricing

1

Stonesoft

Protects Internal Networks from Malicious Traffic in Demanding Virtual Environments

Download

5

0

Free trial with registration

2

Profense Base Web Application Firewall

Web application firewall with automated adaptive learning and HTTP load balancing

Download

5

0

Free Trial, USD 2950 per subscription

Profense Web Application Firewall (ESX)

Web application firewall with automated adaptive learning, load balancing and XML support. PCI DSS and OWASP Top Ten compliant

Free Trial, USD 5950 per subscription

3

FalconStor Virtual tape Library

The only VTL solution that improves the quality and efficiency of tape backup in virtual enviroments.

Download

5

0

Registration 30 day trial

4

WiKID Strong Authentication Server 3.3.8

The WiKID Strong Authentication Enterprise Edition VMware 3.3.8. Support for Google SSO/SAML has been added

Download

5

0

USD 24 per user

5

Altor VF Virtual Firewall

1st Purpose-Built Virtual Firewall

Download

5

0

Free trial with registration

6

HyTrust Appliance Community Edition

HyTrust Appliance provides a single point of control for hypervisor configuration, compliance, and access management.

Download

5

0

Free

7

CensorNet Web Security Virtual Appliance

Total Web Security software for any organisation

Download

5

0

Free Trail, USD 5 per

8

Kinamik Secure Audit Vault v1.1

Provides data integrity protection by centralizing and preserving sensitive data,making it tamper-evident at the highest detail.

Download

5

0

Free Trial, EUR 10,000

9

AEP Netilla SSL VPN

AEP Netilla SSL VPN is a secure application access gateway that enables secure, web browser access to a range of business apps.

Download

5

0

Free trial, USD 1

10

Trend Micro InterScan Messaging Security Virtual Appliance

Comprehensive email security gateway reduces TCO with immediate protection from spam, phishing, malware and data leaks

Download

5

0

Free Trial, USD 19.67 per user

11

Trend Micro InterScan Web Security Virtual Appliance

InterScan Web Security Virtual Appliance applies real-time web reputation, flexible content scanning and powerful URL filtering.

Download

5

0

Free Trial, USD 13.45 per user

12

LinHost Backtrack 3

BackTrack is a penetration testing oriented live CD and is the result of the merger of WHAX and Auditor.

Download

4.5

0

Free

13

Symantec Brightmail™ Gateway Virtual Edition (formerly Mail Security 8300)

Inbound and outbound messaging security, antispam and antivirus protection, advanced content filtering, and data loss prevention

Download

4.5

0

Free Trail, USD 15 per user

14

JanusVM

Internet Privacy Appliance : Encrypts your Internet traffic, hides your IP address, and is easy to setup.

Download

4.5

0

Free

15

SpamTitan

*SpamTitan allows you create a Email Security Appliance for your Gateway

Download

4.5

0

Free hosted trial, USD 395 per subscription

16

gateProtect Virtual Appliance

gateProtect solutions combine state of the art security and network features such as firewalls, bridging, VLAN, single sign-on, traffic shaping, QoS, IPSec/SSL (X.509), IDS/IPS, web filters, virus filters, real-time spam detection and HTTPS proxy in one system

Download

4.5

0

Free

17

Accellion Secure File Transfer – Virtual Appliance

Secure File Transfer Virtual Appliance – secure, economical and easy to use secure file transfer for today’s global enterprises

Download

4.5

13

Free hosted trial

18

Network Security Toolkit (NST) Virtual Machine

Best-of-breed open source network security applications with supporting scripts and a web-based front-end management interface.

Download

4.0

0

Free

19

LogLogic Security Change Manager- Great for Firewall Coversions!

Streamline the design and deployment of network security rules for firewalls, routers, switches, VPN, and IPS’s.

Download

4.0

0

Free

20

Check Point VPN-1 VE (Virtual Edition)

Proven Security for Virtual Environments

Download

4.0

0

Free Trial

Which virtual appliance do you use the most and why do you like it?

Written by paule1s

September 25, 2009 at 1:18 pm

Top 10 VMware Virtual Appliances for IT Administrators

with 2 comments

I have reviewed several appliances in the IT Administration and Systems Infrastructure categories of the VMware Appliance Marketplace to identify the Top Ten and more appliances. Here are the steps I followed for selecting the appliances listed below:

  • I have relied on the Average customer Rating, expressed as a 5 star, or a 4 star, etc., rating (you may wish to review my analysis of VMware’s ratings)
  • I discarded all virtual appliances that solely package OS distributions, primarily, ubuntu, fedora, etc. My rationale is that an OS by itself provides low business value to an IT Administrator. While an IT administrator can use these just as if they were using a ghost image, these virtual appliances neither package applications in a usable form, nor simplify the task of installing and configuring the applications that provide business value. Besides, the base OS virtual appliances are available in a category by themselves
  • I also discarded several appliances rated 4.5 star or less, which are present in the directory but have either broken or stubbed out download links. They seem to have been retained in the directory to beef up the appliance count, however, they are not useful to the community.

S. No.

Virtual Appliance

What is it used for?

Download Link

Average Customer Rating

Number of Reviews

Pricing

1

WebGUI 7.4.25

WebGUI is an open source content management system built to give business users the ability to build and maintain complex web sites.

Download

5

0

Free

2

Opsview 2.12 Virtual Machine – Network and Application Monitoring

Opsview is enterprise network and application monitoring software designed for scalability, flexibility and ease of use.

Download

5

0

Free

3

ShellNet MiniVM

Web Interface for managing Nessus Vulnerability Scans and results

Download

5

0

Free

4

Pentaho BI 1.7 running on CentOS 5.2

Open Source Business Intelligence Suite

Download

5

0

Free

5

up.time

up.time allows you to monitor, measure and manage your physical and virtual IT infrastructure from a single centralized console.

Download

5

5

$695 per license

6

Profense Professional Web Application Firewall

Web application firewall with automated adaptive learning, load balancing and XML support. PCI DSS and OWASP Top Ten compliant

Download

5

0

Free Trial, $5950 per license

7

FalconStor Virtual tape Library

The only VTL solution that improves the quality and efficiency of tape backup in virtual enviroments.

Download

5

0

Registration 30 day trial

8

Replify

Virtual WAN Optimization Controller

Download

5

0

Free Trial

9

Allardsoft Secure File Transfer Virtual Appliance

The AllardSoft Secure Filetransfer Appliance allows you to send very large files securely using a standard web browser.

Download

5

5

Free trial, $79 per license

10

FOG – Computer Cloning/Imaging solution Server (0.27)

FOG is a computer imaging/cloning solution with many advanced features includes web gui and client service.

Download

5

0

Free

11

AS Communication Gateway

High-Class scalable anti spam solution from small business to enterprise. Developed in Europe/Austria

Download

5

0

Free

12

X-M0n0wall v1.235

*Most popular Firewall appliance* All-in-one firewall package upgraded with VMXnet, heartbeat and MUI-control.

Download

4.5

0

Free

13

rPath Port 25 Mail Server Appliance

Mail Server appliance

Download

4

0

Free

Which virtual appliance do you use the most and why do you like it?

Written by paule1s

September 23, 2009 at 3:16 pm

VMware Appliance Marketplace Ratings Analysis

with 2 comments

During the past week, I was analyzing the recently revamped VMware Appliance Marketplace. My analysis is summarized below:

Salient Statistics

  • 9% are top-rated, i.e., have a Star Rating of 5
  • 41% have a Star Rating of between 3 and 4, i.e., this cluster may be providing the most value to its users, even though it is not top-rated.
  • There is a steep drop-off in the number of appliances that have a Star Rating below 3
  • 31% are unrated, which seems to indicate that a significant majority has been submitted recently
  • Only 3% (40/1227) have Reviews – this is a very small number. The number of reviews have to grow substantially to indicate that a vibrant community, like Amazon.com reviews, has formed here

Transparency

I feel there is a greater need for transparency. What do the Star Ratings mean?

  • Are they correlated with the number of downloads for that appliance?
  • What is the impact of reviews on these ratings?

Beware Star Ratings alone! The following appliance rated 4.5 has 4 reviews, read them and you will know what I mean.

As a member of VMware’s Technology Network community, I will urge VMware to provide greater transparency around how these ratings are computed/awarded. It will greatly help the users understand the ratings system.

What do you think?

Data

VMware Marketplace Ratings

Number of User Reviews

Star Rating

Total for this Rating

% of Overall

14

6

5

4

3

2

1

Total Reviews

5

115

9%

 

 

2

 

 

3

9

14

4.5

40

3%

 

 

 

1

 

 

2

3

4

151

12%

 

 

 

 

1

 

3

4

3.5

158

13%

 

1

 

 

 

 

1

2

3

196

16%

 

 

 

 

 

1

2

3

2.5

64

5%

 

 

 

 

1

1

 

2

2

24

2%

1

 

 

 

 

1

3

5

1.5

13

1%

 

 

 

 

 

 

 

0

1

87

7%

 

 

 

 

 

 

7

7

0

379

31%

 

 

 

 

 

 

0

0

Total

1227

100%

1

1

2

1

2

6

27

40

Written by paule1s

September 18, 2009 at 6:31 pm

Top 10 Posts for Q1 2009

leave a comment »

Here are the Top 10 posts for Q1 2009, the numbers of views are in parentheses.

  1. Defragment Ubuntu, Fedora, ext3, ext4 (2247)
  2. Most popular VMWare Virtual Appliances for IT Administrators (2186)
  3. VirtualBox – setup, share, shrink, convert (842)
  4. How to convert a VMWare VMDK to a Microsoft, Xen VHD? (810)
  5. How does shrink with vmware disk manager work? (614)
  6. Most popular VMWare Virtual Appliances for Security (607)
  7. Pre-configured VHD (Virtual Appliance) available from Microsoft (593)
  8. Most popular VMWare Virtual Appliances for Web Apps (558)
  9. Virtual Machine Disk Image Compression (320)
  10. rsync vm, vhd for backup, disaster recovery, ec2 (317)

Defragmentation of virtual disk files remains the dominant theme. There is an equal amount of interest in virtual appliances, particularly those for system administrators.

Search terms:

  • ext4 defrag ubuntu
  • ext4 defrag
  • convert vdi to vhd
  • e4defrag ubuntu
  • virtualbox shrink
  • rsync vmdk
  • wubi
  • defrag ubuntu
  • defrag ext3
  • windows 7 virtual appliance
  • defragment ext3
  • vmware appliances
  • defrag ext4
  • xen vhd
  • ubuntu ext4 defrag
  • defrag ext4 ubuntu
  • vmware firewall appliance
  • vmware appliance
  • “vdi to vhd”
  • convert vhd to xen
  • ext3 defrag
  • windows 7 beta vmware virtual appliances
  • defrag fedora
  • ext3 defragmentation
  • virtual appliance windows 7
  • ubuntu defrag
  • hercules load balancer virtual appliance
  • fedora defrag
  • convert vmdk to xen
  • shrink vmware disk

Top 10 referrers for Q1 2009

leave a comment »

wubi : Windows UBuntu Installer is wonderful

with one comment

One of my earliest posts on this blog was about installing and configuring Ubuntu 8.10 within a VM, and my feeling that I did springboard into the deep end of a frigid pool on a frosty winter day. I am delighted with the experience of installing and using wubi- the ubuntu installer for windows, on my Windows XP laptop.

User Experience

wubi is an innovative approach towards introducing Windows users to Ubuntu Linux. It preserves the user experience of installing a Windows application using a standard installer and uninstalling it later from Control Panel >  Add/Remove Programs seamlessly.

  • It provides an installation wizard implemented as a  standard Windows executable (.exe), double click on it and Ubuntu gets installed; users don’t have to deal with ISO images
  • wubi installs ubuntu on the desktop as a NTFS file and uses the ext3 filesystem for its contents within (escalating file defragmentation needs, many of our readers visit this blog prescisly for this topic)
  • NTFS-3G (Linux NTFS) driver with write support
  • Grub4Dos as a boot loader – every time the laptop reboots, I am presented with a choice of whether I want to start Windows XP or Ubuntu
  • Ubuntu appears as a program in the Control Panel > Add/Remove Programs.
  • Uninstall removes all the artifacts cleanly

Pros and Cons:

  • The Ubuntu GUI looks stunning , however, it is sluggish compared with the response time I get on XP (Harvey Su, remember him?, has a ghoulish imagination and he has by now trained all of us to view the background pattern as a giant lion that  has a void in its skull and a  skeleton dangling from its open jaws. Definitely PG-17 material)
  • Ubuntu found the printers on our LAN (this blew me away), it even found the PostScript profile (.ppd file?) for our HP LaserJet automatically, however, I when I tried to install it, the installation failed with no diagnostics.
  • It could not find the Postscript profile  for another Canon printer/copier/scanner, however, unlike Windows, it did not lead me to a website where I could download it from.
  • It found a Broadcom wireless driver for my Dell laptop, I was able to install and activate it, however, some interaction with our Active Directory authentication prevented me from getting access to our secure wireless network. Once again, there was no diagnostic to indicate what went wrong.
  • I would be glad to send the wubi developers log files except that I don’t know what to send to whom, however, it would be nice to have a utility that gathers all the relevant diagnostics and beams it up to “mother ship” over http.
  • Update: It would be cool if I could share a folder between XP and Ubuntu so that I could install the ISO’s I had downloaded earlier on  XP.

In conclusion

There is an excellent how-to guide prepared by parthodeep for your reference.

Kudos to Agostino Russo and team for an outstanding job.

Written by paule1s

March 24, 2009 at 5:42 pm

How To Build Virtual Appliances

leave a comment »

 Ubuntu JeOS

VMWare Studio

Parallels

rPath rBuilder

Rightscale

RightImages provide ready-to-go base operating systems with core cloud software.

ServerTemplates also allow you to designate any number of scripts that you want to run at boot time, upon demand, or when an event is triggered.

RightScripts allow you to specify packages that you want to install before a script is executed and even allow you to upload and attach files directly to scripts.

Amazon Machine Image (AMI)

Written by paule1s

February 16, 2009 at 8:46 am

Top 12 referrers over the past 3 months

leave a comment »