Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Image ID: 8
  • Image name: vmwarelinux-base8-v1
  • Image prettyname: No Apps (Linux distro name)
  • OS: Linux under VMWare - NOTE: If you are using something else, make sure you set OSid to correctly match the OS table.

VMware Only:
NOTE: You may need to insert the an OSid for linux on vmware OS depending on when the source code was downloaded.

Code Block

INSERT INTO `OS` (
`id`, 
`name`, 
`prettyname`, 
`type`, 
`installtype`, 
`sourcepath`, 
`moduleid`) VALUES
(36, 'vmwarelinux', 'VMware Generic Linux', 
'linux', 'vmware','vmware_images',5);
Code Block
INSERT INTO `vcl`.`image` (
`id` ,
`name` ,
`prettyname` ,
`ownerid` ,
`platformid` ,
`OSid` ,
`imagemetaid` ,
`minram` ,
`minprocnumber` ,
`minprocspeed` ,
`minnetwork` ,
`maxconcurrent` ,
`reloadtime` ,
`deleted` ,
`test` ,
`lastupdate` ,
`forcheckout` ,
`maxinitialtime` ,
`project` ,
`size` ,
`architecture` ,
`description` ,
`usage` ,
`basedoffrevisionid`
)
VALUES (
'8' , 'vmwarelinux-base8-v1', 'No Apps (Linux)', '1', '1', '1636', NULL,
'512', '1', '1024', '100', NULL , '5', '0', '0', NOW(), '1', '0', 'vcl', '1500',
'x86', NULL , NULL , '0'
);

...