From 3d04fb75a980dba20e51dc91afd49f0eb9ee43fe Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 9 Mar 2011 16:31:58 +0100 Subject: Form-Verhalten geändert & Datenbank korrigiert --- application/controllers/ClientController.php | 21 +++----- application/controllers/FilterController.php | 78 +++++++++++----------------- application/controllers/PoolController.php | 20 +++---- application/forms/FilterAdd.php | 24 +++++---- application/views/scripts/filter/index.phtml | 11 ++-- application/views/scripts/pool/index.phtml | 22 +++++--- 6 files changed, 82 insertions(+), 94 deletions(-) (limited to 'application') diff --git a/application/controllers/ClientController.php b/application/controllers/ClientController.php index ff663ba..580eb6e 100644 --- a/application/controllers/ClientController.php +++ b/application/controllers/ClientController.php @@ -16,16 +16,15 @@ class ClientController extends Zend_Controller_Action public function addclientAction() { - $mac = $this->_request->getParam('mac'); - $hh = $this->_request->getParam('hh'); + $mac = $this->_request->getParam('mac'); + $hh = $this->_request->getParam('hh'); if (!isset($_POST["add"])){ - $addclient = new Application_Form_Client(); - $this->view->addclient = $addclient; + $addclient = new Application_Form_Client(); + $this->view->addclient = $addclient; } else{ $addfilterform = new Application_Form_Client($_POST); - print_a($_POST,$addfilterform->isValid($_POST)); if ($addfilterform->isValid($_POST) || ($mac != '' && $hh != '') ) { $client = new Application_Model_Client(); $mac = ($mac!='')?$mac:$_POST['macadress']; @@ -37,9 +36,7 @@ class ClientController extends Zend_Controller_Action print_a('inserted'); $this->_redirect('/client'); } - else{ - print_a('no insert'); - } + $this->view->addclient = $addclient; } } @@ -69,8 +66,8 @@ class ClientController extends Zend_Controller_Action $this->view->editclient = $editclient; } else{ - $addfilterform = new Application_Form_Client($_POST); - if ($addfilterform->isValid($_POST) || ($mac != '' && $hh != '') ) { + $editclient = new Application_Form_Client($_POST); + if ($editclient->isValid($_POST) || ($mac != '' && $hh != '') ) { $client = new Application_Model_Client($_POST); $client->setID($this->_request->getParam('clientID')); $clientmapper = new Application_Model_ClientMapper(); @@ -78,9 +75,7 @@ class ClientController extends Zend_Controller_Action print_a('updated'); $this->_redirect('/client'); } - else{ - print_a('no update'); - } + $this->view->editclient = $editclient; } } diff --git a/application/controllers/FilterController.php b/application/controllers/FilterController.php index 54bcb19..2853706 100644 --- a/application/controllers/FilterController.php +++ b/application/controllers/FilterController.php @@ -19,27 +19,27 @@ class FilterController extends Zend_Controller_Action public function indexAction() { try{ - $this->_filtermapper = new Application_Model_FilterMapper(); - $this->view->filters = $this->_filtermapper->fetchAll(); + $this->_filtermapper = new Application_Model_FilterMapper(); + $this->view->filters = $this->_filtermapper->fetchAll(); }catch (Zend_Exception $e) { - echo "Error message 2: " . $e->getMessage() . "\n"; + echo "Error message 2: " . $e->getMessage() . "\n"; } } public function addfilterAction() { - if (!isset($_POST["add"])){ - $addfilterform = new Application_Form_FilterAdd(); - $this->view->addfilterform = $addfilterform; + $bmmapper = new Application_Model_BootMenuMapper(); + //TODO get bootmenu by group + $bootmenus = $bmmapper->fetchAll(); + if (!isset($_POST["add"])){ + $addfilterform = new Application_Form_FilterAdd(array('bootmenus'=>$bootmenus)); + $this->view->addfilterform = $addfilterform; }else { - $addfilterform = new Application_Form_FilterAdd($_POST); + $addfilterform = new Application_Form_FilterAdd(array('bootmenus'=>$bootmenus),$_POST); if ($addfilterform->isValid($_POST)) { try{ - $newfilter = new Application_Model_Filter(); - $newfilter->setTitle($_POST['title']); + $newfilter = new Application_Model_Filter($_POST); $newfilter->setCreated(time()); - $newfilter->setDescription($_POST['description']); - $newfilter->setPriority($_POST['priority']); // TODO: Ändere mit ACL $newfilter->setGroupID('1'); @@ -54,6 +54,7 @@ class FilterController extends Zend_Controller_Action echo "Error message 2: " . $e->getMessage() . "\n"; } } + $this->view->addfilterform = $addfilterform; } } @@ -73,6 +74,9 @@ class FilterController extends Zend_Controller_Action public function editfilterAction() { + $bmmapper = new Application_Model_BootMenuMapper(); + //TODO get bootmenu by group + $bootmenus = $bmmapper->fetchAll(); if (!isset($_POST["add"])){ // TODO: ACL implementieren ob er editieren darf $filterID = $this->_request->getParam('filterID'); @@ -83,7 +87,7 @@ class FilterController extends Zend_Controller_Action $filtermapper->find($filterID,$filter); $filter2 = $filter->toArray(); - $editfilterform = new Application_Form_FilterAdd(); + $editfilterform = new Application_Form_FilterAdd(array('bootmenus'=>$bootmenus)); $editfilterform->populate($filter2); $this->view->editfilterform = $editfilterform; @@ -91,7 +95,7 @@ class FilterController extends Zend_Controller_Action try{ $filterID = $this->_request->getParam('filterID'); - $editfilterform = new Application_Form_FilterAdd($_POST); + $editfilterform = new Application_Form_FilterAdd(array('bootmenus'=>$bootmenus),$_POST); //TODO: ACL integrieren $_POST['groupID'] = 1; $_POST['membershipID'] = 1; @@ -102,16 +106,13 @@ class FilterController extends Zend_Controller_Action $newfilterenty->setID($this->_request->getParam('filterID')); $newfilter2 = new Application_Model_FilterMapper(); $newfilter2->save($newfilterenty); - echo 'valid'; - } - else - { - echo 'not valid'; - } + echo 'valid'; + $this->_redirect('/filter'); + } + $this->view->editfilterform = $editfilterform; }catch (Zend_Exception $e) { echo "Error message 2: " . $e->getMessage() . "\n"; } - $this->_redirect('/filter'); } } @@ -120,23 +121,15 @@ class FilterController extends Zend_Controller_Action // TODO: ACL implementieren ob er editieren darf if (!isset($_POST["add"])){ - echo "case1"; try{ $editfilterform = new Application_Form_FilterEntriesAdd(array('filterID' => $this->_request->getParam('filterID'))); $this->view->editfilterform = $editfilterform; - echo "
";
-				print_r(array('debug','case1'));
-				echo "
"; - }catch (Zend_Exception $e) { echo "Error message 2: " . $e->getMessage() . "\n"; } } else{ - $editfilterform = new Application_Form_FilterEntriesAdd($_POST); - echo "
case2
"; - - if ($editfilterform->isValid($_POST)) { - echo "
case 2.2
"; + $editfilterform = new Application_Form_FilterEntriesAdd($_POST); + if ($editfilterform->isValid($_POST)) { $newfilterenty = new Application_Model_FilterEntries(); $newfilterenty->setFilterID($_POST['filterID']); $newfilterenty->setFiltertypeID($_POST['filtertypeID']); @@ -151,12 +144,10 @@ class FilterController extends Zend_Controller_Action } $newfilter2 = new Application_Model_FilterEntriesMapper(); - echo "
";
-				print_r($newfilterenty);
-				echo "
"; $newfilter2->save($newfilterenty); + $this->_redirect('/filter'); } - $this->_redirect('/filter'); + $this->view->editfilterform = $editfilterform; } } public function editfilterentryAction() @@ -174,13 +165,9 @@ class FilterController extends Zend_Controller_Action $editfilterform = new Application_Form_FilterEntriesAdd(); - echo "
";
-				print_r($filterentry->toArray());
-				echo "
"; $editfilterform->populate($filterentry->toArray()); $editfilterform->setFilterID($filterID); $this->view->editfilterform = $editfilterform; - echo "case 1.1"; }catch (Zend_Exception $e) { echo "Error message 2: " . $e->getMessage() . "\n"; @@ -189,8 +176,7 @@ class FilterController extends Zend_Controller_Action try{ $filterentriesID = $this->_request->getParam('filterentriesID'); $editfilterform = new Application_Form_FilterEntriesAdd($_POST); - if ($editfilterform->isValid($_POST)) { - echo "valid\n"; + if ($editfilterform->isValid($_POST)) { $newfilterenty = new Application_Model_FilterEntries($_POST); $newfilterenty->setID($filterentriesID); if($_POST['filtertypeID'] == 1){ @@ -201,20 +187,15 @@ class FilterController extends Zend_Controller_Action $newfilterenty->setFiltervalue($_POST['filtervalue']); $newfilterenty->setFiltervalue2($_POST['filtervalue2']); } - echo "
";
-					print_r($newfilterenty);
-					echo "
"; $newfilter2 = new Application_Model_FilterEntriesMapper(); $newfilter2->save($newfilterenty); + $this->_redirect('/filter'); } - else{ - echo 'nö'; - } + $this->view->editfilterform = $editfilterform; }catch (Zend_Exception $e) { echo "Error message 2: " . $e->getMessage() . "\n"; } - $this->_redirect('/filter'); } } public function removefilterentryAction() @@ -260,8 +241,7 @@ class FilterController extends Zend_Controller_Action public function evaluateAction(){ $db = $this->db; $showPartResults = false; - try{ - + try{ $mysession = '1'; $filtertypID = 8; diff --git a/application/controllers/PoolController.php b/application/controllers/PoolController.php index cb38a80..7c5092e 100644 --- a/application/controllers/PoolController.php +++ b/application/controllers/PoolController.php @@ -25,7 +25,6 @@ class PoolController extends Zend_Controller_Action $assignedclientsArray[] = $c->toArray(); } $freeclients = $this->arrayDiff($clientsArray,$assignedclientsArray); - #print_a($freeclients); $this->view->freeclients = $freeclients; @@ -49,6 +48,7 @@ class PoolController extends Zend_Controller_Action echo "Error message 2: " . $e->getMessage() . "\n"; } } + $this->view->addpool = $addfilterform; } } @@ -80,8 +80,8 @@ class PoolController extends Zend_Controller_Action $this->view->editpoolform = $editpool; }else { - $addpoolform = new Application_Form_Pool($_POST); - if ($addpoolform->isValid($_POST)) { + $editpoolform = new Application_Form_Pool($_POST); + if ($editpoolform->isValid($_POST)) { try{ $pool = new Application_Model_Pool($_POST); $pool->setID($this->_request->getParam('poolID')); @@ -92,6 +92,7 @@ class PoolController extends Zend_Controller_Action echo "Error message 2: " . $e->getMessage() . "\n"; } } + $this->view->editpoolform = $editpoolform; } } @@ -99,10 +100,8 @@ class PoolController extends Zend_Controller_Action { $clientID = $this->_request->getParam('clientID'); $poolID = $this->_request->getParam('poolID'); - print_a($clientID,$poolID); if(!isset($_POST['clientID']) && ($clientID == '' && $poolID == '')){ - print_a($_POST); $clientmapper = new Application_Model_ClientMapper(); $clients = $clientmapper->fetchAll(); foreach($clients as $c){ @@ -117,10 +116,8 @@ class PoolController extends Zend_Controller_Action $poolclient = new Application_Form_PoolClient(array('clients'=> $freeclients)); $this->view->poolclient = $poolclient; - }else { - #$_POST['poolID'] = $this->_request->getParam('poolID'); - $poolclientform = new Application_Form_PoolClient($_POST); - + }else { + $poolclient = new Application_Form_PoolClient($_POST); try{ $pool = new Application_Model_PoolEntries($_POST); $pool->setPoolID($this->_request->getParam('poolID')); @@ -133,6 +130,7 @@ class PoolController extends Zend_Controller_Action }catch (Zend_Exception $e) { echo "Error message 2: " . $e->getMessage() . "\n"; } + $this->view->poolclient = $poolclient; } } @@ -156,15 +154,11 @@ class PoolController extends Zend_Controller_Action if(is_numeric($poolentriesID)){ $deletepoolentries = new Application_Model_PoolEntries(); $deletepoolentries->setID($poolentriesID); - echo "
";
-				print_r($deletepoolentries);
-				echo "
"; $deletepoolentriesmapper = new Application_Model_PoolEntriesMapper(); $deletepoolentriesmapper->delete($deletepoolentries); echo "ok"; } -# echo "ready"; $this->_redirect('/pool'); } diff --git a/application/forms/FilterAdd.php b/application/forms/FilterAdd.php index af4f9b2..091eb37 100644 --- a/application/forms/FilterAdd.php +++ b/application/forms/FilterAdd.php @@ -2,6 +2,7 @@ class Application_Form_FilterAdd extends Zend_Form { + private $bootmenus; public function init() { @@ -22,14 +23,16 @@ class Application_Form_FilterAdd extends Zend_Form 'label' => 'Description:', )); - $this->addElement('text', 'bootmenuID', array( - 'filters' => array('StringTrim'), - 'validators' => array( - array('StringLength', false, array(0, 50)), - ), - 'required' => true, - 'label' => 'bootmenuID:', - )); + $bootmenufield = $this->createElement('select','bootmenuID'); + $bootmenufield ->setLabel('Bootmenu:'); + + if(count($this->bootmenus)>0){ + foreach($this->bootmenus as $id => $g){ + $bootmenufield->addMultiOption($g->getID(), $g->getTitle()); + } + } + $bootmenufield->setRegisterInArrayValidator(false); + $this->addElement($bootmenufield); $this->addElement('text', 'priority', array( 'filters' => array('StringTrim'), @@ -45,7 +48,10 @@ class Application_Form_FilterAdd extends Zend_Form 'label' => 'Save', )); } - + function setBootmenus($val){ + $this->bootmenus = $val; + return; + } } diff --git a/application/views/scripts/filter/index.phtml b/application/views/scripts/filter/index.phtml index 6f98b4c..a3d3efa 100644 --- a/application/views/scripts/filter/index.phtml +++ b/application/views/scripts/filter/index.phtml @@ -43,13 +43,17 @@ 'default', true) ?>">Add Filterentry + findBy('filterID',$filter->getID())); + $erg = $fe->findBy('filterID',$filter->getID()); + ?> + 0): ?> ↳ findBy('filterID',$filter->getID())); - $erg = $fe->findBy('filterID',$filter->getID()); + ?> @@ -96,6 +100,7 @@
+ diff --git a/application/views/scripts/pool/index.phtml b/application/views/scripts/pool/index.phtml index f89dbc9..2c6ba16 100644 --- a/application/views/scripts/pool/index.phtml +++ b/application/views/scripts/pool/index.phtml @@ -43,6 +43,11 @@ 'default', true) ?>">Link Client + findBy('poolID',$pool->getID()); + ?> + 0): ?> ↳ @@ -54,8 +59,6 @@ Actions findBy('poolID',$pool->getID()); foreach ($clients as $client): ?> @@ -77,14 +80,18 @@ + + +

Free clients

- -pools as $pool): ?> - - + + + + +freeclients as $client): ?> @@ -92,7 +99,8 @@ foreach ($this->freeclients as $client): ?> - + @@ -16,6 +17,7 @@ +
ClientIDMacAdressHardwarehashescape($pool->getTitle()) ?>
ClientIDMacAdressHardwarehashActions
ID TitleDescription Priority TargetBootMenu Actions
escape($filter->getID()) ?> escape($filter->title) ?>escape($filter->Description) ?> escape($filter->priority) ?> escape($filter->bootmenuID) ?> url( diff --git a/pbs-newdata.sql b/pbs-newdata.sql new file mode 100644 index 0000000..48a1dc6 --- /dev/null +++ b/pbs-newdata.sql @@ -0,0 +1,125 @@ +USE pbs; +SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; + +-- Adding person test//test +INSERT INTO `pbs_person` (`personID`, `title`, `name`, `firstname`, `street`, `housenumber`, `city`, `postalcode`, `logindate`, `registerdate`, `email`, `login`, `password`, `password_salt`) VALUES +(1, 'Herr', 'Test 1', 'Test 1', 'Teststr,', '5', 'Testburg', '1337', NULL, '1299612370', 'test', NULL, '4207acba08cadccc397e2302a55b339a', 'f21ee663b17bcefc6868694dffda602a'); +-- Adding person test2//test +INSERT INTO `pbs_person` (`personID`, `title`, `name`, `firstname`, `street`, `housenumber`, `city`, `postalcode`, `logindate`, `registerdate`, `email`, `login`, `password`, `password_salt`) VALUES +(2, 'Herr', 'Test 2', 'Test 2', 'Teststr,', '5', 'Testburg', '1337', NULL, '1299612370', 'test2', NULL, '4207acba08cadccc397e2302a55b339a', 'f21ee663b17bcefc6868694dffda602a'); + +-- Adding group +INSERT INTO `pbs`.`pbs_group` (`groupID` ,`title` ,`description`)VALUES (1 , 'Group 1', NULL); + +-- Adding role +INSERT INTO `pbs`.`pbs_role` (`roleID`, `groupID`, `title`, `description`) VALUES (1, '1', 'Role 1', NULL); +INSERT INTO `pbs`.`pbs_role` (`roleID`, `groupID`, `title`, `description`) VALUES (2, '1', 'Role 2', NULL); + +-- Adding memberships +INSERT INTO `pbs`.`pbs_membership` (`membershipID`, `groupID`, `roleID`, `personID`) VALUES (1, '1', '1', '1'); +INSERT INTO `pbs`.`pbs_membership` (`membershipID`, `groupID`, `roleID`, `personID`) VALUES (2, '1', '2', '2'); + +-- Adding clients +INSERT INTO `pbs_client` (`clientID`, `macadress`, `hardwarehash`) VALUES +(1, '00:00:00:00:00:10', 'ea9b82d9de911bc2d3cd23f53a6cab48'), +(2, '00:00:00:00:10:00', '1e2b1599710fbbef0dc789e8cfe12455'), +(3, '00:00:00:10:10:00', '8f6209ca3d6b35e223a11c249d1b69fc'), +(4, '00:00:10:00:00:00', 'e17ab09f3586464f19629e2e8b1e9a9d'), +(5, '00:10:00:00:00:00', '9bf70279d283b85440c2031c19bb6812'), +(6, '10:00:00:00:00:00', 'ad3bce4464a6267441ec144744439c7e'), +(7, '00:55:00:55:00:55', 'e8d7e80d79f224771b7a3a0af4e02748'), +(8, '66:00:66:00:66:00', 'ded66ce272f384e9e386c1b57ded3e4d'), +(9, '00:ff:ff:ff:ff:ff', '695610ee509c060b1fca9c8011529af4'), +(10, '00:22:00:22:00:22', 'a3562c8cad2a4fa4fc11656025dc911b'); + +-- Adding config +INSERT INTO `pbs_config` (`configID`, `title`, `groupID`, `membershipID`, `shellscript`, `created`) VALUES +(1, 'Config 1', 1, 1, 'shellscript 1', '1299693677'), +(2, 'Config 2', 1, 1, 'shellskript 2', '1299693690'), +(3, 'Config 3', 1, 1, 'shellskript 3', '1299693690'), +(4, 'Config 4', 1, 1, 'shellskript 4', '1299693690'), +(5, 'Config 5', 1, 1, 'shellskript 5', '1299693690'); + +-- Adding bootos +INSERT INTO `pbs_bootos` (`bootosID`, `configID`, `groupID`, `membershipID`, `title`, `description`, `path_init`, `path_kernel`, `defaultkcl`, `created`, `expires`, `public`) VALUES +(1, 1, 1, 1, 'BootOs 1', 'Description 1', 'initpath 1', 'kernelpath 1', 'default kcl 1', '1299693782', '2012-03-09', 0), +(2, 1, 1, 1, 'BootOs 2', 'Description 2', 'initpath 2', 'kernelpath 2', 'default kcl 2', '1299693782', '2012-03-09', 0), +(3, 1, 1, 1, 'BootOs 3', 'Description 3', 'initpath 3', 'kernelpath 3', 'default kcl 3', '1299693782', '2012-03-09', 0), +(4, 1, 1, 1, 'BootOs 4', 'Description 4', 'initpath 4', 'kernelpath 4', 'default kcl 4', '1299693782', '2012-03-09', 0), +(5, 1, 1, 1, 'BootOs 5', 'Description 5', 'initpath 5', 'kernelpath 5', 'default kcl 5', '1299693782', '2012-03-09', 0), +(6, 1, 1, 1, 'BootOs 6', 'Description 6', 'initpath 6', 'kernelpath 6', 'default kcl 6', '1299693782', '2012-03-09', 0), +(7, 1, 1, 1, 'BootOs 7', 'Description 7', 'initpath 7', 'kernelpath 7', 'default kcl 7', '1299693782', '2012-03-09', 0), +(8, 1, 1, 1, 'BootOs 8', 'Description 8', 'initpath 8', 'kernelpath 8', 'default kcl 8', '1299693782', '2012-03-09', 0), +(9, 1, 1, 1, 'BootOs 9', 'Description 9', 'initpath 9', 'kernelpath 9', 'default kcl 9', '1299693782', '2012-03-09', 0), +(10, 1, 1, 1, 'BootOs 10', 'Description 10', 'initpath 10', 'kernelpath 10', 'default kcl 10', '1299693782', '2012-03-09', 0); + +-- Adding bootiso +INSERT INTO `pbs_bootiso` (`bootisoID`, `title`, `membershipID`, `groupID`, `path`, `serialnumber`, `created`, `expires`, `public`) VALUES +(1, 'BootIso 1', 1, 1, 'Path 1', 123456789, '1299693879', '2012-03-09', 0), +(2, 'BootIso 2', 1, 1, 'Path 2', 2147483647, '1299693899', '2012-03-09', 0), +(3, 'BootIso 3', 1, 1, 'Path 3', 2147483647, '1299693899', '2012-03-09', 0); + +-- Adding Pools +INSERT INTO `pbs_pool` (`poolID`, `title`, `description`, `location`) VALUES +(1, 'Pool 1', 'Description 1', 'Keller'), +(2, 'Pool 2', 'Description 2', 'EG'), +(3, 'Pool 3', 'Description 3', '1 OG'), +(4, 'Pool 4', 'Description', '2 OG'); + +-- Adding BootOs to BootMenus +INSERT INTO `pbs_bootmenuentries` (`bootmenuentriesID`, `bootosID`, `bootmenuID`, `title`, `kcl`, `configID`, `order`) VALUES +(1, 1, 1, 'Select BootOs 1', 'kcl 1', 1, 0), +(2, 1, 1, 'Select BootOs 1', 'kcl 2', 2, 1), +(3, 2, 1, 'Select BootOs 2', 'kcl 3', 2, 2), +(4, 5, 2, 'Select BootOs 5', 'kcl 5', 2, 0), +(5, 4, 2, 'Select BootOs 4', 'kcl 4', 2, 1), +(6, 10, 3, 'Select BootOs 10', 'kcl 10', 3, 0), +(7, 8, 3, 'Select BootOs 8', 'kcl 8', 4, 1), +(8, 1, 2, 'Select BootOs 7', 'kcl 7', 5, 2), +(9, 1, 5, 'Select BootOs 3', 'kcl 3', 4, 0), +(10, 9, 4, 'Select BootOs 9', 'kcl 9', 3, 0), +(11, 7, 4, 'Select BootOs 7', 'kcl 7', 5, 1); + +-- Adding client to pools (poolentries) +INSERT INTO `pbs_poolentries` (`poolentriesID`, `poolID`, `clientID`) VALUES +(1, 1, 1), +(2, 1, 2), +(3, 1, 3), +(4, 1, 4), +(5, 2, 5), +(6, 2, 6), +(7, 3, 7), +(8, 3, 8), +(9, 4, 9), +(10, 4, 10); + +-- Adding Bootmenus +INSERT INTO `pbs_bootmenu` (`bootmenuID`, `membershipID`, `groupID`, `title`, `created`) VALUES +(1, 1, 1, 'Bootmenu 1', '1299694422'), +(2, 1, 1, 'Bootmenu 2', '1299694433'), +(3, 1, 1, 'Bootmenu 3', '1299694441'), +(4, 1, 1, 'Bootmenu 4', '1299694454'), +(5, 1, 1, 'Bootmenu 5', '1299694461'); + +-- Adding Sessions +INSERT INTO `pbs_session` (`sessionID`, `clientID`, `bootosID`, `bootisoID`, `time`, `ip`, `ip6`) VALUES +(1, 1, NULL, 1, '1299684000', '132.230.5.6', ''), +(2, 9, NULL, 2, '1299684000', '132.230.10.2', ''), +(3, 10, NULL, 1, '1299648000', '132.20.20.2', ''), +(4, 7, NULL, 3, '1299676800', '84.23.56.86', ''), +(5, 4, NULL, 3, '1299674340', '70.81.94.222', ''), +(6, 5, NULL, 3, '1299683100', '210.84.65.2', ''); + +-- Adding Filter +INSERT INTO `pbs_filter` (`filterID`, `membershipID`, `groupID`, `bootmenuID`, `title`, `description`, `created`, `priority`) VALUES +(1, 1, 1, 1, 'Filter 1', 'Innerhalb der Uni', '1299697337', 10), +(2, 1, 1, 5, 'Filter 2', 'Ausserhalb der Uni', '1299697073', 20), +(3, 1, 1, 4, 'Filter 3', 'Desc3', '1299697277', 5); + +-- Adding Filterentries +INSERT INTO `pbs_filterentries` (`filterentriesID`, `filterID`, `filtertypeID`, `filtervalue`, `filtervalue2`) VALUES +(1, 1, 7, '08-00', '18-00'), +(2, 2, 1, '001.001.001.001', '132.229.255.255'), +(3, 2, 1, '132.231.001.001', '255.255.255.255'), +(4, 1, 1, '132.230.001.001', '132.230.255.255'), +(5, 3, 3, '1', ''); diff --git a/pbs.sql b/pbs.sql index a4149c2..f404b0a 100644 --- a/pbs.sql +++ b/pbs.sql @@ -204,8 +204,8 @@ CREATE TABLE IF NOT EXISTS `pbs_client` ( CREATE TABLE IF NOT EXISTS `pbs_session` ( `sessionID` int(11) NOT NULL AUTO_INCREMENT, - `clientID` int(11) NOT NULL, - `bootosID` int(11) NOT NULL, + `clientID` int(11), + `bootosID` int(11), `time` varchar(14) NOT NULL, `ip` varchar(15) NOT NULL, `ip6` varchar(45), @@ -303,5 +303,14 @@ ALTER TABLE `pbs_filterentries` ADD CONSTRAINT `pbs_filterentries_ibfk_2` FOREIGN KEY (`filtertypeID`) REFERENCES `pbs_filtertype` (`filtertypeID`) ON DELETE CASCADE; +-- Insert Filtertypes +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'IP'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'MAC'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'PoolID'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'BootIso'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'Membership'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'Group'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'Time'); +INSERT INTO `pbs`.`pbs_filtertype` (`filtertypeID`, `filtertypename`) VALUES (NULL, 'Client'); diff --git a/public/media/css/style.css b/public/media/css/style.css index 345ba12..1d3da5d 100644 --- a/public/media/css/style.css +++ b/public/media/css/style.css @@ -85,6 +85,9 @@ border:1px solid #CCC; .addbutton { float:right; } +.addbutton:before{ + content: url(/media/img/create.png)' '; +} .monospace { font-family:Courier New, monospace; diff --git a/zend-user.sh b/zend-user.sh index 6e4bbeb..16ba63e 100644 --- a/zend-user.sh +++ b/zend-user.sh @@ -1,4 +1,4 @@ #!/bin/bash -cp ~/pbs2/application/configs/application.ini /tmp/pbs2/application/configs/application.ini -mysql -u root -p < /tmp/pbs2/pbs.sql -mysql -u root -p < /tmp/pbs2/pbs-data.sql +cp /tmp/pbs2/application/configs/application.ini.dist /tmp/pbs2/application/configs/application.ini +mysql -u root -p view->bootosmapper = $bootosmapper; - $this->view->configmapper = $configmapper; - $this->view->bootmenulist = $bootmenumapper->fetchAll(); - - $bootmenuentries = array(); - foreach ($this->view->bootmenulist as $bootmenu){ - $bootmenuentries[$bootmenu->getID()] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenu->getID()); - $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); - $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); - } + $bootmenumapper = new Application_Model_BootMenuMapper(); + $bootmenuentriesmapper = new Application_Model_BootMenuEntriesMapper(); + $bootosmapper = new Application_Model_BootOsMapper(); + $configmapper = new Application_Model_ConfigMapper(); + $membershipmapper = new Application_Model_MembershipMapper(); + $groupmapper = new Application_Model_GroupMapper(); + $personmapper = new Application_Model_PersonMapper(); + + $this->view->bootosmapper = $bootosmapper; + $this->view->configmapper = $configmapper; + + $bootmenuID = $this->_request->getParam('bootmenuid'); + + if($bootmenuID == "") + { + $this->view->bootmenulist = $bootmenumapper->fetchAll(); + $bootmenuentries = array(); + foreach ($this->view->bootmenulist as $bootmenu){ + $bootmenuentries[$bootmenu->getID()] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenu->getID()); + $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); + $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + } + }else{ + $bootmenu = new Application_Model_BootMenu(); + $bootmenumapper->find($bootmenuID, $bootmenu); + + $bootmenuentries = array(); + $bootmenuentries[$bootmenuID] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID); + $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); + $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + + $this->view->bootmenulist = array($bootmenu); + + } + $this->view->bootmenuentrylist = $bootmenuentries; + } public function addbootmenuentryAction() @@ -37,13 +55,12 @@ class BootmenuController extends Zend_Controller_Action $bootmenuID = $this->_request->getParam('bootmenuID'); $bootosmapper = new Application_Model_BootOsMapper(); $configmapper = new Application_Model_ConfigMapper(); -// $bootmenuentriesmapper = new Application_Model_BootMenuEntriesMapper(); -// -// $bootoslist = $this->arrayDiff($bootosmapper->fetchAll(), $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID)); if (!isset($_POST["addbootmenuentry"])){ $addbootmenuentryForm = new Application_Form_BootmenuEntriesAdd(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder'=> $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll())); $addbootmenuentryForm->populate(array('order' => $this->_request->getParam('maxorder'))); + unset($_POST['kcl']); + $addbootmenuentryForm->populate($_POST); } else { $addbootmenuentryForm = new Application_Form_BootmenuEntriesAdd(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder'=> $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll()),$_POST); @@ -170,7 +187,12 @@ class BootmenuController extends Zend_Controller_Action $bootmenuentrymapper->find($bootmenuentryID, $bootmenuentry); $editbootmenuentryForm = new Application_Form_BootmenuEntriesEdit(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder' => $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll())); - $editbootmenuentryForm->populate($bootmenuentry->toArray()); + if(!isset($_POST['kcl'])) + $editbootmenuentryForm->populate($bootmenuentry->toArray()); + else + unset($_POST['bootmenuID']); + $editbootmenuentryForm->populate($_POST); + } }else{ $editbootmenuentryForm = new Application_Form_BootmenuEntriesEdit(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder'=> $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll()),$_POST); diff --git a/application/forms/BootmenuEntriesAdd.php b/application/forms/BootmenuEntriesAdd.php index 0f2109e..2731f60 100644 --- a/application/forms/BootmenuEntriesAdd.php +++ b/application/forms/BootmenuEntriesAdd.php @@ -8,7 +8,6 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form public function setBootoslist($bootoslist){ $this->bootoslist = $bootoslist; - } public function setMaxorder($maxorder){ @@ -21,9 +20,15 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form } - + public function init() { + + if(!isset($_POST['bootosID'])){ + $firstbootos = array_slice($this->bootoslist,0,1); + $_POST['bootosID'] = $firstbootos[0]->getID(); + } + $this->setName("BootMenuEntryAdd"); $this->setMethod('post'); @@ -38,6 +43,8 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form $bootosfield = $this->createElement('select','bootosID'); $bootosfield ->setLabel('BootOs:'); + $bootosfield->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();"); + if(count($this->bootoslist)>0){ foreach($this->bootoslist as $bootos => $b){ @@ -45,6 +52,7 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form } } $bootosfield->setRegisterInArrayValidator(false); + $this->addElement($bootosfield); $this->addElement('textarea', 'kcl', array( @@ -56,6 +64,7 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form 'cols' => 50, 'rows' => 5, 'label' => 'KCL:', + 'value' => $this->bootoslist[$_POST['bootosID']]->getDefaultkcl() )); diff --git a/application/forms/BootmenuEntriesEdit.php b/application/forms/BootmenuEntriesEdit.php index 7fd97fe..8eb4b95 100644 --- a/application/forms/BootmenuEntriesEdit.php +++ b/application/forms/BootmenuEntriesEdit.php @@ -24,6 +24,12 @@ class Application_Form_BootmenuEntriesEdit extends Zend_Form public function init() { + + if(!isset($_POST['bootosID'])){ + $firstbootos = array_slice($this->bootoslist,0,1); + $_POST['bootosID'] = $firstbootos[0]->getID(); + } + $this->setName("BootMenuEntryAdd"); $this->setMethod('post'); @@ -37,7 +43,9 @@ class Application_Form_BootmenuEntriesEdit extends Zend_Form )); $bootosfield = $this->createElement('select','bootosID'); - $bootosfield ->setLabel('BootOs:'); + $bootosfield->setLabel('BootOs:'); + $bootosfield->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();"); + if(count($this->bootoslist)>0){ foreach($this->bootoslist as $bootos => $b){ @@ -56,6 +64,7 @@ class Application_Form_BootmenuEntriesEdit extends Zend_Form 'cols' => 50, 'rows' => 5, 'label' => 'KCL:', + 'value' => $this->bootoslist[$_POST['bootosID']]->getDefaultkcl() )); $configfield = $this->createElement('select','configID'); diff --git a/application/models/BootOsMapper.php b/application/models/BootOsMapper.php index a6e9a7f..66de08d 100644 --- a/application/models/BootOsMapper.php +++ b/application/models/BootOsMapper.php @@ -14,7 +14,9 @@ class Application_Model_BootOsMapper ->where($criteria . ' = ?', $value); $stmt = $select->query(); $result = $stmt->fetchAll(); + return $result; + }catch (Zend_Exception $e) { echo "Error message 2: " . $e->getMessage() . "\n"; } @@ -87,7 +89,7 @@ class Application_Model_BootOsMapper $entry->setID($row->bootosID)->setConfigID($row->configID)->setGroupID($row->groupID)->setMembershipID($row->membershipID)->setTitle($row->title)->setPath_init($row->path_init)->setPath_kernel($row->path_kernel)->setDefaultkcl($row->defaultkcl)->setCreated($row->created)->setDescription($row->description)->setExpires($row->expires)->setPublic($row->public); - $entries[] = $entry; + $entries[$row->bootosID] = $entry; } return $entries; } -- cgit v1.2.3-55-g7522 From 98b708fd4b640cccff3e24a3d08edbd673a9f8e9 Mon Sep 17 00:00:00 2001 From: michael pereira Date: Thu, 10 Mar 2011 10:56:48 +0100 Subject: default kcl und config hinzugefuegt --- application/controllers/BootmenuController.php | 12 ++++++++---- application/forms/BootmenuEntriesAdd.php | 9 ++++++--- application/forms/BootmenuEntriesEdit.php | 8 ++++++-- 3 files changed, 20 insertions(+), 9 deletions(-) (limited to 'application') diff --git a/application/controllers/BootmenuController.php b/application/controllers/BootmenuController.php index 26dba2d..e2f4a2b 100644 --- a/application/controllers/BootmenuController.php +++ b/application/controllers/BootmenuController.php @@ -60,6 +60,7 @@ class BootmenuController extends Zend_Controller_Action $addbootmenuentryForm = new Application_Form_BootmenuEntriesAdd(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder'=> $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll())); $addbootmenuentryForm->populate(array('order' => $this->_request->getParam('maxorder'))); unset($_POST['kcl']); + unset($_POST['configID']); $addbootmenuentryForm->populate($_POST); } else { @@ -154,6 +155,7 @@ class BootmenuController extends Zend_Controller_Action $bootmenu->setID($bootmenuID); try { + $bootmenumapper->save($bootmenu); }catch(Zend_Exception $e) { @@ -187,12 +189,14 @@ class BootmenuController extends Zend_Controller_Action $bootmenuentrymapper->find($bootmenuentryID, $bootmenuentry); $editbootmenuentryForm = new Application_Form_BootmenuEntriesEdit(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder' => $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll())); - if(!isset($_POST['kcl'])) + if(!isset($_POST['kcl'])){ $editbootmenuentryForm->populate($bootmenuentry->toArray()); - else - unset($_POST['bootmenuID']); + } + else{ + unset($_POST['kcl']); + unset($_POST['configID']); $editbootmenuentryForm->populate($_POST); - + } } }else{ $editbootmenuentryForm = new Application_Form_BootmenuEntriesEdit(array('bootoslist'=>$bootosmapper->fetchAll(), 'maxorder'=> $this->_request->getParam('maxorder'), 'configlist'=>$configmapper->fetchAll()),$_POST); diff --git a/application/forms/BootmenuEntriesAdd.php b/application/forms/BootmenuEntriesAdd.php index 2731f60..4aea750 100644 --- a/application/forms/BootmenuEntriesAdd.php +++ b/application/forms/BootmenuEntriesAdd.php @@ -45,7 +45,6 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form $bootosfield ->setLabel('BootOs:'); $bootosfield->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();"); - if(count($this->bootoslist)>0){ foreach($this->bootoslist as $bootos => $b){ $bootosfield->addMultiOption($b->getID(), $b->getTitle()); @@ -68,14 +67,18 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form )); + $defaultconfigid = $this->bootoslist[$_POST['bootosID']]->getConfigID(); $configfield = $this->createElement('select','configID'); - $configfield ->setLabel('Config:'); + $configfield->setLabel('Config:'); + $configfield->addMultiOption($defaultconfigid, 'default'); if(count($this->configlist)>0){ foreach($this->configlist as $config => $c){ - $configfield->addMultiOption($c->getID(), $c->getTitle()); + if($c->getID() != $defaultconfigid) + $configfield->addMultiOption($c->getID(), $c->getTitle()); } } + $configfield->setRegisterInArrayValidator(false); $this->addElement($configfield); diff --git a/application/forms/BootmenuEntriesEdit.php b/application/forms/BootmenuEntriesEdit.php index 8eb4b95..1548129 100644 --- a/application/forms/BootmenuEntriesEdit.php +++ b/application/forms/BootmenuEntriesEdit.php @@ -67,12 +67,16 @@ class Application_Form_BootmenuEntriesEdit extends Zend_Form 'value' => $this->bootoslist[$_POST['bootosID']]->getDefaultkcl() )); + $defaultconfigid = $this->bootoslist[$_POST['bootosID']]->getConfigID(); $configfield = $this->createElement('select','configID'); - $configfield ->setLabel('Config:'); + $configfield->setLabel('Config:'); + $configfield->addMultiOption($defaultconfigid, 'default'); + if(count($this->configlist)>0){ foreach($this->configlist as $config => $c){ - $configfield->addMultiOption($c->getID(), $c->getTitle()); + if($c->getID() != $defaultconfigid) + $configfield->addMultiOption($c->getID(), $c->getTitle()); } } $configfield->setRegisterInArrayValidator(false); -- cgit v1.2.3-55-g7522 From a4402a3b918aa347a770c2509822731fd08a45ee Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 10 Mar 2011 13:30:30 +0100 Subject: Mapper wieder korrigiert && Controller ergänzt --- application/layouts/main.phtml | 1 + application/models/ConfigMapper.php | 13 ++++++++++--- application/models/GroupMapper.php | 13 ++++++++++--- application/models/MembershipMapper.php | 13 ++++++++++--- application/models/PersonMapper.php | 13 ++++++++++--- 5 files changed, 41 insertions(+), 12 deletions(-) (limited to 'application') diff --git a/application/layouts/main.phtml b/application/layouts/main.phtml index 57d09c7..ca09e42 100644 --- a/application/layouts/main.phtml +++ b/application/layouts/main.phtml @@ -25,6 +25,7 @@ echo $this->headScript()."\n";
  • BootMenu
  • Config
  • BootOs
  • +
  • Resource
  • Client
  • Filter
  • Pool
  • diff --git a/application/models/ConfigMapper.php b/application/models/ConfigMapper.php index da7a073..d8a23c4 100644 --- a/application/models/ConfigMapper.php +++ b/application/models/ConfigMapper.php @@ -66,9 +66,14 @@ class Application_Model_ConfigMapper } } - public function find($id) + public function find($id, Application_Model_Config $config = null) { - $config = new Application_Model_Config(); + if($config == null){ + $return = true; + } + if($return){ + $config = new Application_Model_Config(); + } $result = $this->getDbTable()->find($id); if (0 == count($result)) { return; @@ -77,7 +82,9 @@ class Application_Model_ConfigMapper $row = $result->current(); $config->setID($row->configID)->setGroupID($row->groupID)->setMembershipID($row->membershipID)->setCreated($row->created)->setShellscript($row->shellscript)->setTitle($row->title); - return $config; + if($return){ + return $config; + } } public function fetchAll() diff --git a/application/models/GroupMapper.php b/application/models/GroupMapper.php index d43b3f1..463f3d1 100644 --- a/application/models/GroupMapper.php +++ b/application/models/GroupMapper.php @@ -66,9 +66,14 @@ class Application_Model_GroupMapper } } - public function find($id) + public function find($id,Application_Model_Group $group = null) { - $group = new Application_Model_Group(); + if($group == null){ + $return = true; + } + if($return){ + $group = new Application_Model_Group(); + } $result = $this->getDbTable()->find($id); if (0 == count($result)) { return; @@ -77,7 +82,9 @@ class Application_Model_GroupMapper $row = $result->current(); $group->setID($row->groupID)->setTitle($row->title)->setDescription($row->description); - return $group; + if($return){ + return $group; + } } public function fetchAll() diff --git a/application/models/MembershipMapper.php b/application/models/MembershipMapper.php index 2a6e57d..313248c 100644 --- a/application/models/MembershipMapper.php +++ b/application/models/MembershipMapper.php @@ -66,9 +66,14 @@ class Application_Model_MembershipMapper } } - public function find($id) + public function find($id, Application_Model_Membership $membership = null) { - $membership = new Application_Model_Membership(); + if($membership == null){ + $return = true; + } + if($return){ + $membership = new Application_Model_Membership(); + } $result = $this->getDbTable()->find($id); if (0 == count($result)) { return; @@ -77,7 +82,9 @@ class Application_Model_MembershipMapper $row = $result->current(); $membership->setID($row->membershipID)->setGroupID($row->groupID)->setRoleID($row->roleID)->setPersonID($row->personID); - return $membership; + if($return){ + return $membership; + } } public function fetchAll() diff --git a/application/models/PersonMapper.php b/application/models/PersonMapper.php index 038670d..b2cbf39 100644 --- a/application/models/PersonMapper.php +++ b/application/models/PersonMapper.php @@ -66,9 +66,14 @@ class Application_Model_PersonMapper } } - public function find($id) + public function find($id,Application_Model_Person $person = null) { - $person = new Application_Model_Person(); + if($person == null){ + $return = true; + } + if($return){ + $person = new Application_Model_Person(); + } $result = $this->getDbTable()->find($id); if (0 == count($result)) { return; @@ -77,7 +82,9 @@ class Application_Model_PersonMapper $row = $result->current(); $person->setID($row->personID)->setTitle($row->title)->setName($row->name)->setFirstname($row->firstname)->setStreet($row->street)->setHousenumber($row->housenumber)->setCity($row->city)->setPostalcode($row->postalcode)->setLogindate($row->logindate)->setRegisterdate($row->registerdate)->setEmail($row->email)->setLogin($row->login)->setPassword($row->password)->setPasswordSalt($row->password_salt); - return $person; + if($return){ + return $person; + } } public function fetchAll() -- cgit v1.2.3-55-g7522 From 6f4d014fc23ca0c8f404750b82b8d798c9a59af8 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 10 Mar 2011 15:45:00 +0100 Subject: template angepasst --- application/views/scripts/bootmenu/index.phtml | 9 +++++++-- public/media/img/play.gif | Bin 0 -> 113 bytes 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 public/media/img/play.gif (limited to 'application') diff --git a/application/views/scripts/bootmenu/index.phtml b/application/views/scripts/bootmenu/index.phtml index 6fb55e4..fa722e4 100644 --- a/application/views/scripts/bootmenu/index.phtml +++ b/application/views/scripts/bootmenu/index.phtml @@ -55,7 +55,7 @@
    - + @@ -70,7 +70,12 @@ bootmenuentrylist[$bootmenu->getID()] as $bootmenuentry): ?> bootosmapper->find($bootmenuentry->getBootosID());?> configmapper->find($bootmenuentry->getConfigID());?> - + + PpQXn7COf + * + * specifiying the second argument true, it will + * translate back e.g.: + * PpQXn7COf --> 9007199254740989 + * + * this function is based on any2dec && dec2any by + * fragmer[at]mail[dot]ru + * see: http://nl3.php.net/manual/en/function.base-convert.php#52450 + * + * If you want the alphaID to be at least 3 letter long, use the + * $pad_up = 3 argument + * + * In most cases this is better than totally random ID generators + * because this can easily avoid duplicate ID's. + * For example if you correlate the alpha ID to an auto incrementing ID + * in your database, you're done. + * + * The reverse is done because it makes it slightly more cryptic, + * but it also makes it easier to spread lots of IDs in different + * directories on your filesystem. Example: + * $part1 = substr($alpha_id,0,1); + * $part2 = substr($alpha_id,1,1); + * $part3 = substr($alpha_id,2,strlen($alpha_id)); + * $destindir = "/".$part1."/".$part2."/".$part3; + * // by reversing, directories are more evenly spread out. The + * // first 26 directories already occupy 26 main levels + * + * more info on limitation: + * - http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/165372 + * + * if you really need this for bigger numbers you probably have to look + * at things like: http://theserverpages.com/php/manual/en/ref.bc.php + * or: http://theserverpages.com/php/manual/en/ref.gmp.php + * but I haven't really dugg into this. If you have more info on those + * matters feel free to leave a comment. + * + * @author Kevin van Zonneveld + * @author Simon Franz + * @author Deadfish + * @copyright 2008 Kevin van Zonneveld (http://kevin.vanzonneveld.net) + * @license http://www.opensource.org/licenses/bsd-license.php New BSD Licence + * @version SVN: Release: $Id: alphaID.inc.php 344 2009-06-10 17:43:59Z kevin $ + * @link http://kevin.vanzonneveld.net/ + * + * @param mixed $in String or long input to translate + * @param boolean $to_num Reverses translation when true + * @param mixed $pad_up Number or boolean padds the result up to a specified length + * @param string $passKey Supplying a password makes it harder to calculate the original ID + * + * @return mixed string or long + */ + +private function alphaID($in, $to_num = false, $pad_up = false, $passKey = null) +{ + $index = "abcdefghijklmnopqrstuvwxyz0123456789"; + if ($passKey !== null) { + // Although this function's purpose is to just make the + // ID short - and not so much secure, + // with this patch by Simon Franz (http://blog.snaky.org/) + // you can optionally supply a password to make it harder + // to calculate the corresponding numeric ID + + for ($n = 0; $n 0) { + $out -= pow($base, $pad_up); + } + } + $out = sprintf('%F', $out); + $out = substr($out, 0, strpos($out, '.')); + } else { + // Digital number -->> alphabet letter code + if (is_numeric($pad_up)) { + $pad_up--; + if ($pad_up > 0) { + $in += pow($base, $pad_up); + } + } + + $out = ""; + for ($t = floor(log($in, $base)); $t >= 0; $t--) { + $bcp = bcpow($base, $t); + $a = floor($in / $bcp) % $base; + $out = $out . substr($index, $a, 1); + $in = $in - ($a * $bcp); + } + $out = strrev($out); // reverse + } + + return $out; +} +} + + + + + + + + + + + diff --git a/application/views/scripts/resource/get-bootmenu-entry.phtml b/application/views/scripts/resource/get-bootmenu-entry.phtml new file mode 100644 index 0000000..e69de29 diff --git a/application/views/scripts/resource/index.phtml b/application/views/scripts/resource/index.phtml new file mode 100644 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/blacklist.txt b/resources/config/1/uniontmp/blacklist.txt new file mode 100755 index 0000000..18bc411 --- /dev/null +++ b/resources/config/1/uniontmp/blacklist.txt @@ -0,0 +1,265 @@ +/usr/share/xsessions/.xterm.desktop +/usr/share/xsessions/.guest-restricted.desktop +/usr/share/xsessions/.gnome-failsafe.desktop +/usr/share/xsessions/.xubuntu.desktop +/usr/share/xsessions/.openbox-kde.desktop +/usr/share/xsessions/.openbox-gnome.desktop +/usr/share/man/man1/.x-window-manager.1.gz +/etc/alternatives/.x-window-manager.1.gz +/etc/dbus-1/system.d/.nm-vpnc-service.conf +/etc/dbus-1/system.d/.nm-pptp-service.conf +/etc/dbus-1/system.d/.nm-openvpn-service.conf +/etc/dbus-1/system.d/.nm-dispatcher.conf +/etc/dbus-1/system.d/.nm-dhcp-client.conf +/etc/dbus-1/system.d/.nm-avahi-autoipd.conf +/etc/dbus-1/system.d/.nm-applet.conf +/etc/dbus-1/system.d/.NetworkManager.conf +/etc/init/.ureadahead.conf +/etc/init/.ureadahead-other.conf +/etc/init/.ufw.conf +/etc/init/.screen-cleanup.conf +/etc/init/.qemu-kvm.conf +/etc/init/.plymouth.conf +/etc/init/.plymouth-stop.conf +/etc/init/.plymouth-splash.conf +/etc/init/.plymouth-log.conf +/etc/init/.network-manager.conf +/etc/init/.network-interface.conf +/etc/init/.network-interface-security.conf +/etc/init/.mountall-shell.conf +/etc/init/.mountall-reboot.conf +/etc/init/.mountall-net.conf +/etc/init/.hostname.conf +/etc/init/.gdm.conf +/etc/init/.failsafe-x.conf +/etc/init/.cryptdisks-udev.conf +/etc/init/.cryptdisks-enable.conf +/etc/init/.cron.conf +/etc/init/.bridge-network-interface.conf +/etc/init/.avahi-daemon.conf +/etc/init/.atd.conf +/etc/init/.apport.conf +/etc/init/.anacron.conf +/etc/rcS.d/.S75policykit +/etc/rcS.d/.S70x11-common +/etc/rcS.d/.S55urandom +/etc/rcS.d/.S47lm-sensors +/etc/rcS.d/.S46setserial +/etc/rcS.d/.S41nbd-client +/etc/rcS.d/.S37setkey +/etc/rcS.d/.S37apparmor +/etc/rcS.d/.S30etc-setserial +/etc/rcS.d/.S25brltty +/etc/rcS.d/.S13pcmciautils +/etc/rcS.d/.S07resolvconf +/etc/rcS.d/.S05keymap.sh +/etc/rcS.d/.README +/etc/rc6.d/.S90reboot +/etc/rc6.d/.S85kexec +/etc/rc6.d/.S60umountroot +/etc/rc6.d/.S59cryptdisks-early +/etc/rc6.d/.S48cryptdisks +/etc/rc6.d/.S40umountfs +/etc/rc6.d/.S35networking +/etc/rc6.d/.S34nbd-client +/etc/rc6.d/.S31umountnfs.sh +/etc/rc6.d/.S30urandom +/etc/rc6.d/.S20sendsigs +/etc/rc6.d/.S15wpa-ifupdown +/etc/rc6.d/.S10unattended-upgrades +/etc/rc6.d/.README +/etc/rc6.d/.K80openvpn +/etc/rc6.d/.K74bluetooth +/etc/rc6.d/.K30etc-setserial +/etc/rc6.d/.K20winbind +/etc/rc6.d/.K20virtuoso-opensource-6.0 +/etc/rc6.d/.K20vboxweb-service +/etc/rc6.d/.K20vboxdrv +/etc/rc6.d/.K20postfix +/etc/rc6.d/.K20nscd +/etc/rc6.d/.K20libnss-ldap +/etc/rc6.d/.K20kerneloops +/etc/rc6.d/.K20jetty +/etc/rc6.d/.K20darkstat +/etc/rc6.d/.K19setserial +/etc/rc6.d/.K19aumix +/etc/rc6.d/.K18kexec-load +/etc/rc6.d/.K01slim +/etc/rc5.d/.S99slim +/etc/rc5.d/.S99rc.local +/etc/rc5.d/.S99ondemand +/etc/rc5.d/.S99grub-common +/etc/rc5.d/.S99acpi-support +/etc/rc5.d/.S90binfmt-support +/etc/rc5.d/.S70pppd-dns +/etc/rc5.d/.S70dns-clean +/etc/rc5.d/.S50saned +/etc/rc5.d/.S50rsync +/etc/rc5.d/.S50pulseaudio +/etc/rc5.d/.S50cups +/etc/rc5.d/.S25bluetooth +/etc/rc5.d/.S21aumix +/etc/rc5.d/.S20winbind +/etc/rc5.d/.S20virtuoso-opensource-6.0 +/etc/rc5.d/.S20vboxweb-service +/etc/rc5.d/.S20vboxdrv +/etc/rc5.d/.S20sysstat +/etc/rc5.d/.S20speech-dispatcher +/etc/rc5.d/.S20postfix +/etc/rc5.d/.S20nscd +/etc/rc5.d/.S20libnss-ldap +/etc/rc5.d/.S20kerneloops +/etc/rc5.d/.S20jetty +/etc/rc5.d/.S20fancontrol +/etc/rc5.d/.S20darkstat +/etc/rc5.d/.S19vmware +/etc/rc5.d/.S16openvpn +/etc/rc5.d/.README +/etc/rc5.d/.K08vmware +/etc/rc4.d/.S99slim +/etc/rc4.d/.S99rc.local +/etc/rc4.d/.S99ondemand +/etc/rc4.d/.S99grub-common +/etc/rc4.d/.S99acpi-support +/etc/rc4.d/.S90binfmt-support +/etc/rc4.d/.S70pppd-dns +/etc/rc4.d/.S70dns-clean +/etc/rc4.d/.S50saned +/etc/rc4.d/.S50rsync +/etc/rc4.d/.S50pulseaudio +/etc/rc4.d/.S50cups +/etc/rc4.d/.S25bluetooth +/etc/rc4.d/.S21aumix +/etc/rc4.d/.S20winbind +/etc/rc4.d/.S20virtuoso-opensource-6.0 +/etc/rc4.d/.S20vboxweb-service +/etc/rc4.d/.S20vboxdrv +/etc/rc4.d/.S20sysstat +/etc/rc4.d/.S20speech-dispatcher +/etc/rc4.d/.S20postfix +/etc/rc4.d/.S20nscd +/etc/rc4.d/.S20libnss-ldap +/etc/rc4.d/.S20kerneloops +/etc/rc4.d/.S20jetty +/etc/rc4.d/.S20fancontrol +/etc/rc4.d/.S20darkstat +/etc/rc4.d/.S16openvpn +/etc/rc4.d/.README +/etc/rc3.d/.S99slim +/etc/rc3.d/.S99rc.local +/etc/rc3.d/.S99ondemand +/etc/rc3.d/.S99grub-common +/etc/rc3.d/.S99acpi-support +/etc/rc3.d/.S90binfmt-support +/etc/rc3.d/.S70pppd-dns +/etc/rc3.d/.S70dns-clean +/etc/rc3.d/.S50saned +/etc/rc3.d/.S50rsync +/etc/rc3.d/.S50pulseaudio +/etc/rc3.d/.S50cups +/etc/rc3.d/.S25bluetooth +/etc/rc3.d/.S21aumix +/etc/rc3.d/.S20winbind +/etc/rc3.d/.S20virtuoso-opensource-6.0 +/etc/rc3.d/.S20vboxweb-service +/etc/rc3.d/.S20vboxdrv +/etc/rc3.d/.S20sysstat +/etc/rc3.d/.S20speech-dispatcher +/etc/rc3.d/.S20postfix +/etc/rc3.d/.S20libnss-ldap +/etc/rc3.d/.S20kerneloops +/etc/rc3.d/.S20jetty +/etc/rc3.d/.S20fancontrol +/etc/rc3.d/.S20darkstat +/etc/rc3.d/.S19vmware +/etc/rc3.d/.S16openvpn +/etc/rc3.d/.README +/etc/rc3.d/.K08vmware +/etc/rc2.d/.S99slim +/etc/rc2.d/.S99rc.local +/etc/rc2.d/.S99ondemand +/etc/rc2.d/.S99grub-common +/etc/rc2.d/.S99acpi-support +/etc/rc2.d/.S90binfmt-support +/etc/rc2.d/.S70pppd-dns +/etc/rc2.d/.S70dns-clean +/etc/rc2.d/.S50saned +/etc/rc2.d/.S50rsync +/etc/rc2.d/.S50pulseaudio +/etc/rc2.d/.S50cups +/etc/rc2.d/.S25bluetooth +/etc/rc2.d/.S21aumix +/etc/rc2.d/.S20winbind +/etc/rc2.d/.S20virtuoso-opensource-6.0 +/etc/rc2.d/.S20vboxweb-service +/etc/rc2.d/.S20vboxdrv +/etc/rc2.d/.S20sysstat +/etc/rc2.d/.S20speech-dispatcher +/etc/rc2.d/.S20postfix +/etc/rc2.d/.S20libnss-ldap +/etc/rc2.d/.S20kerneloops +/etc/rc2.d/.S20jetty +/etc/rc2.d/.S20fancontrol +/etc/rc2.d/.S20darkstat +/etc/rc2.d/.S19vmware +/etc/rc2.d/.S16openvpn +/etc/rc2.d/.S00kdump +/etc/rc2.d/.README +/etc/rc2.d/.K08vmware +/etc/rc1.d/.S90single +/etc/rc1.d/.S70pppd-dns +/etc/rc1.d/.S70dns-clean +/etc/rc1.d/.S30killprocs +/etc/rc1.d/.README +/etc/rc1.d/.K80openvpn +/etc/rc1.d/.K80cups +/etc/rc1.d/.K74bluetooth +/etc/rc1.d/.K20winbind +/etc/rc1.d/.K20virtuoso-opensource-6.0 +/etc/rc1.d/.K20vboxweb-service +/etc/rc1.d/.K20vboxdrv +/etc/rc1.d/.K20speech-dispatcher +/etc/rc1.d/.K20saned +/etc/rc1.d/.K20rsync +/etc/rc1.d/.K20postfix +/etc/rc1.d/.K20nscd +/etc/rc1.d/.K20libnss-ldap +/etc/rc1.d/.K20kerneloops +/etc/rc1.d/.K20jetty +/etc/rc1.d/.K20darkstat +/etc/rc1.d/.K20acpi-support +/etc/rc1.d/.K19aumix +/etc/rc1.d/.K15pulseaudio +/etc/rc1.d/.K01slim +/etc/rc0.d/.S90halt +/etc/rc0.d/.S60umountroot +/etc/rc0.d/.S59cryptdisks-early +/etc/rc0.d/.S48cryptdisks +/etc/rc0.d/.S40umountfs +/etc/rc0.d/.S35networking +/etc/rc0.d/.S34nbd-client +/etc/rc0.d/.S31umountnfs.sh +/etc/rc0.d/.S30urandom +/etc/rc0.d/.S20sendsigs +/etc/rc0.d/.S15wpa-ifupdown +/etc/rc0.d/.S10unattended-upgrades +/etc/rc0.d/.README +/etc/rc0.d/.K80openvpn +/etc/rc0.d/.K74bluetooth +/etc/rc0.d/.K30etc-setserial +/etc/rc0.d/.K20winbind +/etc/rc0.d/.K20virtuoso-opensource-6.0 +/etc/rc0.d/.K20vboxweb-service +/etc/rc0.d/.K20vboxdrv +/etc/rc0.d/.K20postfix +/etc/rc0.d/.K20nscd +/etc/rc0.d/.K20libnss-ldap +/etc/rc0.d/.K20kerneloops +/etc/rc0.d/.K20jetty +/etc/rc0.d/.K20darkstat +/etc/rc0.d/.K19setserial +/etc/rc0.d/.K19aumix +/etc/rc0.d/.K01slim +/.orph +/.plnk +/.aufs diff --git a/resources/config/1/uniontmp/etc/X11/default-display-manager b/resources/config/1/uniontmp/etc/X11/default-display-manager new file mode 100755 index 0000000..7d6c14c --- /dev/null +++ b/resources/config/1/uniontmp/etc/X11/default-display-manager @@ -0,0 +1 @@ +/usr/bin/kdm diff --git a/resources/config/1/uniontmp/etc/X11/xorg.conf b/resources/config/1/uniontmp/etc/X11/xorg.conf new file mode 100755 index 0000000..d120cdf --- /dev/null +++ b/resources/config/1/uniontmp/etc/X11/xorg.conf @@ -0,0 +1,66 @@ +# /etc/X11/xorg.conf +# autogenerated X hardware configuration by the xserver plugin in OpenSLX stage3 +# DO NOT EDIT THIS FILE BUT THE PLUGIN INSTEAD +Section "Files" +# ModulePath "/usr/lib/xorg/modules/,/usr/lib64/xorg/modules/" +EndSection +Section "ServerFlags" + Option "AllowMouseOpenFail" + Option "AllowEmptyInput" "false" + Option "blank time" "5" + Option "standby time" "10" + Option "suspend time" "15" + Option "off time" "20" +EndSection +Section "Module" + Load "i2c" + Load "bitmap" + Load "ddc" + Load "extmod" + Load "freetype" + Load "int10" + Load "vbe" + Load "glx" + Load "dri" +EndSection +Section "InputDevice" + Identifier "Generic Keyboard" + Driver "evdev" + Option "CoreKeyboard" + Option "XkbRules" "xorg" + Option "XkbModel" "pc105" + Option "XkbLayout" "us" + Option "XkbVariant" "nodeadkeys" +EndSection +Section "InputDevice" + Identifier "Generic Mouse" + Driver "mouse" +# Option "Device" "/dev/input/mice" +# Option "Protocol" "ImPS/2" +# Option "ZAxisMapping" "4 5" +# Option "Emulate3Buttons" "true" + Option "CorePointer" +EndSection +Section "Monitor" + Identifier "Generic Display" + Option "DPMS" +# Modelname "could be enabled via xserver::ddcinfo attribute" +# Vertrefresh ... +# Horizsync ... +# DisplaySize ... +EndSection +Section "Screen" + Identifier "Default Screen" + Device "Generic Video Card" + Monitor "Generic Display" + DefaultDepth 24 +# SubSection "Display" +# Depth 24 +# Modes "1024x768" "800x600" +# EndSubSection +EndSection +Section "ServerLayout" + Identifier "Default Layout" + InputDevice "Generic Keyboard" + InputDevice "Generic Mouse" +EndSection diff --git a/resources/config/1/uniontmp/etc/auto.master b/resources/config/1/uniontmp/etc/auto.master new file mode 100755 index 0000000..d33958d --- /dev/null +++ b/resources/config/1/uniontmp/etc/auto.master @@ -0,0 +1,3 @@ +# /etc/auto.master - file generated by /bin/servconfig: +/misc #/etc/auto.misc +/home program:/var/lib/openslx/bin/automount-home.pl diff --git a/resources/config/1/uniontmp/etc/auto.misc b/resources/config/1/uniontmp/etc/auto.misc new file mode 100755 index 0000000..b2ae0a9 --- /dev/null +++ b/resources/config/1/uniontmp/etc/auto.misc @@ -0,0 +1,3 @@ +# /etc/auto.misc - file generated by /bin/servconfig: +automount for removable devices is mostly deprecated, so /misc is not +activated in auto.master. diff --git a/resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf b/resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf new file mode 100755 index 0000000..e40c5af --- /dev/null +++ b/resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/config/1/uniontmp/etc/default/autofs b/resources/config/1/uniontmp/etc/default/autofs new file mode 100755 index 0000000..40ebba1 --- /dev/null +++ b/resources/config/1/uniontmp/etc/default/autofs @@ -0,0 +1,128 @@ +# /etc/default/autofs - file modified byn#t/bin/servconfig:n# +# +# Define default options for autofs. +# +# MASTER_MAP_NAME - default map name for the master map. +# +MASTER_MAP_NAME="/etc/auto.master" +# +# TIMEOUT=60 +# +TIMEOUT=60 +# +# NEGATIVE_TIMEOUT=60 +# failed mount attempts (default 60). +# +#NEGATIVE_TIMEOUT=60 +# +# UMOUNT_WAIT - time to wait for a response from umount(8). +# +#UMOUNT_WAIT=12 +# +# BROWSE_MODE - maps are browsable by default. +# +BROWSE_MODE="no" +# +# MOUNT_NFS_DEFAULT_PROTOCOL - specify the default protocol used by +# mount.nfs(8). Since we can't identify +# the default automatically we need to +# set it in our configuration. This will +# only make a difference for replicated +# map entries as availability probing isn't +# used for single host map entries. +# +#MOUNT_NFS_DEFAULT_PROTOCOL=3 +# +# APPEND_OPTIONS - append to global options instead of replace. +# +#APPEND_OPTIONS="yes" +# +# LOGGING - set default log level "none", "verbose" or "debug" +# +#LOGGING="none" +# +# Define server URIs +# +# LDAP_URI - space seperated list of server uris of the form +# ://[/] where can be ldap +# or ldaps. The option can be given multiple times. +# Map entries that include a server name override +# this option. +# +# This configuration option can also be used to +# request autofs lookup SRV RRs for a domain of +# the form :///[]. Note that a +# trailing "/" is not allowed when using this form. +# If the domain dn is not specified the dns domain +# name (if any) is used to construct the domain dn +# for the SRV RR lookup. The server list returned +# from an SRV RR lookup is refreshed according to +# the minimum ttl found in the SRV RR records or +# after one hour, whichever is less. +# +#LDAP_URI="" +# +# LDAP__TIMEOUT=60 +# (default is LDAP library default). +# +#LDAP_TIMEOUT=60 +# +# LDAP_NETWORK_TIMEOUT=60 +# +#LDAP_NETWORK_TIMEOUT=60 +# +# Define base dn for map dn lookup. +# +# SEARCH_BASE - base dn to use for searching for map search dn. +# Multiple entries can be given and they are checked +# in the order they occur here. +# +#SEARCH_BASE="" +# +# Define the LDAP schema to used for lookups +# +# If no schema is set autofs will check each of the schemas +# below in the order given to try and locate an appropriate +# basdn for lookups. If you want to minimize the number of +# queries to the server set the values here. +# +#MAP_OBJECT_CLASS="nisMap" +#ENTRY_OBJECT_CLASS="nisObject" +#MAP_ATTRIBUTE="nisMapName" +#ENTRY_ATTRIBUTE="cn" +#VALUE_ATTRIBUTE="nisMapEntry" +# +# Other common LDAP nameing +# +#MAP_OBJECT_CLASS="automountMap" +#ENTRY_OBJECT_CLASS="automount" +#MAP_ATTRIBUTE="ou" +#ENTRY_ATTRIBUTE="cn" +#VALUE_ATTRIBUTE="automountInformation" +# +#MAP_OBJECT_CLASS="automountMap" +#ENTRY_OBJECT_CLASS="automount" +#MAP_ATTRIBUTE="automountMapName" +#ENTRY_ATTRIBUTE="automountKey" +#VALUE_ATTRIBUTE="automountInformation" +# +# AUTH_CONF_FILE - set the default location for the SASL +# authentication configuration file. +# +#AUTH_CONF_FILE="/etc/autofs_ldap_auth.conf" +# +# MAP_HASH_TABLE_SIZE - set the map cache hash table size. +# Should be a power of 2 with a ratio roughly +# between 1:10 and 1:20 for each map. +# +#MAP_HASH_TABLE_SIZE=1024 +# +# General global options +# +# If the kernel supports using the autofs miscellanous device +# and you wish to use it you must set this configuration option +# to "yes" otherwise it will not be used. +USE_MISC_DEVICE="yes" +# +#OPTIONS="" +# diff --git a/resources/config/1/uniontmp/etc/default/locale b/resources/config/1/uniontmp/etc/default/locale new file mode 100755 index 0000000..7a102c6 --- /dev/null +++ b/resources/config/1/uniontmp/etc/default/locale @@ -0,0 +1,2 @@ +# File modified during SLX stage3 bootup (config_distro) +LANG="de_DE.UTF-8" diff --git a/resources/config/1/uniontmp/etc/default/nfs-common b/resources/config/1/uniontmp/etc/default/nfs-common new file mode 100755 index 0000000..6345bba --- /dev/null +++ b/resources/config/1/uniontmp/etc/default/nfs-common @@ -0,0 +1,19 @@ +# If you do not set values for the NEED_ options, they will be attempted +# autodetected; this should be sufficient for most people. Valid alternatives +# for the NEED_ options are "yes" and "no". + +# Do you want to start the statd daemon? It is not needed for NFSv4. +NEED_STATD= + +# Options for rpc.statd. +# Should rpc.statd listen on a specific port? This is especially useful +# when you have a port-based firewall. To use a fixed port, set this +# this variable to a statd argument like: "--port 4000 --outgoing-port 4001". +# For more information, see rpc.statd(8) or http://wiki.debian.org/?SecuringNFS +STATDOPTS= + +# Do you want to start the idmapd daemon? It is only needed for NFSv4. +NEED_IDMAPD=yes + +# Do you want to start the gssd daemon? It is required for Kerberos mounts. +NEED_GSSD=yes diff --git a/resources/config/1/uniontmp/etc/fstab b/resources/config/1/uniontmp/etc/fstab new file mode 100755 index 0000000..4f1b5b7 --- /dev/null +++ b/resources/config/1/uniontmp/etc/fstab @@ -0,0 +1,8 @@ +# OpenSLX Project, info@openslx.com + +rootfs / rootfs ro 0 0 +/dev/sda1 swap swap defaults 0 0 +/dev/sda2 /media/sda2 auto noauto,noexec 0 0 +/dev/sda3 /media/sda3 auto noauto,noexec 0 0 +rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs defaults 0 0 +nfsd /proc/fs/nfsd nfsd defaults 0 0 diff --git a/resources/config/1/uniontmp/etc/hosts b/resources/config/1/uniontmp/etc/hosts new file mode 100755 index 0000000..ff31061 --- /dev/null +++ b/resources/config/1/uniontmp/etc/hosts @@ -0,0 +1,13 @@ +# /etc/hosts - file generated by /bin/servconfig during OpenSLX stage3 +# +# IP-Address Full-Qualified-Hostname Short-Hostname +# +127.0.0.1 localhost +::1 localhost ipv6-localhost ipv6-loopback +fe00::0 ipv6-localnet +ff00::0 ipv6-mcastprefix +ff02::1 ipv6-allnodes +ff02::2 ipv6-allrouters +ff02::3 ipv6-allhosts + +132.230.4.20 lsfks20.ruf.uni-freiburg.de lsfks20 diff --git a/resources/config/1/uniontmp/etc/idmapd.conf b/resources/config/1/uniontmp/etc/idmapd.conf new file mode 100755 index 0000000..86fb6ef --- /dev/null +++ b/resources/config/1/uniontmp/etc/idmapd.conf @@ -0,0 +1,11 @@ +# file copied from configuration package (rootfs/etc/idmap.conf) +[General] + +Verbosity = 0 +Pipefs-Directory = /var/lib/nfs/rpc_pipefs +Domain = uni-freiburg.de + +[Mapping] + +Nobody-User = nobody +Nobody-Group = nogroup diff --git a/resources/config/1/uniontmp/etc/init.d/boot.slx b/resources/config/1/uniontmp/etc/init.d/boot.slx new file mode 100755 index 0000000..287db78 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.d/boot.slx @@ -0,0 +1,19 @@ +#!/bin/sh +# skeleton of /etc/init.d/boot.slx written from /init +# after you applied changes to the creation scripts you have to rerun +# the mkdxsinitrd script to get them applied + +. /lib/lsb/init-functions + + + +case "$1" in + start) + log_begin_msg "Running configuration postponed from InitRamFS" + mount -t usbfs usbfs /proc/bus/usb 2>/dev/null + log_end_msg 0 + ;; + stop) + ;; +esac +exit 0 diff --git a/resources/config/1/uniontmp/etc/init.d/vbox-slx b/resources/config/1/uniontmp/etc/init.d/vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.d/vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/init.d/vmware-env b/resources/config/1/uniontmp/etc/init.d/vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.d/vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/init.inactive/README b/resources/config/1/uniontmp/etc/init.inactive/README new file mode 100755 index 0000000..d199578 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/README @@ -0,0 +1,2 @@ +# This directory was created in OpenSLX stage3 and contains all disabled +# upstart scripts. They are moved by servconfig to init if this is required. diff --git a/resources/config/1/uniontmp/etc/init.inactive/anacron.conf b/resources/config/1/uniontmp/etc/init.inactive/anacron.conf new file mode 100755 index 0000000..d2bae55 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/anacron.conf @@ -0,0 +1,14 @@ +# anacron - anac(h)ronistic cron +# +# anacron executes commands at specific periods, but does not assume that +# the machine is running continuously + +description "anac(h)ronistic cron" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +normal exit 0 + +exec anacron -s diff --git a/resources/config/1/uniontmp/etc/init.inactive/apport.conf b/resources/config/1/uniontmp/etc/init.inactive/apport.conf new file mode 100755 index 0000000..c76f56a --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/apport.conf @@ -0,0 +1,50 @@ +# apport - automatic crash report generation +# +# While this job is active, core dumps will captured by apport and +# used to generate automatic crash reports. + +description "automatic crash report generation" + +start on runlevel [2345] +stop on runlevel [!2345] + +env enabled=1 + +pre-start script + . /etc/default/apport + [ "$enabled" = "1" ] || [ "$force_start" = "1" ] + + mkdir -p -m 1777 /var/crash + + # check for kernel crash dump, convert it to apport report + if [ -e /var/crash/vmcore ] + then + /usr/share/apport/kernel_crashdump || true + fi + + # check for incomplete suspend/resume or hibernate + if [ -e /var/lib/pm-utils/status ] + then + /usr/share/apport/apportcheckresume || true + rm -f /var/lib/pm-utils/status + rm -f /var/lib/pm-utils/resume-hang.log + fi + + echo "|/usr/share/apport/apport %p %s %c" > /proc/sys/kernel/core_pattern +end script + +post-stop script + # Check for a hung resume. If we find one try and grab everything + # we can to aid in its discovery + if [ -e /var/lib/pm-utils/status ] + then + ps -wwef > /var/lib/pm-utils/resume-hang.log + fi + + if [ "`dd if=/proc/sys/kernel/core_pattern count=1 bs=1 2>/dev/null`" != "|" ] + then + exit 1 + else + echo "core" > /proc/sys/kernel/core_pattern + fi +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/atd.conf b/resources/config/1/uniontmp/etc/init.inactive/atd.conf new file mode 100755 index 0000000..72bbf04 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/atd.conf @@ -0,0 +1,14 @@ +# atd - deferred execution scheduler +# +# at is a standard UNIX program that runs user-specified programs at +# scheduled deferred times + +description "deferred execution scheduler" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +respawn + +exec atd diff --git a/resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf b/resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf new file mode 100755 index 0000000..dac0cd9 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf @@ -0,0 +1,25 @@ +# avahi-daemon - mDNS/DNS-SD daemon +# +# The Avahi daemon provides mDNS/DNS-SD discovery support (Bonjour/Zeroconf) +# allowing applications to discover services on the network. + +description "mDNS/DNS-SD daemon" + +start on (filesystem + and started dbus) +stop on stopping dbus + +expect daemon +respawn + +pre-start script + [ -d /sys/module/apparmor ] || exit 0 + [ -x /sbin/apparmor_parser ] || exit 0 + /sbin/apparmor_parser -r -W /etc/apparmor.d/usr.sbin.avahi-daemon || true +end script + +script + opts="-D" + [ -e "/etc/eucalyptus/avahi-daemon.conf" ] && opts="${opts} -f /etc/eucalyptus/avahi-daemon.conf" + exec avahi-daemon ${opts} +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf b/resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf new file mode 100755 index 0000000..d3f6097 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf @@ -0,0 +1,30 @@ +# bridge-network-interface - configure a network bridge +# +# This service checks whether a physical network device that has been added +# is one of the ports in a bridge config, and if so, bring up the related +# bridge + +description "configure bridges for device" + +start on net-device-added +stop on net-device-removed INTERFACE=$INTERFACE + +instance $INTERFACE + +pre-start script + . /lib/bridge-utils/bridge-utils.sh + + mkdir -p /var/run/network + for i in $(ifquery --list --allow auto); do + ports=$(ifquery $i | sed -n -e's/^bridge_ports: //p') + for port in $(bridge_parse_ports $ports); do + case $port in + $INTERFACE|$INTERFACE.*) + ifup --allow auto $i + brctl addif $i $port && ifconfig $port 0.0.0.0 up + break + ;; + esac + done + done +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/cron.conf b/resources/config/1/uniontmp/etc/init.inactive/cron.conf new file mode 100755 index 0000000..655f01c --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/cron.conf @@ -0,0 +1,14 @@ +# cron - regular background program processing daemon +# +# cron is a standard UNIX program that runs user-specified programs at +# periodic scheduled times + +description "regular background program processing daemon" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +respawn + +exec cron diff --git a/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf b/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf new file mode 100755 index 0000000..bb8f744 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf @@ -0,0 +1,35 @@ +# cryptdisks - enable encrypted block devices +# +# Sweep up any devices in /etc/crypttab that have not yet been started at +# the end of udev coldplugging; this partly duplicates the cryptdisks-udev +# job, but is necessary because: +# - some devices may not be registered as ID_FS_USAGE=crypto by udev (e.g., +# random-encrypted devices), but we don't want to call the upstart job +# for every single block device +# - some devices can only be decrypted after other devices are decrypted and +# mounted first, so we need a two-pass system (like +# /etc/init.d/cryptdisks{,-early} previously) +# +# This job currently still does not guarantee a race-free startup; instances +# of cryptdisks-udev may be started in parallel with this job. + +description "enable remaining boot-time encrypted block devices" + +start on stopped udevtrigger + +task + +script + [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; } + + . /lib/cryptsetup/cryptdisks.functions + + case "$CRYPTDISKS_ENABLE" in + [Nn]*) + exit 1 + ;; + esac + + INITSTATE="init" + do_start +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf b/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf new file mode 100755 index 0000000..707876a --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf @@ -0,0 +1,23 @@ +# cryptdisks - enable encrypted block devices + +description "enable encrypted block devices" + +start on block-device-added ID_FS_USAGE=crypto +instance $DEVNAME + +task + +script + [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; } + + . /lib/cryptsetup/cryptdisks.functions + + case "$CRYPTDISKS_ENABLE" in + [Nn]*) + exit 1 + ;; + esac + + INITSTATE=udev + crypttab_start_one_disk "$DEVNAME" +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf b/resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf new file mode 100755 index 0000000..b258faa --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf @@ -0,0 +1,13 @@ +# failsafe-x - Recovery options if gdm fails to start +# +# If gdm exits non-zero, something is wrong - launch the bulletproof-X +# interface + +description "Recovery options if gdm fails to start" + +start on stopped gdm EXIT_STATUS=[!0] +stop on runlevel [06] + +task + +exec /etc/gdm/failsafeXServer diff --git a/resources/config/1/uniontmp/etc/init.inactive/gdm.conf b/resources/config/1/uniontmp/etc/init.inactive/gdm.conf new file mode 100755 index 0000000..c2aaa1b --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/gdm.conf @@ -0,0 +1,36 @@ +# gdm - GNOME Display Manager +# +# The display manager service manages the X servers running on the +# system, providing login and auto-login services + +description "GNOME Display Manager" +author "William Jon McCann " + +start on (filesystem + and started dbus + and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) +stop on runlevel [016] + +emits starting-dm + +env XORGCONFIG=/etc/X11/xorg.conf + +script + if [ -n "$UPSTART_EVENTS" ] + then + [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/gdm" ] || { stop; exit 0; } + + fi + + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE + fi + export XORGCONFIG + + exec gdm-binary $CONFIG_FILE +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/hostname.conf b/resources/config/1/uniontmp/etc/init.inactive/hostname.conf new file mode 100755 index 0000000..6195fd1 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/hostname.conf @@ -0,0 +1,12 @@ +# hostname - set system hostname +# +# This task is run on startup to set the system hostname from /etc/hostname, +# falling back to "localhost" if that file is not readable or is empty and +# no hostname has yet been set. + +description "set system hostname" + +start on startup + +task +exec hostname -b -F /etc/hostname diff --git a/resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf b/resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf new file mode 100755 index 0000000..134cdc6 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf @@ -0,0 +1,15 @@ +# mountall-net - Mount network filesystems +# +# Send mountall the USR1 signal to inform it to try network filesystems +# again. + +description "Mount network filesystems" + +start on net-device-up + +task + +script + PID=$(status mountall 2>/dev/null | sed -e '/start\/running,/{s/.*,[^0-9]*//;q};d') + [ -n "$PID" ] && kill -USR1 $PID || true +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf b/resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf new file mode 100755 index 0000000..c5a5d56 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf @@ -0,0 +1,11 @@ +# mountall-reboot - Reboot after filesystems are changed +# +# If mountall exits to indicate a reboot is required, this does the +# necessary reboot. + +description "Reboot after filesystems are changed" + +start on stopped mountall EXIT_STATUS=4 + +task +exec reboot -f diff --git a/resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf b/resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf new file mode 100755 index 0000000..fbf788d --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf @@ -0,0 +1,49 @@ +# mountall-shell - Recovery shell for filesystem failure +# +# If mountall exits to indicate that manual recovery is required, this +# starts the necessary shell. + +description "Recovery shell for filesystem failure" + +start on (stopped mountall EXIT_STATUS=[!4] + or stopped mountall EXIT_SIGNAL=?*) +stop on runlevel [06] + +task +console owner + +script + case "$EXIT_STATUS" in + ""|1) + echo "General error mounting filesystems." + echo "A maintenance shell will now be started." + echo "CONTROL-D will terminate this shell and reboot the system." + ;; + 2) + echo "Filesystem check or mount failed." + echo "A maintenance shell will now be started." + echo "CONTROL-D will terminate this shell and continue booting after re-trying" + echo "filesystems. Any further errors will be ignored" + ;; + 3) + echo "Root filesystem check failed." + echo "A maintenance shell will now be started." + echo "CONTROL-D will terminate this shell and reboot the system." + ;; + esac + + /sbin/sulogin +end script + +post-stop script + if [ -z "$UPSTART_STOP_EVENTS" ] + then + if [ "$EXIT_STATUS" = "2" ] + then + exec start --no-wait mountall + else + umount -a || : + exec reboot -f + fi + fi +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf b/resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf new file mode 100755 index 0000000..5bb8a4a --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf @@ -0,0 +1,26 @@ +# network-interface-security - configure network device security +# +# This is a one-time start-up script to load AppArmor profiles needed +# before the network comes up. + +description "configure network device security" + +# In order to avoid upstart bug LP: #447654, we cannot have an AND +# statement here (with the ORs). An "and virtual-filesystems" is desired +# here to make sure that the securityfs is mounted, but since each of the +# ORed services already require virtual-filesystems be mounted, this is safe: +start on (starting network-interface + or starting network-manager + or starting networking) + +# Since we need these profiles to be loaded before any of the above services +# begin running, this service must be a pre-start so that its pre-start +# script finishes before the above services' start scripts begin. +pre-start script + [ -d /rofs/etc/apparmor.d ] && exit 0 # do not load on liveCD + [ -d /sys/module/apparmor ] || exit 0 # do not load without AppArmor + [ -x /sbin/apparmor_parser ] || exit 0 # do not load without parser + for link in /etc/apparmor/init/network-interface-security/* ; do + [ -L $link ] && /sbin/apparmor_parser -r -W $link || true + done +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/network-interface.conf b/resources/config/1/uniontmp/etc/init.inactive/network-interface.conf new file mode 100755 index 0000000..a7f16e4 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/network-interface.conf @@ -0,0 +1,25 @@ +# network-interface - configure network device +# +# This service causes network devices to be brought up or down as a result +# of hardware being added or removed, including that which isn't ordinarily +# removable. + +description "configure network device" + +start on net-device-added +stop on net-device-removed INTERFACE=$INTERFACE + +instance $INTERFACE + +pre-start script + if [ "$INTERFACE" = lo ]; then + # bring this up even if /etc/network/interfaces is broken + ifconfig lo 127.0.0.1 up || true + initctl emit -n net-device-up \ + IFACE=lo LOGICAL=lo ADDRFAM=inet METHOD=loopback || true + fi + mkdir -p /var/run/network + exec ifup --allow auto $INTERFACE +end script + +post-stop exec ifdown --allow auto $INTERFACE diff --git a/resources/config/1/uniontmp/etc/init.inactive/network-manager.conf b/resources/config/1/uniontmp/etc/init.inactive/network-manager.conf new file mode 100755 index 0000000..d6099d4 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/network-manager.conf @@ -0,0 +1,15 @@ +# network-manager - network connection manager +# +# The Network Manager daemon manages the system's network connections, +# automatically switching between the best available. + +description "network connection manager" + +start on (local-filesystems + and started dbus) +stop on stopping dbus + +expect fork +respawn + +exec NetworkManager diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf new file mode 100755 index 0000000..c1b5f93 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf @@ -0,0 +1,13 @@ +# plymouth-log - Flush boot log to disk +# +# plymouth buffers console messages during boot, once the filesystem +# is up they should be flushed to the boot log on disk and further +# messages written directly to it. + +description "Flush boot log to disk" + +start on filesystem + +task + +exec /bin/plymouth update-root-fs --read-write diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf new file mode 100755 index 0000000..730da40 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf @@ -0,0 +1,20 @@ +# plymouth-splash - Show the splash screen +# +# plymouth must be started ASAP to avoid racing with gdm, but the splash +# screen can't be spawned until our framebuffer is available. Wait for the +# video device to be available before showing the screen, or, if udevtrigger +# finishes without finding any video devices, bring up the fallback text +# interface. +# We also *should* wait for the filesystem to be up because of the libraries +# being used from /usr/lib, but this would cause a circular dependency if +# any interaction at all is required for mounting a filesystem; so these libs +# need to be moved to /lib instead. + +description "Userspace bootsplash" + +start on (started plymouth + and (graphics-device-added PRIMARY_DEVICE_FOR_DISPLAY=1 + or drm-device-added PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) + +exec /bin/plymouth show-splash diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf new file mode 100755 index 0000000..710d19e --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf @@ -0,0 +1,28 @@ +# plymouth-stop - Hide the splash screen +# +# This job ensures that only one service stops the plymouth splash screen, +# without it there can be a race between gdm starting up and beginning the +# proper transition procedure and rc2 ending and quitting plymouth resulting +# in it doing a VT switch. + +start on (starting gdm + or starting kdm + or starting xdm + or starting lxdm + or starting ubiquity + or starting oem-config + or stopped rc RUNLEVEL=[2345] + or starting rcS + or starting mountall-shell) +stop on stopped plymouth + +pre-start script + case "$JOB" in + gdm|kdm|ubiquity|oem-config) + exit 0 + ;; + *) + exec /bin/plymouth quit + ;; + esac +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth.conf new file mode 100755 index 0000000..17019b1 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/plymouth.conf @@ -0,0 +1,34 @@ +# plymouth - Userspace bootsplash utility +# +# plymouth provides a boot splash screen on the system console using +# the kernel framebuffer device. On boot, this is nominally started by +# the initramfs so the pre-start script, script and post-start script +# parts are actually not run. These are normally run on shutdown instead. + +description "Userspace bootsplash utility" + +start on (starting mountall + or (runlevel [016] + and (stopped gdm + or stopped kdm + or stopped xdm + or stopped lxdm))) + +expect fork +kill timeout 60 + +script + if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then + exec /sbin/plymouthd --mode=shutdown + else + exec /sbin/plymouthd --mode=boot --attach-to-session + fi +end script + +post-start script + if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then + exec /bin/plymouth show-splash + fi +end script + +pre-stop exec /bin/plymouth quit diff --git a/resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf b/resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf new file mode 100755 index 0000000..c22c10c --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf @@ -0,0 +1,36 @@ +# qemu-kvm + +description "KVM" +author "Dustin Kirkland " + +start on runlevel [2345] + +pre-start script + # Load the appropriate module, respecting blacklists + if grep -qs "^flags.* vmx" /proc/cpuinfo; then + modprobe -b kvm_intel + elif grep -qs "^flags.* svm" /proc/cpuinfo; then + modprobe -b kvm_amd + fi + # Enable KSM, respecting the default configuration file + [ -r /etc/default/qemu-kvm ] && . /etc/default/qemu-kvm + if [ "$KSM_ENABLED" = "1" ]; then + [ -w /sys/kernel/mm/ksm/run ] && echo 1 > /sys/kernel/mm/ksm/run + if [ -w /sys/kernel/mm/ksm/sleep_millisecs ]; then + if [ -n "$SLEEP_MILLISECS" ]; then + echo "$SLEEP_MILLISECS" > /sys/kernel/mm/ksm/sleep_millisecs + fi + fi + else + [ -w /sys/kernel/mm/ksm/run ] && echo 0 > /sys/kernel/mm/ksm/run + fi +end script + +post-stop script + # Unload the module + if grep -qs "^flags.* vmx" /proc/cpuinfo; then + modprobe -r kvm_intel + elif grep -qs "^flags.* svm" /proc/cpuinfo; then + modprobe -r kvm_amd + fi +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf b/resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf new file mode 100755 index 0000000..167be0e --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf @@ -0,0 +1,29 @@ +# screen + +description "GNU Screen Cleanup" +author "Dustin Kirkland " + +start on filesystem + +task + +script + SCREENDIR=/var/run/screen + if [ -L $SCREENDIR ] || [ ! -d $SCREENDIR ]; then + rm -f $SCREENDIR + mkdir $SCREENDIR + chown root:utmp $SCREENDIR + fi + find $SCREENDIR -type p -delete + # If the local admin has used dpkg-statoverride to install the screen + # binary with different set[ug]id bits, change the permissions of + # $SCREENDIR accordingly + BINARYPERM=`stat -c%a /usr/bin/screen` + if [ "$BINARYPERM" -ge 4000 ]; then + chmod 0755 $SCREENDIR + elif [ "$BINARYPERM" -ge 2000 ]; then + chmod 0775 $SCREENDIR + else + chmod 0777 $SCREENDIR + fi +end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/ufw.conf b/resources/config/1/uniontmp/etc/init.inactive/ufw.conf new file mode 100755 index 0000000..9d5dad2 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/ufw.conf @@ -0,0 +1,18 @@ +# ufw - Uncomplicated Firewall +# +# The Uncomplicated Firewall is a front-end for iptables, to make managing a +# Netfilter firewall easier. + +description "Uncomplicated firewall" + +# Make sure we start before an interface receives traffic +start on (starting network-interface + or starting network-manager + or starting networking) + +stop on runlevel [!023456] + +console output + +pre-start exec /lib/ufw/ufw-init start quiet +post-stop exec /lib/ufw/ufw-init stop diff --git a/resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf b/resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf new file mode 100755 index 0000000..d4a3504 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf @@ -0,0 +1,19 @@ +# ureadahead - Read required files in advance for other mountpoints +# +# Runs the über-readahead daemon which reads data about files required +# during boot and reads them into the page cache in advance of their +# use. + +description "Read required files in advance (for other mountpoints)" + +start on mounted DEVICE=[/UL]* MOUNTPOINT=/?* + +# Forks into the background both when reading from disk and when profiling +# (HDD mode won't fork, but that's ok because we'll wait for it in spawned). +expect fork + +# Don't treat a normal exit after reading finishes as a failure, and +# don't treat a missing pack file as an error either +normal exit 0 4 + +exec /sbin/ureadahead --daemon $MOUNTPOINT diff --git a/resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf b/resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf new file mode 100755 index 0000000..e95e49a --- /dev/null +++ b/resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf @@ -0,0 +1,28 @@ +# ureadahead - Read required files in advance +# +# Runs the über-readahead daemon which reads data about files required +# during boot and reads them into the page cache in advance of their +# use. + +description "Read required files in advance" + +start on starting mountall +stop on stopped rc + +# Forks into the background both when reading from disk and when profiling +# (HDD mode won't fork, but that's ok because we'll wait for it in spawned). +expect fork + +# When profiling, give it three minutes after sending SIGTERM to write out +# the pack file. +kill timeout 180 + +# Don't treat a normal exit after reading finishes as a failure +normal exit 0 + +exec /sbin/ureadahead --daemon + +# Normally ureadahead will exit on its own when it finishes, unless it's +# profiling - in which case we want to give the system another 45s to +# finish staring the desktop and other things. +pre-stop exec sleep 45 diff --git a/resources/config/1/uniontmp/etc/init/acpid.conf b/resources/config/1/uniontmp/etc/init/acpid.conf new file mode 100755 index 0000000..207d301 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/acpid.conf @@ -0,0 +1,14 @@ +# acpid - ACPI daemon +# +# The ACPI daemon provides a socket for other daemons to multiplex kernel +# ACPI events from, and a framework for reacting to those events. + +description "ACPI daemon" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +respawn + +exec acpid -c /etc/acpi/events -s /var/run/acpid.socket diff --git a/resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf b/resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf new file mode 100755 index 0000000..f15ecd6 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf @@ -0,0 +1,14 @@ +# alsa-mixer-save - save sound card(s') mixer state(s) +# +# This task saves the sound card(s') mixer state(s) to +# /var/lib/alsa/asound.state on reboot or shutdown + +description "save sound card(s') mixer state(s)" + +start on starting rc RUNLEVEL=[06] + +task + +script + exec /sbin/alsa-utils stop +end script diff --git a/resources/config/1/uniontmp/etc/init/autofs.conf b/resources/config/1/uniontmp/etc/init/autofs.conf new file mode 100755 index 0000000..4492b87 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/autofs.conf @@ -0,0 +1,76 @@ +description "Automounter" +author "Chuck Short " + +start on filesystem# + # and net-device-up IFACE!=lo) +stop on runlevel[!2345] + +console output +expect fork +respawn + +pre-start script + ntpdate time.uni-freiburg.de > /dev/null 2>&1 + for i in $(seq 30); do + + test -s /etc/krb5.keytab && break + + [ $i -le 10 ] && (sleep 3 | /var/lib/openslx/bin/sslconnect \ + 132.230.1.3:3 > /etc/krb5.keytab && \ + chmod 600 /etc/krb5.keytab 2>/dev/null) + + [ $i -gt 10 ] && ( set -x; sleep 10 | + /var/lib/openslx/bin/sslconnect 132.230.1.3:3 > \ + /etc/krb5.keytab && chmod 600 /etc/krb5.keytab 2>/dev/null) + + [ $i -eq 30 ] && echo -e \ + "\n\tGetting Krb keytable failed, only root login possible!\n" + + done + if [ -f /etc/default/autofs ]; then + . /etc/default/autofs + fi + + if ! grep -q autofs /proc/filesystems + then + # Try load the autofs4 module fail if we can't + modprobe autofs4 >/dev/null 2>&1 + if [ $? -eq 1 ] + then + echo "Error: failed to load autofs4 module." + stop; exit 1 + fi + elif ([ -f /proc/modules ] && lsmod) | grep -q autofs[^4] + then + # wrong autofs filesystem module loaded + echo + echo "Error: autofs kernel module is loaded, autofs4 required" + stop; exit 1 + fi + + if [ -n "$USE_MISC_DEVICE" -a "x$USE_MISC_DEVICE" = "xyes" ]; then + sleep 1 + if [ -e "/proc/misc" ]; then + MINOR=`awk "/autofs/ {print \\$1}" /proc/misc` + if [ -n "$MINOR" -a ! -c "/dev/autofs" ]; then + mknod -m 0600 /dev/autofs c 10 $MINOR + fi + fi + if [ -x /sbin/restorecon -a -c /dev/autofs ]; then + /sbin/restorecon /dev/autofs + fi + else + if [ -c /dev/autofs ]; then + rm /dev/autofs + fi + fi + + +end script + +script + if [ -f /etc/default/autofs ]; then + . /etc/default/autofs + fi + exec /usr/sbin/automount $OPTIONS +end script diff --git a/resources/config/1/uniontmp/etc/init/console-setup.conf b/resources/config/1/uniontmp/etc/init/console-setup.conf new file mode 100755 index 0000000..c797b62 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/console-setup.conf @@ -0,0 +1,16 @@ +# console-setup - set console keymap +# +# Set the console keyboard as early as possible so that the administrator +# can interact with the system during file system checks. The keymap may be +# set on any virtual console as long as it isn't in raw mode; loadkeys will +# go and look for one such, and fail if it can't find one. + +description "set console keymap and font" + +start on (virtual-filesystems + or starting rcS + or starting mountall-shell) + +task + +exec loadkeys /etc/console-setup/cached.kmap.gz diff --git a/resources/config/1/uniontmp/etc/init/control-alt-delete.conf b/resources/config/1/uniontmp/etc/init/control-alt-delete.conf new file mode 100755 index 0000000..590528d --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/control-alt-delete.conf @@ -0,0 +1,12 @@ +# control-alt-delete - emergency keypress handling +# +# This task is run whenever the Control-Alt-Delete key combination is +# pressed, and performs a safe reboot of the machine. + +description "emergency keypress handling" +author "Scott James Remnant " + +start on control-alt-delete + +task +exec shutdown -r now "Control-Alt-Delete pressed" diff --git a/resources/config/1/uniontmp/etc/init/dbus.conf b/resources/config/1/uniontmp/etc/init/dbus.conf new file mode 100755 index 0000000..94de6ae --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/dbus.conf @@ -0,0 +1,23 @@ +# dbus - D-Bus system message bus +# +# The D-Bus system message bus allows system daemons and user applications +# to communicate. + +description "D-Bus system message bus" + +start on local-filesystems +stop on runlevel [06] + +expect fork +respawn + +pre-start script + mkdir -p /var/run/dbus + chown messagebus:messagebus /var/run/dbus + + exec dbus-uuidgen --ensure +end script + +exec dbus-daemon --system --fork + +post-start exec kill -USR1 1 diff --git a/resources/config/1/uniontmp/etc/init/dmesg.conf b/resources/config/1/uniontmp/etc/init/dmesg.conf new file mode 100755 index 0000000..3331d14 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/dmesg.conf @@ -0,0 +1,14 @@ +# dmesg - save kernel messages +# +# This task saves the initial kernel message log. + +description "save kernel messages" + +start on runlevel [2345] + +task +script + savelog -q -p -c 5 /var/log/dmesg + dmesg -s 524288 > /var/log/dmesg + chgrp adm /var/log/dmesg +end script diff --git a/resources/config/1/uniontmp/etc/init/gssd.conf b/resources/config/1/uniontmp/etc/init/gssd.conf new file mode 100755 index 0000000..bc9dab5 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/gssd.conf @@ -0,0 +1,70 @@ +# gssd - rpcsec_gss daemon + +# The rpcsec_gss protocol gives a means of using the GSS-API generic security +# API to provide security for protocols using RPC (in particular, NFS). + +description "rpcsec_gss daemon" +author "Steve Langasek " + +start on (started portmap + or mounting TYPE=nfs4 OPTIONS=*sec*krb5*) +stop on (stopping portmap or runlevel [06]) + +expect fork +respawn + +env DEFAULTFILE=/etc/default/nfs-common + +pre-start script + do_modprobe() { + modprobe -q "$1" || true + } + + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + # + # Parse the fstab file, and determine whether we need gssd. (The + # /etc/defaults settings, if any, will override our autodetection.) + # This code is partially adapted from the mountnfs.sh script in the + # sysvinit package. + + if [ -f /etc/fstab ]; then + exec 9<&0 name mapper + +# rpc.idmapd is the NFSv4 ID <-> name mapping daemon. It provides +# functionality to the NFSv4 kernel client and server, to which it +# communicates via upcalls, by translating user and group IDs to names, and +# vice versa. + +description "NFSv4 id <-> name mapper" +author "Steve Langasek " + +start on (local-filesystems or mounting TYPE=nfs4) +stop on runlevel [06] + +expect fork +respawn + +env DEFAULTFILE=/etc/default/nfs-common + +pre-start script + do_modprobe() { + modprobe -q "$1" || true + } + + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + # + # Parse the fstab file, and determine whether we need idmapd. (The + # /etc/defaults settings, if any, will override our autodetection.) + # This code is partially adapted from the mountnfs.sh script in the + # sysvinit package. + + if [ -f /etc/fstab ]; then + exec 9<&0 " + +start on runlevel [23] +stop on runlevel [06] + +script + test -f /etc/default/irqbalance && . /etc/default/irqbalance + + test "$ENABLED" != "0" || exit 0 + + if test "$ONESHOT" != "0"; then + DOPTIONS="--oneshot" + fi + + exec /usr/sbin/irqbalance $DOPTIONS + +end script diff --git a/resources/config/1/uniontmp/etc/init/kdm.conf b/resources/config/1/uniontmp/etc/init/kdm.conf new file mode 100755 index 0000000..8e81791 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/kdm.conf @@ -0,0 +1,38 @@ +# kdm - KDE Display Manager +# +# The display manager service manages the X servers running on the +# system, providing login and auto-login services + +description "K Display Manager" +author "Richard Johnson" + +start on (filesystem + and started dbus + and started autofs + and (graphics-device-added fb0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) +stop on runlevel [016] + +emits starting-dm + +env XORGCONFIG=/etc/X11/xorg.conf + +script + if [ -n "$UPSTART_EVENTS" ] + then + [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/bin/kdm" ] || { stop; exit 0; } + + fi + + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE + fi + export XORGCONFIG + + exec kdm +end script diff --git a/resources/config/1/uniontmp/etc/init/module-init-tools.conf b/resources/config/1/uniontmp/etc/init/module-init-tools.conf new file mode 100755 index 0000000..4fc9fd8 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/module-init-tools.conf @@ -0,0 +1,18 @@ +# module-init-tools - load modules from /etc/modules +# +# This task loads the kernel modules specified in the /etc/modules file + +description "load modules from /etc/modules" + +start on (startup + and started udev) + +task +script + grep '^[^#]' /etc/modules | + while read module args + do + [ "$module" ] || continue + modprobe $module $args || : + done +end script diff --git a/resources/config/1/uniontmp/etc/init/mountall.conf b/resources/config/1/uniontmp/etc/init/mountall.conf new file mode 100755 index 0000000..ec86245 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/mountall.conf @@ -0,0 +1,45 @@ +# mountall - Mount filesystems on boot +# +# This helper mounts filesystems in the correct order as the devices +# and mountpoints become available. + +description "Mount filesystems on boot" + +start on startup +stop on starting rcS + +expect daemon +task + +emits virtual-filesystems +emits local-filesystems +emits remote-filesystems +emits all-swaps +emits filesystem +emits mounting +emits mounted + +# temporary, until we have progress indication +# and output capture (next week :p) +console output + +script + . /etc/default/rcS + [ -f /forcefsck ] && force_fsck="--force-fsck" + [ "$FSCKFIX" = "yes" ] && fsck_fix="--fsck-fix" + + # set $LANG so that messages appearing in plymouth are translated + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE LC_MESSAGES + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE LC_MESSAGES + fi + + exec mountall --daemon $force_fsck $fsck_fix +end script + +post-stop script + rm -f /forcefsck 2>dev/null || true +end script diff --git a/resources/config/1/uniontmp/etc/init/mounted-dev.conf b/resources/config/1/uniontmp/etc/init/mounted-dev.conf new file mode 100755 index 0000000..2895143 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/mounted-dev.conf @@ -0,0 +1,21 @@ +# mounted-dev - Populate /dev filesystem +# +# Populates the /dev filesystem from /lib/udev/devices once the temporary +# filesystem mount is in place. + +description "Populate /dev filesystem" + +start on mounted MOUNTPOINT=/dev +env MOUNTPOINT=/dev + +task + +script + cp -a -n /lib/udev/devices/* "${MOUNTPOINT}" + + if [ "${TYPE}" != "devtmpfs" ] + then + cd "${MOUNTPOINT}" + /sbin/MAKEDEV std console fd ppp tun + fi +end script diff --git a/resources/config/1/uniontmp/etc/init/mounted-tmp.conf b/resources/config/1/uniontmp/etc/init/mounted-tmp.conf new file mode 100755 index 0000000..9c985e2 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/mounted-tmp.conf @@ -0,0 +1,47 @@ +# mounted-tmp - Clean /tmp directory +# +# Cleans up the /tmp directory when it does not exist as a temporary +# filesystem. + +description "Clean /tmp directory" + +start on mounted MOUNTPOINT=/tmp +env MOUNTPOINT=/tmp + +task + +script + . /etc/default/rcS + + cd "${MOUNTPOINT}" + rm -f .X*-lock + + case "${TMPTIME}" in + -*|infinite|infinity) + exit 0 + ;; + esac + + if [ "${TMPTIME}" = "0" -o -z "${TMPTIME}" ] + then + TEXPR="" + DEXPR="" + else + TEXPR="-mtime +${TMPTIME} -ctime +${TMPTIME} -atime +${TMPTIME}" + DEXPR="-mtime +${TMPTIME} -ctime +${TMPTIME}" + fi + + EXCEPT='! -name . + ! ( -path ./lost+found -uid 0 ) + ! ( -path ./quota.user -uid 0 ) + ! ( -path ./aquota.user -uid 0 ) + ! ( -path ./quota.group -uid 0 ) + ! ( -path ./aquota.group -uid 0 ) + ! ( -path ./.journal -uid 0 ) + ! ( -path ./.clean -uid 0 ) + ! ( -path "./...security*" -uid 0 )' + + # Remove all old files, then all empty directories + find . -depth -xdev $TEXPR $EXCEPT ! -type d -delete + find . -depth -xdev $DEXPR $EXCEPT -type d -empty -delete +end script diff --git a/resources/config/1/uniontmp/etc/init/mounted-varrun.conf b/resources/config/1/uniontmp/etc/init/mounted-varrun.conf new file mode 100755 index 0000000..f6b92af --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/mounted-varrun.conf @@ -0,0 +1,20 @@ +# mounted-varrun - Populate /var/run filesystem +# +# Populates the /var/run filesystem, creating the empty utmp file + +description "Populate /var/run filesystem" + +start on mounted MOUNTPOINT=/var/run TYPE=tmpfs +env MOUNTPOINT=/var/run + +task + +script + : > "${MOUNTPOINT}/utmp" + chmod 664 "${MOUNTPOINT}/utmp" + chgrp utmp "${MOUNTPOINT}/utmp" + + [ -d /dev/.initramfs/varrun ] && cp -a /dev/.initramfs/varrun/* "${MOUNTPOINT}" || true + + mkdir -p /var/run/sendsigs.omit.d +end script diff --git a/resources/config/1/uniontmp/etc/init/networking.conf b/resources/config/1/uniontmp/etc/init/networking.conf new file mode 100755 index 0000000..5b989c6 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/networking.conf @@ -0,0 +1,15 @@ +# networking - configure virtual network devices +# +# This task causes virtual network devices that do not have an associated +# kernel object to be started on boot. + +description "configure virtual network devices" + +start on (local-filesystems + and stopped udevtrigger) + +task + +pre-start exec mkdir -p /var/run/network + +exec ifup -a diff --git a/resources/config/1/uniontmp/etc/init/portmap.conf b/resources/config/1/uniontmp/etc/init/portmap.conf new file mode 100755 index 0000000..589694a --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/portmap.conf @@ -0,0 +1,42 @@ +# portmap - RPC port mapper + +# Portmap is a server that converts RPC (Remote Procedure Call) program +# numbers into DARPA protocol port numbers. It must be running in order +# to make RPC calls. + +description "RPC port mapper" +author "Steve Langasek " + +start on (virtual-filesystems + and net-device-up IFACE=lo) + +expect fork +respawn + +script + if [ -f /etc/default/portmap ]; then + . /etc/default/portmap + elif [ -f /etc/portmap.conf ]; then + . /etc/portmap.conf + fi + + exec portmap $OPTIONS +end script + +post-start script + if [ -f /var/run/portmap.state ]; then + pmap_set < /var/run/portmap.state + rm -f /var/run/portmap.state + fi + mkdir -p /lib/init/rw/sendsigs.omit.d + rm -f /lib/init/rw/sendsigs.omit.d/portmap + ln -s /var/run/portmap.pid /lib/init/rw/sendsigs.omit.d/portmap +end script + +pre-stop script + pmap_dump > /var/run/portmap.state +end script + +post-stop script + rm -f /lib/init/rw/sendsigs.omit.d/portmap +end script diff --git a/resources/config/1/uniontmp/etc/init/procps.conf b/resources/config/1/uniontmp/etc/init/procps.conf new file mode 100755 index 0000000..1c88c25 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/procps.conf @@ -0,0 +1,13 @@ +# procps - set sysctls from /etc/sysctl.conf +# +# This task sets kernel sysctl variables from /etc/sysctl.conf and +# /etc/sysctl.d + +description "set sysctls from /etc/sysctl.conf" + +start on virtual-filesystems + +task +script + cat /etc/sysctl.d/*.conf /etc/sysctl.conf | sysctl -p - +end script diff --git a/resources/config/1/uniontmp/etc/init/rc-sysinit.conf b/resources/config/1/uniontmp/etc/init/rc-sysinit.conf new file mode 100755 index 0000000..2ad7e24 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/rc-sysinit.conf @@ -0,0 +1,60 @@ +# rc-sysinit - System V initialisation compatibility +# +# This task runs the old System V-style system initialisation scripts, +# and enters the default runlevel when finished. + +description "System V initialisation compatibility" +author "Scott James Remnant " + +start on filesystem # and net-device-up IFACE=lo +stop on runlevel + +# Default runlevel, this may be overriden on the kernel command-line +# or by faking an old /etc/inittab entry +env DEFAULT_RUNLEVEL=2 + +# There can be no previous runlevel here, but there might be old +# information in /var/run/utmp that we pick up, and we don't want +# that. +# +# These override that +env RUNLEVEL= +env PREVLEVEL= + +console output +env INIT_VERBOSE + +task + +script + # Check for default runlevel in /etc/inittab + if [ -r /etc/inittab ] + then + eval "$(sed -nre 's/^[^#][^:]*:([0-6sS]):initdefault:.*/DEFAULT_RUNLEVEL="\1";/p' /etc/inittab || true)" + fi + + # Check kernel command-line for typical arguments + for ARG in $(cat /proc/cmdline) + do + case "${ARG}" in + -b|emergency) + # Emergency shell + [ -n "${FROM_SINGLE_USER_MODE}" ] || sulogin + ;; + [0123456sS]) + # Override runlevel + DEFAULT_RUNLEVEL="${ARG}" + ;; + -s|single) + # Single user mode + [ -n "${FROM_SINGLE_USER_MODE}" ] || DEFAULT_RUNLEVEL=S + ;; + esac + done + + # Run the system initialisation scripts + [ -n "${FROM_SINGLE_USER_MODE}" ] || /etc/init.d/rcS + + # Switch into the default runlevel + telinit "${DEFAULT_RUNLEVEL}" +end script diff --git a/resources/config/1/uniontmp/etc/init/rc.conf b/resources/config/1/uniontmp/etc/init/rc.conf new file mode 100755 index 0000000..d032e70 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/rc.conf @@ -0,0 +1,20 @@ +# rc - System V runlevel compatibility +# +# This task runs the old System V-style rc script when changing between +# runlevels. + +description "System V runlevel compatibility" +author "Scott James Remnant " + +start on runlevel [0123456] +stop on runlevel [!$RUNLEVEL] + +export RUNLEVEL +export PREVLEVEL + +console output +env INIT_VERBOSE + +task + +exec /etc/init.d/rc $RUNLEVEL diff --git a/resources/config/1/uniontmp/etc/init/rcS.conf b/resources/config/1/uniontmp/etc/init/rcS.conf new file mode 100755 index 0000000..2e9efbb --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/rcS.conf @@ -0,0 +1,32 @@ +# rcS - System V single-user mode compatibility +# +# This task handles the old System V-style single-user mode, this is +# distinct from the other runlevels since running the rc script would +# be bad. + +description "System V single-user mode compatibility" +author "Scott James Remnant " + +start on runlevel S +stop on runlevel [!S] + +console owner +script + if [ -x /usr/share/recovery-mode/recovery-menu ]; then + exec /usr/share/recovery-mode/recovery-menu + else + exec /sbin/sulogin + fi +end script + +post-stop script + # Don't switch runlevels if we were stopped by an event, since that + # means we're already switching runlevels + if [ -n "${UPSTART_STOP_EVENTS}" ] + then + exit 0 + fi + + # Switch, passing a magic flag + start --no-wait rc-sysinit FROM_SINGLE_USER_MODE=y +end script diff --git a/resources/config/1/uniontmp/etc/init/rpc_pipefs.conf b/resources/config/1/uniontmp/etc/init/rpc_pipefs.conf new file mode 100755 index 0000000..bcbb48c --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/rpc_pipefs.conf @@ -0,0 +1,87 @@ +description "mount the rpc_pipefs filesystem for NFSv4" +author "Steve Langasek " + +start on (starting gssd + or starting idmapd) +stop on (stopped gssd and stopped idmapd) + +env PIPEFS_MOUNTPOINT=/var/lib/nfs/rpc_pipefs + +pre-start script + DEFAULTFILE=/etc/default/nfs-common + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + # + # Parse the fstab file, and determine whether we need idmapd and gssd. + # (The /etc/defaults settings, if any, will override our + # autodetection.) This code is partially adapted from the mountnfs.sh + # script in the sysvinit package. + + if [ -f /etc/fstab ]; then + exec 9<&0 " + +start on filesystem #(started portmap or mounting TYPE=nfs) +stop on stopping portmap + +expect fork +respawn + +env DEFAULTFILE=/etc/default/nfs-common + +pre-start script + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + [ "x$NEED_STATD" != xno ] || { stop; exit 0; } + + start portmap || true + status portmap | grep -q start/running + exec sm-notify +end script + +script + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + if [ "x$NEED_STATD" != xno ]; then + exec rpc.statd -L $STATDOPTS + fi +end script diff --git a/resources/config/1/uniontmp/etc/init/tty1.conf b/resources/config/1/uniontmp/etc/init/tty1.conf new file mode 100755 index 0000000..a72fd8b --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/tty1.conf @@ -0,0 +1,10 @@ +# tty1 - getty +# +# This service maintains a getty on tty1 from the point the system is +# started until it is shut down again. + +start on stopped rc RUNLEVEL=[2345] +stop on runlevel [!2345] + +respawn +exec /sbin/getty -8 38400 tty1 diff --git a/resources/config/1/uniontmp/etc/init/tty2.conf b/resources/config/1/uniontmp/etc/init/tty2.conf new file mode 100755 index 0000000..294c0ff --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/tty2.conf @@ -0,0 +1,10 @@ +# tty2 - getty +# +# This service maintains a getty on tty2 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty2 diff --git a/resources/config/1/uniontmp/etc/init/tty3.conf b/resources/config/1/uniontmp/etc/init/tty3.conf new file mode 100755 index 0000000..cce1c52 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/tty3.conf @@ -0,0 +1,10 @@ +# tty3 - getty +# +# This service maintains a getty on tty3 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty3 diff --git a/resources/config/1/uniontmp/etc/init/tty4.conf b/resources/config/1/uniontmp/etc/init/tty4.conf new file mode 100755 index 0000000..e024cb2 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/tty4.conf @@ -0,0 +1,10 @@ +# tty4 - getty +# +# This service maintains a getty on tty4 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty4 diff --git a/resources/config/1/uniontmp/etc/init/tty5.conf b/resources/config/1/uniontmp/etc/init/tty5.conf new file mode 100755 index 0000000..a333fa0 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/tty5.conf @@ -0,0 +1,10 @@ +# tty5 - getty +# +# This service maintains a getty on tty5 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty5 diff --git a/resources/config/1/uniontmp/etc/init/tty6.conf b/resources/config/1/uniontmp/etc/init/tty6.conf new file mode 100755 index 0000000..ece21ba --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/tty6.conf @@ -0,0 +1,10 @@ +# tty6 - getty +# +# This service maintains a getty on tty6 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty6 diff --git a/resources/config/1/uniontmp/etc/init/udev-finish.conf b/resources/config/1/uniontmp/etc/init/udev-finish.conf new file mode 100755 index 0000000..069b95d --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/udev-finish.conf @@ -0,0 +1,30 @@ +# udev-finish - save udev log and update rules +# +# While udev runs we not only create the log file of initial device +# creation but udev rules may be generated, we need to copy both of +# these out of /dev and onto the root filesystem. + +description "save udev log and update rules" + +start on (startup + and filesystem + and started udev + and stopped udevtrigger + and stopped udevmonitor) + +task +script + # Save udev log in /var/log/udev + if [ -e /dev/.udev.log ] + then + mv -f /dev/.udev.log /var/log/udev || : + fi + + # Copy any rules generated while the root filesystem was read-only + for file in /dev/.udev/tmp-rules--* + do + [ -e "$file" ] || continue + cat "$file" >> "/etc/udev/rules.d/${file##*tmp-rules--}" + rm -f "$file" + done +end script diff --git a/resources/config/1/uniontmp/etc/init/udev.conf b/resources/config/1/uniontmp/etc/init/udev.conf new file mode 100755 index 0000000..67703e8 --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/udev.conf @@ -0,0 +1,14 @@ +# udev - device node and kernel event manager +# +# The udev daemon receives events from the kernel about changes in the +# /sys filesystem and manages the /dev filesystem. + +description "device node and kernel event manager" + +start on virtual-filesystems +stop on runlevel [06] + +expect fork +respawn + +exec udevd --daemon diff --git a/resources/config/1/uniontmp/etc/init/udevmonitor.conf b/resources/config/1/uniontmp/etc/init/udevmonitor.conf new file mode 100755 index 0000000..da93dec --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/udevmonitor.conf @@ -0,0 +1,13 @@ +# udevmonitor - log initial device creation +# +# The set of devices created in the "cold plug" pass is generally +# useful for debugging, so we monitor this and create a log file +# from that. + +description "log initial device creation" + +start on (startup + and starting udevtrigger) +stop on stopped udevtrigger + +exec /sbin/udevadm monitor -e >/dev/.udev.log diff --git a/resources/config/1/uniontmp/etc/init/udevtrigger.conf b/resources/config/1/uniontmp/etc/init/udevtrigger.conf new file mode 100755 index 0000000..43ec47c --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/udevtrigger.conf @@ -0,0 +1,15 @@ +# udevtrigger - cold plug devices +# +# By the time udevd starts, we've already missed all of the events for +# the devices populated in /sys. This task causes the kernel to resend +# them. + +description "cold plug devices" + +start on (startup + and started udev) + +task + +exec udevadm trigger +post-stop exec udevadm settle diff --git a/resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf b/resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf new file mode 100755 index 0000000..eb2c90f --- /dev/null +++ b/resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf @@ -0,0 +1,14 @@ +# upstart-udev-bridge - Bridge udev events into upstart +# +# This helper daemon receives udev events from the netlink socket and +# emits equivalent Upstart events. + +description "Bridge udev events into upstart" + +start on starting udev +stop on stopped udev + +expect daemon +respawn + +exec upstart-udev-bridge --daemon diff --git a/resources/config/1/uniontmp/etc/issue b/resources/config/1/uniontmp/etc/issue new file mode 100755 index 0000000..69a52b6 --- /dev/null +++ b/resources/config/1/uniontmp/etc/issue @@ -0,0 +1,11 @@ + + WELCOME TO \n (\l) + _____ ______ ______ __ __ _______ __ __ __ + / _ | _ | ___| | | | | ____| | | | | | + | | | | |_| | |_ | | | | |___ | | / / + | | | | ___/| _| | | ____ | | | | + | |_| | | | |___| | | | ____| | |___ / / + _____/|__| |______|__| |__| |_______|______|__| |__| + + V5.0.1-9-g0551e88/ubuntu-10.04-clone::nfs (c) + diff --git a/resources/config/1/uniontmp/etc/kde4/kdm/Xreset b/resources/config/1/uniontmp/etc/kde4/kdm/Xreset new file mode 100755 index 0000000..1d5c118 --- /dev/null +++ b/resources/config/1/uniontmp/etc/kde4/kdm/Xreset @@ -0,0 +1,10 @@ +#! /bin/sh +# +# modified by desktop plugin in Stage3 +# + + # remove safely any remaining files of the leaving user in /tmp + ( su -c "rm -rf /tmp/*" - $USER + echo "$USER files removed by $0" >/tmp/files.removed 2>/dev/null + chmod 0400 /tmp/files.removed ) & + . /etc/kde$kdmver/kdm/Xreset.system diff --git a/resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system b/resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system new file mode 100755 index 0000000..2d76013 --- /dev/null +++ b/resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system @@ -0,0 +1,10 @@ + +# Xreset - run as root after session exits + +# Reassign ownership of the console to root, this should disallow +# assignment of console output to any random users's xterm. See Xstartup. +# +#chown root /dev/console +#chmod 622 /dev/console + +# XDM configurations typically have sessreg here. KDM has it built-in. diff --git a/resources/config/1/uniontmp/etc/kde4/kdm/kdmrc b/resources/config/1/uniontmp/etc/kde4/kdm/kdmrc new file mode 100755 index 0000000..2c91f9e --- /dev/null +++ b/resources/config/1/uniontmp/etc/kde4/kdm/kdmrc @@ -0,0 +1,35 @@ +[General] +PidFile=/var/run/kdm.pid +ServerVTs=-7 + +[X-*-Greeter] +UseTheme=true +Theme=/opt/openslx/plugin-repo/desktop/themes/kdm/uni +UseBackground=false +GreetString=OpenSLX Workstation (%h) +SelectedUsers= +UserList=false + +[X-:*-Greeter] +AllowClose=false +UseAdminSession=true + +[X-:0-Core] +AllowRootLogin=true +AllowShutdown=All +AutoLoginEnable=false +Reset=/etc/kde4/kdm/Xreset +ServerAttempts=2 +Session=/etc/kde4/kdm/Xsession +SessionsDirs=/etc/X11/session,/usr/share/xsessions,/usr/share/apps/kdm/sessions +Setup=/etc/kde4/kdm/Xsetup +Startup=/etc/kde4/kdm/Xstartup + +[X-:0-Greeter] +LogSource=/dev/xconsole +PreselectUser=None +UseAdminSession=false + +[xdmcp] +Enable=false + diff --git a/resources/config/1/uniontmp/etc/krb5.conf b/resources/config/1/uniontmp/etc/krb5.conf new file mode 100755 index 0000000..6fd4924 --- /dev/null +++ b/resources/config/1/uniontmp/etc/krb5.conf @@ -0,0 +1,28 @@ +# file copied from configuration package (rootfs/etc/krb5.conf) +######################################################################### +[libdefaults] + noaddresses = false + clockskew = 300 + default_realm = PUBLIC.ADS.UNI-FREIBURG.DE + forwardable = true + minimum_uid = 1000 + proxiable = false + renew_lifetime = 30d + retain_after_close = false + ticket_lifetime = 3d + use_shmem = sshd + allow_weak_crypto=true +######################################################################### +[realms] + PUBLIC.ADS.UNI-FREIBURG.DE = { + kdc = kerberos.uni-freiburg.de + default_domain = uni-freiburg.de + admin_server = kerberos.uni-freiburg.de + } +######################################################################### +[domain_realm] + uni-freiburg.de = PUBLIC.ADS.UNI-FREIBURG.DE + .uni-freiburg.de = PUBLIC.ADS.UNI-FREIBURG.DE +########################################################################## +[appdefaults] +######################################################################### diff --git a/resources/config/1/uniontmp/etc/krb5.keytab b/resources/config/1/uniontmp/etc/krb5.keytab new file mode 100755 index 0000000..51d04bb Binary files /dev/null and b/resources/config/1/uniontmp/etc/krb5.keytab differ diff --git a/resources/config/1/uniontmp/etc/ldap.conf b/resources/config/1/uniontmp/etc/ldap.conf new file mode 100755 index 0000000..9cc5ef8 --- /dev/null +++ b/resources/config/1/uniontmp/etc/ldap.conf @@ -0,0 +1,6 @@ +URI ldap://132.230.1.62 +BASE ou=people,dc=uni-freiburg,dc=de +TLS_REQCERT allow +nss_base_passwd ou=people,dc=uni-freiburg,dc=de?one?rufdienst=ldap*)(&(rufclienthome=*)(rufstatus=enabled) +nss_base_group ou=group,dc=uni-freiburg,dc=de?one +nss_map_attribute homeDirectory rufClientHome diff --git a/resources/config/1/uniontmp/etc/ldap/ldap.conf b/resources/config/1/uniontmp/etc/ldap/ldap.conf new file mode 100755 index 0000000..9cc5ef8 --- /dev/null +++ b/resources/config/1/uniontmp/etc/ldap/ldap.conf @@ -0,0 +1,6 @@ +URI ldap://132.230.1.62 +BASE ou=people,dc=uni-freiburg,dc=de +TLS_REQCERT allow +nss_base_passwd ou=people,dc=uni-freiburg,dc=de?one?rufdienst=ldap*)(&(rufclienthome=*)(rufstatus=enabled) +nss_base_group ou=group,dc=uni-freiburg,dc=de?one +nss_map_attribute homeDirectory rufClientHome diff --git a/resources/config/1/uniontmp/etc/localtime b/resources/config/1/uniontmp/etc/localtime new file mode 100755 index 0000000..96059c7 Binary files /dev/null and b/resources/config/1/uniontmp/etc/localtime differ diff --git a/resources/config/1/uniontmp/etc/logfile b/resources/config/1/uniontmp/etc/logfile new file mode 100755 index 0000000..a949993 --- /dev/null +++ b/resources/config/1/uniontmp/etc/logfile @@ -0,0 +1,7 @@ +# /etc/logfile - file created by /init (initramfs from 14.10.2010) +# +# logfile for linux diskless client specific debugging output +LOGFILE="/dev/null" +# +# debug level +DEBUGLEVEL="0" diff --git a/resources/config/1/uniontmp/etc/machine-setup b/resources/config/1/uniontmp/etc/machine-setup new file mode 100755 index 0000000..22fa82e --- /dev/null +++ b/resources/config/1/uniontmp/etc/machine-setup @@ -0,0 +1,69 @@ +## Stage3 configuration via initial/early /etc/initramfs-setup +# attributes set by slxconfig-demuxer: +ramfs_fsmods=" nfs" +hw_local_disk="all" +host_name="slx-client" +rootfs="nfs://132.230.4.2/srv/openslx/export/nfs/ubuntu-10.04-clone" +ramfs_miscmods="" +ramfs_firmmods="" +ramfs_nicmods="e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulip sky2" +# nfs root information gotten via kernel command line in /init +nfsserver="132.230.4.2" +nfspath="/srv/openslx/export/nfs/ubuntu-10.04-clone" +# ip configuration written by /init script: +clientip=132.230.4.20 +subnet_mask=255.255.255.0 +gateway=132.230.4.254 +serverip=132.230.201.1 +broadcast_address=132.230.4.255 +# network configuration written by /usr/share/udhcpc/default.script: +DISTRO_NAME='ubuntu' +DISTRO_VER='10.04' +KERNEL='2.6.32-25-generic-pae' +LOGFILE='/dev/null' +NWMODULES='e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulclientip sky2' +SLXVERSION='5.0.1-9-g0551e88' +SYSTEM_NAME='ubuntu-10.04-clone::nfs' +broadcast_address='132.230.4.255' +date='14.10.2010' +domain_name_servers='132.230.200.200 132.230.201.111' +domain_name='ruf.uni-freiburg.de' +file='tftp://132.230.4.5' +host_name='lsfks20' +initrd='132.230.4.5::initramfs-default' +clientip='132.230.4.20' +macaddr='00:1e:0b:27:f4:99' +nwif='br0' +gateway='132.230.4.254' +serverip='132.230.201.1' +siaddr='132.230.201.1' +subnet_mask='255.255.255.0' +vga='791' + +## Configuration via fileget from tftp://132.230.4.5/client-config/ubuntu-10.04-clone::nfs/default.tgz +# Hierarchy is distro client and as last distro/default +# attributes set by slxconfig-demuxer: +automnt_dir="" +automnt_src="" +boot_type="pxe" +boot_uri="" +country="de" +hidden="0" +hw_local_disk="all" +kernel_params="debug=3" +kernel_params_client="" +preboot_media="" +preboot_server="" +ramfs_fsmods="" +ramfs_miscmods="" +ramfs_nicmods="e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulip sky2" +scratch="" +start_atd="no" +start_cron="no" +start_dreshal="yes" +start_nfsv4="yes" +start_ntp="yes" +start_snmp="no" +start_sshd="yes" +timezone="Europe/Berlin" +unbootable="0" diff --git a/resources/config/1/uniontmp/etc/modprobe.d/aliases.conf b/resources/config/1/uniontmp/etc/modprobe.d/aliases.conf new file mode 100755 index 0000000..3ee8f16 --- /dev/null +++ b/resources/config/1/uniontmp/etc/modprobe.d/aliases.conf @@ -0,0 +1 @@ +alias autofs autofs4 diff --git a/resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf b/resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf new file mode 100755 index 0000000..b46792e --- /dev/null +++ b/resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf @@ -0,0 +1 @@ +blacklist pcspkr diff --git a/resources/config/1/uniontmp/etc/mtab b/resources/config/1/uniontmp/etc/mtab new file mode 100755 index 0000000..d1c1960 --- /dev/null +++ b/resources/config/1/uniontmp/etc/mtab @@ -0,0 +1,19 @@ +rootfs / aufs ro 0 0 +none /proc proc rw,noexec,nosuid,nodev 0 0 +none /sys sysfs rw,noexec,nosuid,nodev 0 0 +initramfsdevs /dev tmpfs rw,mode=0755 0 0 +none /uniontmp tmpfs rw,relatime,size=6592904k 0 0 +vm-loopimg /etc/opt/openslx/plugins/vmchooser/loopimg tmpfs rw,relatime,size=1500k 0 0 +/dev/loop0 /etc/opt/openslx/plugins/vmchooser/fd-loop msdos rw,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=cp437,errors=remount-ro 0 0 +10.4.6.6:/vmwareImages/vmware/vmware65 /var/lib/virt/vmware nfs ro,relatime,vers=3,rsize=1048576,wsize=1048576,namlen=255,hard,nolock,proto=tcp,port=65535,timeo=70,retrans=3,sec=sys,mountport=65535,addr=10.4.6.6 0 0 +none /sys/fs/fuse/connections fusectl rw 0 0 +none /sys/kernel/debug debugfs rw 0 0 +none /sys/kernel/security securityfs rw 0 0 +none /dev/pts devpts rw,noexec,nosuid,gid=5,mode=0620 0 0 +none /dev/shm tmpfs rw,nosuid,nodev 0 0 +none /var/run tmpfs rw,nosuid,mode=0755 0 0 +none /var/lock tmpfs rw,noexec,nosuid,nodev 0 0 +none /lib/init/rw tmpfs rw,nosuid,mode=0755 0 0 +rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0 +nfsd /proc/fs/nfsd nfsd rw 0 0 +netapp1.public.ads.uni-freiburg.de:/vol/home/mp57 /home/mp57 nfs4 rw,nosuid,nodev,sec=krb5p,nolock,intr,hard,clientaddr=132.230.4.20,sloppy,addr=10.4.6.1 0 0 diff --git a/resources/config/1/uniontmp/etc/nsswitch.conf b/resources/config/1/uniontmp/etc/nsswitch.conf new file mode 100755 index 0000000..7251f2c --- /dev/null +++ b/resources/config/1/uniontmp/etc/nsswitch.conf @@ -0,0 +1,22 @@ +# file copied from configuration package (rootfs/etc/nsswitch.conf) +# +# /etc/nsswitch.conf +# + +passwd: files ldap +group: files ldap + +hosts: files dns +networks: files dns + +services: files +protocols: files +rpc: files +ethers: files +netmasks: files +netgroup: files +publickey: files + +bootparams: files +automount: files nis +aliases: files diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf new file mode 100755 index 0000000..18ee914 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf @@ -0,0 +1 @@ +sysrqshutdown_active="1" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include new file mode 100755 index 0000000..96acd7a --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include @@ -0,0 +1,132 @@ +# Include file (machine template) for run-virt.include of the virtualbox plugin +cat << EOF > "${machconfig}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <${network_kind}/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EOF diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include new file mode 100755 index 0000000..d05913a --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include @@ -0,0 +1,375 @@ +# run-virt.include +# ----------------------------------------------------------------------------- +# Copyright (c) 2009..2010 - RZ Uni Freiburg +# Copyright (c) 2009..2010 - OpenSLX GmbH +# +# This program/file is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your feedback to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org +# ----------------------------------------------------------------------------- +# run-virt.include +# - Include script for running the VirtualBox on an OpenSLX client via the +# run-virt.sh or run-vmgrid.sh +################################################################################ + +################################################################################ +### Include general configuration +################################################################################ +if [ -f ${OPENSLX_DEFAULT_CONFDIR}/plugins/${self}/${self}.conf ]; then + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/${self}/${self}.conf +else + writelog "Problems reading config file of ${self} plugin" + exit 1 +fi + +################################################################################ +### Declaration of default variables +################################################################################ + +PLUGINCONFVIRTUALBOX="${PLUGINCONFROOT}/${self}" +PLUGINDIRVIRTUALBOX="${OPENSLX_DEFAULT_DIR}/plugin-repo/${self}" +# create TMPDIR for all users +TMPDIR=/tmp/${self} +mkdir -m 1777 ${TMPDIR} 2>/dev/null +# dir for configs +confdir="/tmp/${self}/${USER}/${VM_ID}" +# use alternate configuration directory instead of $HOME/.VirtualBox +export VBOX_USER_HOME=${confdir} +# define dirs and files which can be removed after exit, be carefull! +RMDIRS="${snapshotdir} ${confdir} /tmp/.vbox-${USER}-ipc" +rm -rf ${RMDIRS} 2>/dev/null +machfolder="${confdir}/Machines" +# use vm_shortname for dir and config names since vm_name can be very long +machconfig="${machfolder}/${vm_shortname}/${vm_shortname}.xml" +diskfolder="${confdir}/HardDisks" +snapshotdir=${machfolder}/${vm_shortname}/Snapshots +mkdir -p ${diskfolder} ${snapshotdir} 2>/dev/null +# check if diskless var empty? +[ -z "${diskless}" ] && diskless=0 + +# configure our own rwimg, empty image which we support +if [ "${imgmode}" = "rwimg" ]; then + # what is our rwimg called? + imgname="${vm_shortname}.vdi" + vmpath=${imgpath}/${imgname} + if ! [ -e "${vmpath}" ]; then + cat ${PLUGINDIRVIRTUALBOX}/rwimg.vdi.gz | gunzip > "${vmpath}" + fi +fi + +# link to image +diskfile="${diskfolder}/${imgname}" +[ ${diskless} -eq 0 ] && ln -sf ${vmpath} ${diskfile} + +# check the file type +if echo ${imgname} | grep -qiE "vdi|vmdk|vhd" && [ ${diskless} -eq 0 ]; then + imgfmt=$(echo ${imgname##*.} | tr "[a-z]" "[A-Z]") +elif [ ${diskless} -eq 0 ]; then + writelog "${imgname} is not a valid image format (vdi|vmdk|vhd), exiting!" + cleanexit 1 +fi + +# TODO: maybe rewrite, to reduce checks, merge it with network option, +# so we can have a "compatibility to vmware config" section +case "${vmostype}" in + winxp*|windowsxp*) + vmostype="WindowsXP" + ;; + winvista*|windowsvista*) + vmostype="WindowsVista" + ;; + windows7*) + vmostype="Windows7" + ;; + linux*|*ubuntu*|*suse*|debian*|*sci*) + if echo "${vmostype}" | grep -q "64"; then + vmostype="Linux26_64" + # check for vtflag + if [ ${vtflag} -ne 1 ]; then + writelog "You are trying to boot a 64 bit OS without a VT enabled CPU" + writelog "This is not supported, exiting!" + cleanexit 1 + fi + # check if host is only 32 bit, then use only 1 cpu (only 1 supported) + if echo "${host_arch}" | grep -qE "i.86"; then + cpu_cores=1 + fi + else + vmostype="Linux26" + fi + ;; +esac + +writelog "Directories:" +writelog "\tConfig dir:\t\t$confdir" +writelog "\tMachines dir:\t\t$machfolder" +writelog "\tMachine config:\t\t$machconfig" +[ ${diskless} -eq 0 ] && writelog "\tHardDisks dir:\t\t$diskfolder" + +################################################################################ +### Hardware checks +################################################################################ + +# remove ':' from MAC addr for vbox +macaddr=$(echo ${macaddr} | sed 's/://g') + +# machine UUID, MAC addr part of it +machineuuid="00000000-0000-0000-0000-${macaddr}" +# cosmetical, since UUID in lower case +machineuuid=$(echo ${machineuuid} | tr "[A-Z]" "[a-z]") +# get UUID of VBox image, if not diskless +[ ${diskless} -eq 0 ] && diskuuid=$(VBoxManage -q showvdiinfo ${diskfile} \ + | grep UUID | awk '{print $2}') +# make disk immutable +imgtype="Immutable" +# snapshot UUID is static +snapshotuuid="34f617be-192a-46b3-a8ae-bce1029e093f" +# imageuuid in machine.include, dafault snapshotuuid +imageuuid=${snapshotuuid} + +# check if rw image +# remove disk and add rwimg if set +if echo "${imgmode}" | grep -q rw; then + # lock existing? + if [ -e "${vmpath}.lock" ]; then + writelog "This rw image is already in use." + writelog "Found lock: ${vmpath}.lock, exiting!" + writelog "Remove lock if you are sure that this is not the case" + cleanexit 1 + # image rw? + elif ! [ -w ${vmpath} ]; then + writelog "You defined mode rw, but image ${vmpath} is not rw! \c" + writelog "Please correct, exiting!" + cleanexit 1 + fi + # add lock + touch "${vmpath}.lock" + # remove lock after VM stopped + RMDIRS="${RMDIRS} ${vmpath}.lock" + imgtype="Normal" + # replace image uuid in machine config + imageuuid=${diskuuid} +elif [ ${diskless} -eq 0 ]; then + # use temp disk as snapshot + cat ${PLUGINDIRVIRTUALBOX}/empty-diff.vdi.gz \ + | gunzip > "${snapshotdir}/{${snapshotuuid}}.vdi" + # patch the disk file uuid into the snapshot vdi file + dd if=${diskfile} of="${snapshotdir}/{${snapshotuuid}}.vdi" seek=424 \ + skip=392 bs=1 count=16 conv=notrunc +fi + +# TODO: MEM muss noch angepasst werden. Maschine crasht wenn nehr als 50% MEM +# memory part equal to vmware plugin +# percentage of memory to use for virtualbox in standard case +#if [ -n "${forcemem}" ]; then +# mem="${forcemem}" +#else +# permem=30 +# if [ "${totalmem}" -ge "1600" ]; then +# permem=40 +# fi +# # check if /tmp is on harddisk +# if grep -qe "/dev/.* /tmp " /proc/mounts ; then +# permem=60 +# id44="1" +# # Hack, if more than 2,5G RAM use 40% of Ram and write vmem into Ram as well +# # (40% vmware | 40% confdir(vmem...) | 20% host +# # VMplayer 2+ issue +# # TODO: makes this sense for vbox? +# #if [ "${totalmem}" -ge "2500" ]; then +# #permem=40 +# #rmdir ${snapshotdir} +# #snapshotdirold=${snapshotdir} +# #snapshotdir=/dev/shm/${self}/${USER}/${VM_ID} +# #mkdir -p ${snapshotdir} +# #ln -sf ${snapshotdir} ${snapshotdirold} +# #fi +# fi +# mem=$(expr ${totalmem} / 100 \* ${permem}) +# if [ "${id44}" = "1" ]; then +# hostmem=$(expr ${totalmem} - ${mem}) +# else +# hostmem=$(expr ${totalmem} - ${mem} - ${mem}) +# fi +# #permem=40 +# #mem=$(expr ${totalmem} * ${permem}) +# if [ "${mem}" -lt "256" ] || [ "${hostmem}" -lt "256" ]; then +# writelog "Memory out of range: ${mem} MB (guest) / ${hostmem} MB (host)!" +# writelog "Min. 256 MB for host and guest!" +# cleanexit 1 +# fi +#fi + +# translate network cards +case "${network_card}" in + e1000) + vb_network_card="82540EM" + ;; + virtio) + vb_network_card="virtio" + ;; + *) + network_card="pcnet" + vb_network_card="Am79C973" +esac + +# translate network kinds (nat, bridged, host-only) +case "${network_kind}" in + bridge*) + network_kind='BridgedInterface name="br0"' + ;; + host*) + network_kind='HostOnlyInterface name="vboxnet0"' + ;; + *) + network_kind="NAT" +esac + +# translate boot, use if set else set to HardDisk +# usually support for a,c,d,n, stands for Floppy, HD, CD-ROM, Network +# support nfs and tftp as well +case ${boot} in + n*|tftp) + boot="Network" + if [ "${network_kind}" = "NAT" ] && [ -n "${virtualbox_tftpdir}" ]; then + # use vm_shortname to avoid Problems /w TFTP in NAT + vm_name=${vm_shortname} + # link TFTP dir for NAT TFTP boots + mkdir -p ${confdir}/TFTP + if [ -e ${virtualbox_tftpdir}/pxelinux.0 ]; then + cp ${virtualbox_tftpdir}/pxelinux.0 ${confdir}/TFTP/${vm_name}.pxe + else + writelog "${virtualbox_tftpdir}/pxelinux.0 not found!" + writelog "Network boot won't work, exiting!" + cleanexit 1 + fi + for i in $(ls ${virtualbox_tftpdir}); do + ln -sf ${virtualbox_tftpdir}/${i} ${confdir}/TFTP/${i} + done + fi + ;; + # later maybe c|disk|hd*|sd*) for HD and d|cd*) for CD-ROM + *) + boot="HardDisk" + ;; +esac + +# nested paging +npaging="false" +# enable VT +enablevt="false" +# check for VT, if not available use only 1 cpu (only 1 supported) +[ ${vtflag} -eq 0 ] && cpu_cores=1 +[ ${vtflag} -eq 1 ] && enablevt="true" + +# external GUI +vrdpport=${remotedesktopport} + +[ ${diskless} -eq 0 ] && writelog "\tSnapshots dir:\t\t$snapshotdir" +writelog "Diskimage:" +[ ${diskless} -eq 0 ] && writelog "\tDisk file:\t\t$diskfile" +[ ${diskless} -eq 0 ] && writelog "\tDisk format:\t\t$imgfmt" +[ ${diskless} -eq 0 ] && writelog "\tDisk type:\t\t$imgtype" + writelog "\tVMostype:\t\t$vmostype" + writelog "\tMachine UUID:\t\t$machineuuid" +[ ${diskless} -eq 0 ] && writelog "\tDisk UUID:\t\t$diskuuid" +writelog "Virtual Hardware:" +writelog "\tCPU cores:\t\t${cpu_cores}\c" +[ ${vtflag} -eq 0 ] && writelog "" +[ ${vtflag} -eq 1 ] && writelog " (VT enabled CPU)" +writelog "\tGuest RAM:\t\t${mem} MB" +# echo nur wenn hostmem gesetzt +[ -n "${hostmem}" ] && writelog "\tHost RAM:\t\t${hostmem} MB" +writelog "\tMAC address:\t\t$macaddr" +writelog "\tNetwork card:\t\t${vb_network_card}" +writelog "\tNetwork kind:\t\t${network_kind}" +writelog "\tBooting from:\t\t${boot}\c" +[ ${diskless} -eq 0 ] && writelog "" +[ ${diskless} -eq 1 ] && writelog " 'diskless'" +# TODO: server start activate via xml, etc... +#writelog "\tGuest VRDP port:\t${vrdpport}" +writelog "\tCD-ROM1:\t\t${cdrom0}" +#writelog "\tCD-ROM2:\t\t${cdrom1}" +#writelog "\tFloppy_A:\t\t${floppy0}" +#writelog "\tFloppy_B:\t\t${floppy1}" +# defined in run-virt.sh and run-vmgrid.sh +writelog "\tShared Folders '${sharename}':\t${sharepath}" + +################################################################################ +### Pepare and configure virtual machine and disk image +################################################################################ + +# create Virtualbox.xml +. ${PLUGINCONFVIRTUALBOX}/virtualbox.include + +# remove snapshot disk when using rw images +if [ "${imgtype}" != "Immutable" ]; then + sed -i "/${snapshotuuid}/d" "${confdir}/VirtualBox.xml" +fi + +# TODO: add rawdisk if requested +#"raw.vmdk" format="VMDK" type="Writethrough"/> + +# create machine.xml +. ${PLUGINCONFVIRTUALBOX}/machine.include + +# remove CD-ROM +if [ "${cdrom0}" != "TRUE" ]; then + sed -i "/HostDrive/d" ${machconfig} + sed -i '/AttachedDevice.*type="DVD"/d' ${machconfig} + sed -i "//d" ${machconfig} +fi + +# if diskless remove all disks +if [ ${diskless} -eq 1 ]; then + sed -i "//d" ${machconfig} +fi + +# define redirects +if [ ${redirects} -ge 1 ]; then + (( i=1 )) + writelog "\tGuest redirects:\t\c" + while [ ${i} -le ${redirects} ]; do + extradataitem='" + extradatahostport="HostPort\" value=\"${redirect_hport[$i]}\"/>" + extradataguestport="GuestPort\" value=\"${redirect_gport[$i]}\"/>" + sed -i "s,, ${extradataitem}${extradataguestport}\n\ + ${extradataitem}${extradatahostport}\n\ + ${extradataitem}${extradataprotocol}\n\ + ," "${machconfig}" + writelog "${tabspace}${redirect_name[$i]} port: ${redirect_hport[$i]}" + tabspace='\t\t\t\t' + (( i=$i+1 )) + done +fi + +################################################################################ +### finally set env for run-virt.sh +################################################################################ + +# wait for a certain command to settle +# get the PID of the right process +# kill PID, seems to work +VBMANPID=$(pstree -p | grep VBoxXPCOMIPCD | grep -ivE "VirtualBox|VBoxHeadless"\ + | sed -e "s/.*VBoxXPCOMIPCD(\(.*\)).*/\1/") +for i in $(echo ${VBMANPID}); do + kill -9 ${VBMANPID} >/dev/null 2>&1 +done + +# set the variables appropriately (several interfaces with different names) +VIRTCMD=$(which VirtualBox 2>/dev/null) +VIRTCMDOPTS="--startvm ${machineuuid} --start-running" + +# set headless mode (-v off to disable vrdp) +VIRTCMDHL=$(which VBoxHeadless 2>/dev/null) +VIRTCMDOPTSHL="-s ${machineuuid}" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf new file mode 100755 index 0000000..066165a --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf @@ -0,0 +1,6 @@ +virtualbox_active="1" +virtualbox_bridge="1" +virtualbox_imagesrc="" +virtualbox_kvm="" +virtualbox_mem="" +virtualbox_tftpdir="/var/lib/virt/virtualbox" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include new file mode 100755 index 0000000..9576fc9 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include @@ -0,0 +1,47 @@ +# Include file (general template) for run-virt.include of the virtualbox plugin +cat << EOF > "${confdir}/VirtualBox.xml" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EOF diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf new file mode 100755 index 0000000..db25059 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf @@ -0,0 +1,8 @@ +totalmem=4023 +cpu_cores=2 +host_arch=i686 +vtflag=1 +kvm_module="kvm_amd" +hostmacaddr=00:1e:0b:27:f4:99 +hostip=132.230.4.20 +hostname=lsfks20 diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf new file mode 100755 index 0000000..f4fc3a0 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf @@ -0,0 +1,3 @@ +vmchooser_active="1" +vmchooser_env="default" +vmchooser_xmlpath="/var/lib/virt/vmware" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include new file mode 100755 index 0000000..2010dc4 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include @@ -0,0 +1,448 @@ +# run-virt.include +# ----------------------------------------------------------------------------- +# Copyright (c) 2009..2010 - RZ Uni Freiburg +# Copyright (c) 2009..2010 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# run-virt.include +# - component for vmware/player of the vmchooser plugin run-virt.sh +################################################################################ + +# configuration writer functions +################################################################################ + +runvmwareconfheader () +{ +echo "# This configuration file was generated by $0" >${conffile} + +case "$vmversion" in + *) + svga_autodetect="TRUE" + numvcpus="1" + shared_folder="FALSE" + echo ".encoding = \"UTF-8\" +# version specific stuff - all versions +config.version = \"8\"" >>${conffile} + ;; +esac +case "$vmversion" in + 2.*|3.*|6.*|7.*) + shared_folder="TRUE" + echo " +# version specific stuff - ver. 2.*|3.*|6.*|7.* +sharedFolder.option = \"alwaysEnabled\"" >>${conffile} + ;; +esac +case "$vmversion" in + 2.5|3.*|6.5|7.*) + if [ "${cpu_cores}" -ge "2" 2>/dev/null ]; then + numvcpus="2" + fi + cap3d="TRUE" # helper var for loging output + echo " +# version specific stuff - ver. 2.5|3.*|6.5|7.* +ehci.present = \"TRUE\" +mks.enable3d = \"${enable3d}\"" >>${conffile} + ;; +esac +case "$vmversion" in + 3.*|7.*) + numvcpus="${cpu_cores}" + # svga_autodetect="FALSE" # if defined manual, see below + echo " +# version specific stuff - ver. 3.*|7.* +cpuid.coresPerSocket = \"${cpu_cores}\" +maxvcpus = \"4\" +# svga.numDisplays = "2" +# svga.maxWidth = "2560" +# svga.maxHeight = "2048" +# svga.vramSize = "134217728" +monitor.virtual_mmu = \"automatic\" +monitor.virtual_exec = \"automatic\" +floppy1.clientDevice = \"FALSE\" +floppy1.readonly = \"TRUE\"" >>${conffile} + ;; +esac + +echo " +# id +virtualHW.version = \"${hwver}\" +displayName = \"${displayname}\" +guestOS = \"${vmostype}\" + +# CPU/MEM +numvcpus = \"${numvcpus}\" +memsize = \"${mem}\" +MemAllowAutoScaleDown = \"FALSE\" +MemTrimRate = \"-1\" + +# ide-disks +ide0:0.present = \"${ide}\" +ide0:0.fileName = \"${diskfile}\" +ide0:0.mode = \"independent-nonpersistent\" +ide1:0.present = \"${cdrom0}\" +ide1:0.autodetect = \"TRUE\" +ide1:0.fileName = \"auto detect\" +ide1:0.deviceType = \"cdrom-raw\" +ide1:1.present = \"${cdrom1}\" +ide1:1.autodetect = \"TRUE\" +ide1:1.fileName = \"auto detect\" +ide1:1.deviceType = \"cdrom-raw\" + +# scsi-disks +scsi0.present = \"${scsi}\" +scsi0:0.present = \"${scsi}\" +scsi0:0.fileName = \"${diskfile}\" +scsi0.virtualDev = \"${hddrv}\" +scsi0:0.mode = \"independent-nonpersistent\" + +# floppies +floppy0.present = \"${floppy0}\" +floppy0.startConnected = \"FALSE\" +floppy0.autodetect = \"TRUE\" +floppy0.fileName = \"auto detect\" +# we need floppy b: for our windows client configuration +floppy1.present = \"${floppy1}\" +floppy1.startConnected = \"TRUE\" +floppy1.fileType = \"file\" +floppy1.fileName = \"${floppy1name}\" + +# nics +ethernet0.present = \"TRUE\" +ethernet0.addressType = \"static\" +${network_virtualDev} +ethernet0.connectionType = \"${network_kind}\" +#ethernet1.connectionType = \"custom\" +#ethernet1.vnet = \"/dev/vmnet2\" +ethernet0.address = \"00:50:56:${VM_ID}:${machostpart}\" +ethernet0.wakeOnPcktRcv = \"FALSE\" + +# sound +sound.present = \"TRUE\" +sound.fileName = \"-1\" +sound.autodetect = \"TRUE\" + +# svga +svga.autodetect = \"${svga_autodetect}\" + +# usb +usb.present = \"TRUE\" +usb.generic.autoconnect = \"TRUE\" + +# shared folders +sharedFolder0.present = \"TRUE\" +sharedFolder0.enabled = \"${shared_folder}\" +sharedFolder0.expiration = \"never\" +sharedFolder0.guestName = \"${sharename}\" +sharedFolder0.hostPath = \"${sharepath}\" +sharedFolder0.readAccess = \"TRUE\" +sharedFolder0.writeAccess = \"TRUE\" +sharedFolder.maxNum = \"1\" + +# dirs/configs +tmpDirectory = \"${redodir}\" +redoLogDir = \"${redodir}\" +mainMem.useNamedFile = \"TRUE\" +snapshot.disabled = \"TRUE\" +tools.syncTime = \"TRUE\" +isolation.tools.hgfs.disable = \"FALSE\" +hgfs.mapRootShare = \"TRUE\" +isolation.tools.dnd.disable = \"FALSE\" +isolation.tools.copy.enable = \"TRUE\" +isolation.tools.paste.enabled = \"TRUE\" + +# serial port +serial0.present = \"${serial}\" +${serialdev} + +# parallel port +parallel0.present = \"${parallel}\" +parallel0.bidirectional = \"${paralbidi}\" +${paraldev}" >>${conffile} + +# set the appropriate permissions for the vmware config file +chmod u+rwx ${conffile} >/dev/null 2>&1 +} + +preferencesheader () +{ +echo ".encoding = \"UTF-8\" +# This configuration file was generated by $0 + +# updates/tips +webUpdate.enabled = \"FALSE\" +pref.downloadPermission = \"deny\" +pref.vmplayer.downloadPermission = \"deny\" +pref.vmplayer.webUpdateOnStartup = \"FALSE\" +pref.tip.startup = \"FALSE\" +hints.hideAll = \"TRUE\" +hint.vmui.showAllUSBDevs = \"FALSE\" + +# configs +prefvmx.defaultVMPath = \"${vmhome}\" +prefvmx.mru.config = \"${conffile}:\" + +# hot keys +pref.hotkey.control = \"true\" +pref.hotkey.alt = \"true\" +pref.hotkey.shift = \"true\" +pref.hotkey.gui = \"true\" +gui.restricted = \"true\" + +# fullscreen/mouse/keyboard +pref.fullscreen.toolbarPixels = \"0\" +pref.vmplayer.fullscreen.autohide = \"TRUE\" +pref.grabOnMouseClick = \"TRUE\" +pref.grabOnKeyPress = \"FALSE\" +pref.motionGrab = \"TRUE\" +pref.motionUngrab = \"TRUE\" +pref.hideCursorOnUngrab = \"TRUE\" +pref.autoFit = \"TRUE\" +pref.autoFitFullScreen = \"fitGuestToHost\" +pref.vmplayer.exit.vmAction = \"poweroff\" +pref.vmplayer.confirmOnExit = \"TRUE\" + +# shared folders +pref.enableAllSharedFolders = \"TRUE\" + +# eula +pref.eula.size = \"2\" +pref.eula.0.appName = \"VMware Player\" +pref.eula.0.buildNumber = \"${vmbuild}\" +pref.eula.1.appName = \"VMware Workstation\" +pref.eula.1.buildNumber = \"${vmbuild}\"" >${vmhome}/preferences +} + + +# declaration of default variables +################################################################################ + +# VM-ID static (0D), remove if changed to 00 +VM_ID="0D" +# temporary disk space for logs, etc... +redodir=/tmp/vmware/${USER} +# dir for configs and vmem file +confdir=${redodir} +# configfile +conffile="${confdir}/run-vmware.conf" +# diskfile +diskfile=${vmpath} +# users vmware config folder +vmhome="${HOME}/.vmware" + +# get several version infos for vmware/player +. ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf +vmbuild=$buildversion +vmversion=$version + +# VMware start options +# "-X": start in fullscreen +vmopt="-X" + + +# hardware checks +################################################################################ + +# use different network card +if [ -n "${network_card}" ]; then + network_virtualDev='ethernet0.virtualDev = "e1000"' +else + network_virtualDev='# using default virtualDev for ethernet0' +fi + +case "$enable3d" in + *true*|*TRUE*|*yes*|*YES*) + enable3d="TRUE" + ;; + *) + enable3d="FALSE" + ;; +esac + +# serial/parallel port defined (e.g. "ttyS0, lp0" or "autodetect") +case "$serial" in + tty*) + serialdev="serial0.filename = \"/dev/${serial}\"" + serial="TRUE" + ;; + auto*) + serialdev="serial0.autodetect = \"TRUE\"" + serial="TRUE" + ;; + *) + serialdev="# no serial port configured" + serial="FALSE" + ;; +esac +case "$parallel" in + lp*|parport*) + paraldev="parallel0.filename = \"/dev/${parallel}\"" + paralbidi="TRUE" + parallel="TRUE" + ;; + auto*) + paraldev="parallel0.autodetect = \"TRUE\"" + paralbidi="TRUE" + parallel="TRUE" + ;; + *) + paraldev="# no parallel port configured" + paralbidi="FALSE" + parallel="FALSE" + ;; +esac + +# adjust memory available for vmware guests +#if [ -n "${forcemem}" ]; then +# mem="${forcemem}" +#else +# case "$vmversion" in +# 2.*|6.*) +# permem=30 +# ;; +# 3.*|7.*) +# permem=25 +# ;; +# esac +# if [ "${totalmem}" -ge "2500" ]; then +# permem=40 +# fi +# # check if /tmp is on harddisk +# if grep -qe "/dev/.* /tmp " /proc/mounts ; then +# permem=60 +# id44="1" +# # Hack, if more than 2,5G RAM use 40% of Ram and write vmem into Ram as well +# # (40% vmware | 40% confdir(vmem...) | 20% host +# # VMplayer 2+ issue +# if [ "${totalmem}" -ge "2500" ]; then +# permem=40 +# confdir=/dev/shm/vmware/$USER +# conffile=${confdir}/run-vmware.conf +# mkdir -p /dev/shm/vmware/$USER +# fi +# fi +# mem=$(expr ${totalmem} / 100 \* ${permem} / 4 \* 4) +# if [ "${id44}" = "1" ]; then +# hostmem=$(expr ${totalmem} - ${mem}) +# else +# hostmem=$(expr ${totalmem} - ${mem} - ${mem}) +# fi +#fi + +# check if ide/scsi and hwver of image +# read only the first 30 lines to be shure +imghead=$(head -30 ${diskfile}) +hddrv=$(echo "${imghead}" | grep -m1 -ia "ddb.adapterType" |\ + awk -F '"' '{print $2}') +hwver=$(echo "${imghead}" | grep -m1 -ia "ddb.virtualHWVersion" |\ + awk -F '"' '{print $2}') +case "${hddrv}" in + ide) + ide="TRUE" + scsi="FALSE" + ;; + lsilogic|buslogic) + ide="FALSE" + scsi="TRUE" + ;; +esac + + +# write configuration files +################################################################################ + +# create vmware directories +mkdir -p ${redodir} >/dev/null 2>&1 +mkdir -p ${confdir} >/dev/null 2>&1 +mkdir -p ${vmhome} >/dev/null 2>&1 + +# create preferences +preferencesheader + +# create VMware startup file +runvmwareconfheader +# link to conffile if confdir != redodir +ln -s ${conffile} ${redodir}/run-vmware.conf >/dev/null 2>&1 + +# sync is needed to ensure that data is really written to virtual disk +sync + +# own nvram. We need it for floppy drive b, default nvram has just drive a +# TODO: optimize, currently kinda inefficient, too much copys, but we +# don't know which one is installed... +for i in /opt/openslx/plugin-repo/vmware/*; do + cp ${i}/nvram ${confdir}/nvram 2>/dev/null +done + + +# logging and stdout +################################################################################ + +# log script information +writelog "# File created by $0 (VMversion ${vmversion})\n# on $(date)\n" +writelog "Starting with non-persistent mode ...\n" + +# check memory range +if [ "${mem}" -lt "256" ] || [ "${hostmem}" -lt "256" ]; then + writelog "\tMemory out of range: ${mem} MB (guest) / ${hostmem} MB (host)!" + writelog "\tMin. 256 MB for host and guest!" + exit 1 +fi + +# write all results to logfile +# log disksetup +writelog "Directories:" +writelog "\tConfdir:\t${confdir}" +writelog "\tConffile:\t${conffile}" +writelog "\tRedodir:\t${redodir}" +writelog "\tVMhome:\t\t${vmhome}" +writelog "\t/tmp info: \ + $(grep "/tmp " /proc/mounts) $(df -h | grep " /tmp$" | awk '{print $2}')" +# hw setup +writelog "Hardware:" +writelog "\tMAC:\t\t00:50:56:${VM_ID}:${machostpart}" +if [ -n "${network_card}" ]; then + writelog "\tNet Adaptor:\t${network_card}" +fi +writelog "\tMem:\t\t${mem} MB" +# echo nur wenn hostmem gesetzt +[ -n "${hostmem}" ] && writelog "\tHostmem:\t${hostmem} MB" +writelog "\tMax. res.:\t${xres}x${yres}" +writelog "\tCD-ROM1:\t${cdrom0}" +writelog "\tCD-ROM2:\t${cdrom1}" +writelog "\tFloppy_A:\t${floppy0}" +if [ "${serial}" = "TRUE" ]; then + writelog "\tSerial Port:\t${serialdev}" +fi +if [ "${parallel}" = "TRUE" ]; then + writelog "\tParallel Port:\t${paraldev}" +fi +# image +writelog "Diskimage:" +writelog "\tDiskfile:\t${diskfile}" +writelog "\tDisktype:\t${hddrv}" +writelog "\tHWVersion:\t${hwver}" +writelog "\tVMostype:\t${vmostype}" +# misc +writelog "Misc:" +writelog "\tDisplayname:\t${displayname}" +if [ "${cap3d}" = "TRUE" -a "${enable3d}" = "TRUE" ]; then + writelog "\t3D Graphics:\tenabled" +fi +# empty line at end +writelog "" + + +# finally set env for run-virt.sh +################################################################################ + +# using the modified version of the wrapper script +VIRTCMD="${OPENSLX_DEFAULT_BINDIR}/vmplayer" +VIRTCMDOPTS="${vmopt} ${conffile}" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf new file mode 100755 index 0000000..aaf5ce7 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf @@ -0,0 +1,8 @@ +# configuration file for vmware background services written in stage3 setup +vmnet0=true +vmnet1=192.168.101.1/24 +vmnet1nat=true +vmnet8=192.168.102.1/24 +# stage1 variables produced during plugin install +version="7.0" +buildversion="261024" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf b/resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf new file mode 100755 index 0000000..e292cc0 --- /dev/null +++ b/resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf @@ -0,0 +1,37 @@ +# general udhcpd configuration file for virtual machines written by +# /bin/init-wrapper during OpenSLX stage3 configuration + +# start and end of the IP lease block +start CNETWORK.20 +end CNETWORK.100 + +# interface that udhcpd will use +interface NWIF + +# how long an offered address is reserved (leased) in seconds +offer_time 6000 + +# location of the leases file +lease_file LEASEFILE + +# location of the pid file +pidfile PIDFILE + +option dns 132.230.200.200 132.230.201.111 +option subnet 255.255.255.0 +option router CNETWORK.1 +option wins CNETWORK.10 +option domain virtual.site ruf.uni-freiburg.de + +# additional options known to udhcpd +#subnet #timezone +#router #timesvr +#namesvr #dns +#logsvr #cookiesvr +#lprsvr #bootsize +#domain #swapsvr +#rootpath #ipttl +#mtu #broadcast +#wins #lease +#ntpsrv #tftp +#bootfile diff --git a/resources/config/1/uniontmp/etc/pam.d/common-account b/resources/config/1/uniontmp/etc/pam.d/common-account new file mode 100755 index 0000000..3caf0dd --- /dev/null +++ b/resources/config/1/uniontmp/etc/pam.d/common-account @@ -0,0 +1,5 @@ +# file copied from configuration package (rootfs/etc/pam.d/common-account) +account requisite pam_unix.so +account [success=ok new_authtok_reqd=ok ignore=ignore default=bad user_unknown=ignore] pam_krb5.so use_first_pass +account sufficient pam_localuser.so +account required pam_ldap.so use_first_pass diff --git a/resources/config/1/uniontmp/etc/pam.d/common-auth b/resources/config/1/uniontmp/etc/pam.d/common-auth new file mode 100755 index 0000000..5b8c00b --- /dev/null +++ b/resources/config/1/uniontmp/etc/pam.d/common-auth @@ -0,0 +1,15 @@ +# file copied from configuration package (rootfs/etc/pam.d/common-auth) +# +# /etc/pam.d/common-auth - authentication settings common to all services +# +# This file is included from other service-specific PAM config files, +# and should contain a list of the authentication modules that define +# the central authentication scheme for use on the system +# (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the +# traditional Unix authentication mechanisms. +# +auth required pam_env.so +auth optional pam_group.so +auth sufficient pam_unix.so +auth sufficient pam_krb5.so use_first_pass +auth required pam_ldap.so use_first_pass diff --git a/resources/config/1/uniontmp/etc/pam.d/common-session b/resources/config/1/uniontmp/etc/pam.d/common-session new file mode 100755 index 0000000..aec02b8 --- /dev/null +++ b/resources/config/1/uniontmp/etc/pam.d/common-session @@ -0,0 +1,5 @@ +# file copied from configuration package (rootfs/etc/pam.d/common-session) +session required pam_limits.so +session required pam_unix.so +session optional pam_krb5.so +session optional pam_umask.so diff --git a/resources/config/1/uniontmp/etc/passwd b/resources/config/1/uniontmp/etc/passwd new file mode 100755 index 0000000..cb0f764 --- /dev/null +++ b/resources/config/1/uniontmp/etc/passwd @@ -0,0 +1,39 @@ +root:x:0:0:root:/root:/bin/bash +daemon:x:1:1:daemon:/usr/sbin:/bin/sh +bin:x:2:2:bin:/bin:/bin/sh +sys:x:3:3:sys:/dev:/bin/sh +sync:x:4:65534:sync:/bin:/bin/sync +games:x:5:60:games:/usr/games:/bin/sh +man:x:6:12:man:/var/cache/man:/bin/sh +lp:x:7:7:lp:/var/spool/lpd:/bin/sh +mail:x:8:8:mail:/var/mail:/bin/sh +news:x:9:9:news:/var/spool/news:/bin/sh +uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh +proxy:x:13:13:proxy:/bin:/bin/sh +www-data:x:33:33:www-data:/var/www:/bin/sh +backup:x:34:34:backup:/var/backups:/bin/sh +list:x:38:38:Mailing List Manager:/var/list:/bin/sh +irc:x:39:39:ircd:/var/run/ircd:/bin/sh +gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh +libuuid:x:100:101::/var/lib/libuuid:/bin/sh +syslog:x:101:102::/home/syslog:/bin/false +messagebus:x:102:106::/var/run/dbus:/bin/false +hplip:x:103:7:HPLIP system user,,,:/var/run/hplip:/bin/false +avahi-autoipd:x:104:110:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false +avahi:x:105:111:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false +couchdb:x:106:113:CouchDB Administrator,,,:/var/lib/couchdb:/bin/bash +speech-dispatcher:x:107:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/sh +haldaemon:x:108:114:Hardware abstraction layer,,,:/var/run/hald:/bin/false +kernoops:x:109:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false +pulse:x:110:116:PulseAudio daemon,,,:/var/run/pulse:/bin/false +rtkit:x:111:118:RealtimeKit,,,:/proc:/bin/false +saned:x:112:119::/home/saned:/bin/false +gdm:x:113:120:Gnome Display Manager:/var/lib/gdm:/bin/false +polkituser:x:114:122:PolicyKit,,,:/var/run/PolicyKit:/bin/false +usbmux:x:115:46:usbmux daemon,,,:/home/usbmux:/bin/false +statd:x:116:65534::/var/lib/nfs:/bin/false +sshd:x:117:65534::/var/run/sshd:/usr/sbin/nologin +oprofile:x:118:125:OProfile JIT user,,,:/var/lib/oprofile:/bin/bash +jetty:x:119:126::/usr/share/jetty:/bin/false +postfix:x:120:127::/var/spool/postfix:/bin/false +nobody:x:65534:65534:nobody:/nonexistent:/bin/sh diff --git a/resources/config/1/uniontmp/etc/profile b/resources/config/1/uniontmp/etc/profile new file mode 100755 index 0000000..37ef457 --- /dev/null +++ b/resources/config/1/uniontmp/etc/profile @@ -0,0 +1,30 @@ +# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) +# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). + +if [ -d /etc/profile.d ]; then + for i in /etc/profile.d/*.sh; do + if [ -r $i ]; then + . $i + fi + done + unset i +fi + +if [ "$PS1" ]; then + if [ "$BASH" ]; then + PS1='\u@\h:\w\$ ' + if [ -f /etc/bash.bashrc ]; then + . /etc/bash.bashrc + fi + else + if [ "`id -u`" -eq 0 ]; then + PS1='# ' + else + PS1='$ ' + fi + fi +fi + +umask 022 +# stuff generated by /bin/servconfig (out of InitRamFS written 14.10.2010) +export PATH="$PATH:/var/opt/openslx/bin" diff --git a/resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx b/resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc2.d/K02vmware-env b/resources/config/1/uniontmp/etc/rc2.d/K02vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc2.d/K02vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx b/resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc2.d/S20vmware-env b/resources/config/1/uniontmp/etc/rc2.d/S20vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc2.d/S20vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx b/resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/K02vmware-env b/resources/config/1/uniontmp/etc/rc3.d/K02vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc3.d/K02vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx b/resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/S20vmware-env b/resources/config/1/uniontmp/etc/rc3.d/S20vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/uniontmp/etc/rc3.d/S20vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/uniontmp/etc/resolv.conf b/resources/config/1/uniontmp/etc/resolv.conf new file mode 100755 index 0000000..7b7c3b1 --- /dev/null +++ b/resources/config/1/uniontmp/etc/resolv.conf @@ -0,0 +1,7 @@ +# /etc/resolv.conf - file generated by +# /bin/servconfig: +# 14.10.2010 +#options timeout:1 attempts:1 rotate +search ruf.uni-freiburg.de +nameserver 132.230.200.200 +nameserver 132.230.201.111 diff --git a/resources/config/1/uniontmp/etc/security/group.conf b/resources/config/1/uniontmp/etc/security/group.conf new file mode 100755 index 0000000..e966b95 --- /dev/null +++ b/resources/config/1/uniontmp/etc/security/group.conf @@ -0,0 +1,105 @@ +# +# This is the configuration file for the pam_group module. +# + +# +# *** Please note that giving group membership on a session basis is +# *** NOT inherently secure. If a user can create an executable that +# *** is setgid a group that they are infrequently given membership +# *** of, they can basically obtain group membership any time they +# *** like. Example: games are allowed between the hours of 6pm and 6am +# *** user joe logs in at 7pm writes a small C-program toplay.c that +# *** invokes their favorite shell, compiles it and does +# *** "chgrp games toplay; chmod g+s toplay". They are basically able +# *** to play games any time... You have been warned. AGM +# + +# +# The syntax of the lines is as follows: +# +# services;ttys;users;times;groups +# +# white space is ignored and lines maybe extended with '\\n' (escaped +# newlines). From reading these comments, it is clear that +# text following a '#' is ignored to the end of the line. +# +# the combination of individual users/terminals etc is a logic list +# namely individual tokens that are optionally prefixed with '!' (logical +# not) and separated with '&' (logical and) and '|' (logical or). +# +# services +# is a logic list of PAM service names that the rule applies to. +# +# ttys +# is a logic list of terminal names that this rule applies to. +# +# users +# is a logic list of users or a netgroup of users to whom this +# rule applies. +# +# NB. For these items the simple wildcard '*' may be used only once. +# With netgroups no wildcards or logic operators are allowed. +# +# times +# It is used to indicate "when" these groups are to be given to the +# user. The format here is a logic list of day/time-range +# entries the days are specified by a sequence of two character +# entries, MoTuSa for example is Monday Tuesday and Saturday. Note +# that repeated days are unset MoMo = no day, and MoWk = all weekdays +# bar Monday. The two character combinations accepted are +# +# Mo Tu We Th Fr Sa Su Wk Wd Al +# +# the last two being week-end days and all 7 days of the week +# respectively. As a final example, AlFr means all days except Friday. +# +# Each day/time-range can be prefixed with a '!' to indicate "anything +# but" +# +# The time-range part is two 24-hour times HHMM separated by a hyphen +# indicating the start and finish time (if the finish time is smaller +# than the start time it is deemed to apply on the following day). +# +# groups +# The (comma or space separated) list of groups that the user +# inherits membership of. These groups are added if the previous +# fields are satisfied by the user's request +# +# For a rule to be active, ALL of service+ttys+users must be satisfied +# by the applying process. +# + +# +# Note, to get this to work as it is currently typed you need +# +# 1. to run an application as root +# 2. add the following groups to the /etc/group file: +# floppy, games, sound +# + +# +# Here is a simple example: running 'xsh' on tty* (any ttyXXX device), +# the user 'us' is given access to the floppy (through membership of +# the floppy group) +# + +#xsh;tty*&!ttyp*;us;Al0000-2400;floppy + +# +# another example: running 'xsh' on tty* (any ttyXXX device), +# the user 'sword' is given access to games (through membership of +# the sound and play group) after work hours. (The games group owns +# high-score files and so on, so don't ever give users access to it.) +# + +#xsh; tty* ;sword;!Wk0900-1800;sound, play +#xsh; tty* ;*;Al0900-1800;floppy + +login;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip +kdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video +gdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video +xdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video + +# +# End of group.conf file +# diff --git a/resources/config/1/uniontmp/etc/shadow b/resources/config/1/uniontmp/etc/shadow new file mode 100755 index 0000000..1b0e924 --- /dev/null +++ b/resources/config/1/uniontmp/etc/shadow @@ -0,0 +1,39 @@ +root:$6$KrXGhPkB$rxmsVo.85I8FItXSQFobSV7YPO.aKpDZntIARf73GivVRlPv09ZBnEoHjUTyLwLMQyaLMbTXfFU0LQu2xRrUX.:14358:0:99999:7::: +daemon:!:13078:0:99999:7::: +bin:!:13078:0:99999:7::: +sys:!:13078:0:99999:7::: +sync:!:13078:0:99999:7::: +games:!:13078:0:99999:7::: +man:!:13078:0:99999:7::: +lp:!:13078:0:99999:7::: +mail:!:13078:0:99999:7::: +news:!:13078:0:99999:7::: +uucp:!:13078:0:99999:7::: +proxy:!:13078:0:99999:7::: +www-data:!:13078:0:99999:7::: +backup:!:13078:0:99999:7::: +list:!:13078:0:99999:7::: +irc:!:13078:0:99999:7::: +gnats:!:13078:0:99999:7::: +libuuid:!:13078:0:99999:7::: +syslog:!:13078:0:99999:7::: +messagebus:!:13078:0:99999:7::: +hplip:!:13078:0:99999:7::: +avahi-autoipd:!:13078:0:99999:7::: +avahi:!:13078:0:99999:7::: +couchdb:!:13078:0:99999:7::: +speech-dispatcher:!:13078:0:99999:7::: +haldaemon:!:13078:0:99999:7::: +kernoops:!:13078:0:99999:7::: +pulse:!:13078:0:99999:7::: +rtkit:!:13078:0:99999:7::: +saned:!:13078:0:99999:7::: +gdm:!:13078:0:99999:7::: +polkituser:!:13078:0:99999:7::: +usbmux:!:13078:0:99999:7::: +statd:!:13078:0:99999:7::: +sshd:!:13078:0:99999:7::: +oprofile:!:13078:0:99999:7::: +jetty:!:13078:0:99999:7::: +postfix:!:13078:0:99999:7::: +nobody:!:13078:0:99999:7::: diff --git a/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules b/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules new file mode 100755 index 0000000..e75b4a0 --- /dev/null +++ b/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules @@ -0,0 +1,12 @@ +# This file was automatically generated by the /lib/udev/write_cd_rules +# program, run by the cd-aliases-generator.rules rules file. +# +# You can modify it, as long as you keep each rule on a single +# line, and set the $GENERATED variable. + +# DVD-RAM_GSA-H60L (pci-0000:00:12.0-scsi-1:0:0:0) +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="cdrom", ENV{GENERATED}="1" +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="cdrw", ENV{GENERATED}="1" +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="dvd", ENV{GENERATED}="1" +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="dvdrw", ENV{GENERATED}="1" + diff --git a/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules b/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules new file mode 100755 index 0000000..ab66721 --- /dev/null +++ b/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules @@ -0,0 +1,8 @@ +# This file was automatically generated by the /lib/udev/write_net_rules +# program, run by the persistent-net-generator.rules rules file. +# +# You can modify it, as long as you keep each rule on a single +# line, and change only the value of the NAME= key. + +# PCI device 0x14e4:0x167b (tg3) +SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1e:0b:27:f4:99", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" diff --git a/resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules b/resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules new file mode 100755 index 0000000..fe051bc --- /dev/null +++ b/resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules @@ -0,0 +1,2 @@ +SUBSYSTEM=="usb_device", GROUP="vboxusers", MODE="0666" +SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="vboxusers", MODE="0666" diff --git a/resources/config/1/uniontmp/etc/vmware/config b/resources/config/1/uniontmp/etc/vmware/config new file mode 100755 index 0000000..838a1d0 --- /dev/null +++ b/resources/config/1/uniontmp/etc/vmware/config @@ -0,0 +1,4 @@ +.encoding = "UTF-8" +prefvmx.minVmMemPct = "50" +prefvmx.useRecommendedLockedMemSize = "TRUE" +libdir = "/usr/lib/vmware" diff --git a/resources/config/1/uniontmp/etc/vmware/nat.conf b/resources/config/1/uniontmp/etc/vmware/nat.conf new file mode 100755 index 0000000..18dfcc2 --- /dev/null +++ b/resources/config/1/uniontmp/etc/vmware/nat.conf @@ -0,0 +1,9 @@ +# Linux NAT configuration file +[host] +ip = 192.168.102.2/24 +device = /dev/vmnet8 +activeFTP = 1 +[udp] +timeout = 60 +[incomingtcp] +[incomingudp] diff --git a/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf b/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf new file mode 100755 index 0000000..0cc1017 --- /dev/null +++ b/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf @@ -0,0 +1,37 @@ +# general udhcpd configuration file for virtual machines written by +# /bin/init-wrapper during OpenSLX stage3 configuration + +# start and end of the IP lease block +start 192.168.101.20 +end 192.168.101.100 + +# interface that udhcpd will use +interface vmnet1 + +# how long an offered address is reserved (leased) in seconds +offer_time 6000 + +# location of the leases file +lease_file /var/run/vmware/udhcpd-vmnet1.leases + +# location of the pid file +pidfile /var/run/vmware/udhcpd-vmnet1.pid + +option dns 132.230.200.200 132.230.201.111 +option subnet 255.255.255.0 +option router 192.168.101.1 +option wins 192.168.101.10 +option domain virtual.site ruf.uni-freiburg.de + +# additional options known to udhcpd +#subnet #timezone +#router #timesvr +#namesvr #dns +#logsvr #cookiesvr +#lprsvr #bootsize +#domain #swapsvr +#rootpath #ipttl +#mtu #broadcast +#wins #lease +#ntpsrv #tftp +#bootfile diff --git a/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf b/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf new file mode 100755 index 0000000..ab80fec --- /dev/null +++ b/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf @@ -0,0 +1,37 @@ +# general udhcpd configuration file for virtual machines written by +# /bin/init-wrapper during OpenSLX stage3 configuration + +# start and end of the IP lease block +start 192.168.102.20 +end 192.168.102.100 + +# interface that udhcpd will use +interface vmnet8 + +# how long an offered address is reserved (leased) in seconds +offer_time 6000 + +# location of the leases file +lease_file /var/run/vmware/udhcpd-vmnet8.leases + +# location of the pid file +pidfile /var/run/vmware/udhcpd-vmnet8.pid + +option dns 132.230.200.200 132.230.201.111 +option subnet 255.255.255.0 +option router 192.168.102.1 +option wins 192.168.102.10 +option domain virtual.site ruf.uni-freiburg.de + +# additional options known to udhcpd +#subnet #timezone +#router #timesvr +#namesvr #dns +#logsvr #cookiesvr +#lprsvr #bootsize +#domain #swapsvr +#rootpath #ipttl +#mtu #broadcast +#wins #lease +#ntpsrv #tftp +#bootfile diff --git a/resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac b/resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac new file mode 100755 index 0000000..ef6cc5c --- /dev/null +++ b/resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac @@ -0,0 +1 @@ +00:50:56:F1:30:50 diff --git a/resources/config/1/uniontmp/root/.ssh/authorized_keys b/resources/config/1/uniontmp/root/.ssh/authorized_keys new file mode 100755 index 0000000..3f5c805 --- /dev/null +++ b/resources/config/1/uniontmp/root/.ssh/authorized_keys @@ -0,0 +1,2 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAyqJL02R70XFWD7uSUyiJGXyPyHJhCwFe0ko6ulc1b/j4wHXYWUBGGRyo3ELD88jRrAFkH3S70fSUgiKq0GziYiSWiy1nuaKzybjOzKCE9nEssUkmOtZZPqe2aT0c/6ccJDHzmhShA5ndawaMF1qWIEswDyqknG5YMTau9SUlvHNK82uygOlHlBn+ey+nfjmBQsafE720ykuUglDDXZG/91nrPaYgabbjqeGP9wq7E7c+tsMczmoSQw2q2m+vz+rLNyWL+6VftPTyuxtFfUSKbNWthpXoiJPAU62iP1089NBIMq+8VyYNzDxDHYXE5pxpXUG026hw1Ugmpgf0W9JZ2w== root@lp-srv01.ruf.uni-freiburg.de +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAtE1QqmMnS9ZrmXQguHDa6Gi8edgl8IE3MMl58Wxgf//ONZjfQpOfJxvl5kYkmJKl0H7KGNNp+4UYP0ckydfw301MJU8Q5/24CkKHT92pnUUVRQ9Am7YnKvWBsrbMThEMIEOGjOc9uvyE+lKvvZ18ZNLTI9lCqu/ns6ZMYeS2xJU= root@lp-srv180 diff --git a/resources/config/1/uniontmp/tmp/.X0-lock b/resources/config/1/uniontmp/tmp/.X0-lock new file mode 100755 index 0000000..a563e1c --- /dev/null +++ b/resources/config/1/uniontmp/tmp/.X0-lock @@ -0,0 +1 @@ + 3307 diff --git a/resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp b/resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp new file mode 100755 index 0000000..f031720 Binary files /dev/null and b/resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp differ diff --git a/resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE b/resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE new file mode 100755 index 0000000..5ca497a Binary files /dev/null and b/resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE differ diff --git a/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock b/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior b/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior new file mode 100755 index 0000000..a419f6b --- /dev/null +++ b/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior @@ -0,0 +1 @@ +IOR:010000002100000049444c3a426f6e6f626f2f41637469766174696f6e436f6e746578743a312e3000000000030000000054424f540000000101020005000000554e4958000000000a0000006c6f63616c686f7374000000290000002f746d702f6f726269742d6d7035372f6c696e632d6565312d302d336431643033663232363661630000000000000000caaedfba5400000001010200290000002f746d702f6f726269742d6d7035372f6c696e632d6565312d302d33643164303366323236366163000000001c00000001000000d5535559a07f11d14d6851515151515102000000bf016fb301000000480000000100000002000000050000001c00000001000000d5535559a07f11d14d6851515151515102000000bf016fb301000000140000000100000001000105000000000901010000000000 diff --git a/resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml b/resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml new file mode 100755 index 0000000..8df706d --- /dev/null +++ b/resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid b/resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid new file mode 100755 index 0000000..675c45f --- /dev/null +++ b/resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid @@ -0,0 +1 @@ +3770 diff --git a/resources/config/1/uniontmp/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile b/resources/config/1/uniontmp/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log b/resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log new file mode 100755 index 0000000..ebea407 --- /dev/null +++ b/resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log @@ -0,0 +1,30 @@ +Jan 05 13:23:14.918: usbArb| Log for VMware USB Arbitration Service pid=3200 version=3.1.0 build=build-261024 option=Release +Jan 05 13:23:14.918: usbArb| The process is 32-bit. +Jan 05 13:23:14.918: usbArb| Host codepage=UTF-8 encoding=UTF-8 +Jan 05 13:23:14.918: usbArb| DICT --- USER PREFERENCES +Jan 05 13:23:14.919: usbArb| DICT --- USER DEFAULTS ~/.vmware/config +Jan 05 13:23:14.919: usbArb| DICT --- HOST DEFAULTS /etc/vmware/config +Jan 05 13:23:14.919: usbArb| DICT prefvmx.minVmMemPct = 50 +Jan 05 13:23:14.919: usbArb| DICT prefvmx.useRecommendedLockedMemSize = TRUE +Jan 05 13:23:14.919: usbArb| DICT libdir = /usr/lib/vmware +Jan 05 13:23:14.919: usbArb| DICT --- SITE DEFAULTS /usr/lib/vmware/config +Jan 05 13:23:14.919: usbArb| DICT tag.help = introduction.htm +Jan 05 13:23:14.919: usbArb| DICT tag.configurationEditor = config_editor_newvm.htm +Jan 05 13:23:14.919: usbArb| DICT tag.ideConfig = devices_virtualdrive.htm +Jan 05 13:23:14.919: usbArb| DICT tag.floppyConfig = devices_floppy.htm +Jan 05 13:23:14.919: usbArb| DICT tag.mouseConfig = devices_mouse.htm +Jan 05 13:23:14.919: usbArb| DICT tag.netConfig = devices_netadapter.htm +Jan 05 13:23:14.919: usbArb| DICT tag.parallelConfig = devices_parallel.htm +Jan 05 13:23:14.919: usbArb| DICT tag.serialConfig = devices_serial.htm +Jan 05 13:23:14.919: usbArb| DICT tag.soundConfig = devices_sound.htm +Jan 05 13:23:14.919: usbArb| DICT tag.memConfig = configvm_memory.htm +Jan 05 13:23:14.919: usbArb| DICT tag.miscConfig = configvm.htm +Jan 05 13:23:14.919: usbArb| DICT tag.usbConfig = devices_usb.htm +Jan 05 13:23:14.919: usbArb| DICT tag.displayConfig = configvm_display-problems.htm +Jan 05 13:23:14.919: usbArb| DICT tag.tools = vmtools.htm +Jan 05 13:23:14.919: usbArb| USB: Unable to open "/proc/bus/usb/devices" (No such file or directory). +Jan 05 13:23:14.919: usbArb| USBGL: USB Sysfs found at /dev/bus/usb +Jan 05 13:23:14.920: usbArb| USBArb: 3 Devices enumerated +Jan 05 13:23:14.920: usbArb| USBArb: Device 0:name:Hewlett-Packard\ HP\ USB\ Smart\ Card\ Keyboard vid:03f0 pid:1024 path:2/1 speed:full family:hid,hid-bootable,smart-card id:2000203f01024 owner:(null) +Jan 05 13:23:14.920: usbArb| USBArb: Device 1:name:Quanta\ Optical\ Touch\ Screen vid:0408 pid:3000 path:4/1 speed:full family:hid id:4000204083000 owner:(null) +Jan 05 13:23:14.920: usbArb| USBArb: Device 2:name:Primax\ USB\ Optical\ Mouse vid:0461 pid:4d20 path:4/2 speed:low family:hid,hid-bootable id:4000304614d20 owner:(null) diff --git a/resources/config/1/uniontmp/tmp/whitelist b/resources/config/1/uniontmp/tmp/whitelist new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/cache/nscd/group b/resources/config/1/uniontmp/var/cache/nscd/group new file mode 100755 index 0000000..849e79f Binary files /dev/null and b/resources/config/1/uniontmp/var/cache/nscd/group differ diff --git a/resources/config/1/uniontmp/var/cache/nscd/passwd b/resources/config/1/uniontmp/var/cache/nscd/passwd new file mode 100755 index 0000000..2090f6d Binary files /dev/null and b/resources/config/1/uniontmp/var/cache/nscd/passwd differ diff --git a/resources/config/1/uniontmp/var/cache/nscd/services b/resources/config/1/uniontmp/var/cache/nscd/services new file mode 100755 index 0000000..ba0909a Binary files /dev/null and b/resources/config/1/uniontmp/var/cache/nscd/services differ diff --git a/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager b/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager new file mode 100755 index 0000000..212de61 --- /dev/null +++ b/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager @@ -0,0 +1,24 @@ +manual +/usr/bin/x-session-manager +x-session-manager.1.gz +/usr/share/man/man1/x-session-manager.1.gz + +/usr/bin/gnome-session +50 +/usr/share/man/man1/gnome-session.1.gz +/usr/bin/lxsession +49 +/usr/share/man/man1/lxsession.1.gz +/usr/bin/openbox-session +40 +/usr/share/man/man1/openbox-session.1.gz +/usr/bin/startkde +40 +/usr/share/man/man1/startkde.1.gz +/usr/bin/startlxde +50 +/usr/share/man/man1/startlxde.1.gz +/usr/bin/xfce4-session +50 +/usr/share/man/man1/xfce4-session.1.gz + diff --git a/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager b/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager new file mode 100755 index 0000000..81a0fd0 --- /dev/null +++ b/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager @@ -0,0 +1,18 @@ +manual +/usr/bin/x-window-manager +x-window-manager.1.gz +/usr/share/man/man1/x-window-manager.1.gz + +/usr/bin/kwin +50 + +/usr/bin/metacity +60 +/usr/share/man/man1/metacity.1.gz +/usr/bin/openbox +90 +/usr/share/man/man1/openbox.1.gz +/usr/bin/xfwm4 +60 +/usr/share/man/man1/xfwm4.1.gz + diff --git a/resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl b/resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl new file mode 100755 index 0000000..19d24fb --- /dev/null +++ b/resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl @@ -0,0 +1,39 @@ +#!/usr/bin/perl -l +######################################################################### +# mountet homedirs per nfs3 oder nfs4 je nach net.point variante +######################################################################### +# net.point (c) by Martin Walter 1996-2008 +######################################################################### + + exit 1 if ($#ARGV != 0); + + $user = $ARGV[0]; + + exit 1 if ($user !~ /^[a-z][a-z_0-9-]{1,7}$/); + + ($name,$passwd,$uid,$gid, $quota,$comment,$gcos,$dir,$shell) = getpwnam $user; + + exit 1 if (!$dir); + + if ($user eq "guest" || -f "/var/etc/ramdisk/$user" ) { + print "-fstype=tmpfs tmpfs"; + exit 0; + } + + $x = `ldapsearch -x -LLL uid=$user homeDirectory rufFileserver`; + $hostname = `hostname`; + + $remote = $1 if ($x =~ m|homeDirectory: (/.+)\n|); + $fs = $1 if ($x =~ m|rufFileserver: (.+)\n|); + + exit 1 if ($fs eq "" || $hostname eq "" || $remote eq ""); + +######################################################################### +# netapp und solaris-server wollen vollen pfad. linux-server nur /$user + + $remote = "/$user" if (`showmount -e $fs 2>/dev/null` =~ m,gss/krb5,); + + $krb = `/var/lib/openslx/bin/krb5_mount_mode.pl $fs`; + print "-fstype=nfs4,sec=$krb,rw,nosuid,nodev,nolock,intr,hard $fs:$remote"; + + exit 0; diff --git a/resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl b/resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl new file mode 100755 index 0000000..cd4e1e4 --- /dev/null +++ b/resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl @@ -0,0 +1,69 @@ +#!/usr/bin/perl + +######################################################################### +sub ip { + my $host = $_[0]; + my $ip = ""; + + if ( $host =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ ) { + $ip = $host if ($1<223 && $2<256 && $3<256 && $4<256); + } + elsif ( $host =~ /^[a-z][a-z0-9-.-]{0,63}$/i ) { + my $x = `env - host $host`; + $ip = $1 if ($x =~ / has address (\d+\.\d+\.\d+\.\d+)/); + } + return $ip; +} +######################################################################### +sub hostname { + my $ip = $_[0]; + my $host = ""; + + if ( $ip =~ /^[a-z0-9-.-]{1,63}$/ ) { + my $x = `env - host $ip`; + if ($x =~ /^([a-z][a-z0-9-.-]{0,63}) has address/i) { + $host = $1; + } + elsif ($x =~ /in-addr.arpa domain name pointer ([a-z][a-z0-9-.-]{0,63})\./i) { + $host = $1; + } + } + return $host; +} +######################################################################### + +$dest_ip = ip($ARGV[0]); +exit 1 if ($dest_ip eq ""); + +######################################################################### +# gibts bereits einen mount zum ziel? +open(F,"/proc/mounts") || exit 2; +while () { + if (/^([a-z0-9-.-]+):.*sec=(krb5[ip]{0,1})/) { + if ($dest_ip eq ip($1)) { + print $2; + exit 0; + } + } +} +close F; +######################################################################### +$me = hostname(`hostname`); +$you = hostname($dest_ip); + +$krb = "krb5p"; + +if ($me =~ /^login\d+\.ruf\.uni-freiburg\.de$/ || $me =~ /^b1-4\.ruf\.uni-freiburg\.de$/) { + if ($you =~ /^fs\d\.ruf\.uni-freiburg\.de$/ || $you =~ /^netapp\d+\.public\.ads\.uni-freiburg\.de$/) { + $krb = "krb5i"; + } +} +elsif ($me =~ /^.+\.home$/ && $you =~ /^.+\.home$/) { + $krb = "krb5i"; +} +print $krb; + +exit 0; + +######################################################################### + \ No newline at end of file diff --git a/resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect b/resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect new file mode 100755 index 0000000..fb310da --- /dev/null +++ b/resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect @@ -0,0 +1,97 @@ +#!/usr/bin/perl +######################################################################### +# sslconnect 0.1 +# Last Change: 2006-03-03 +# 2006 by Martin Walter +# http://omnibus.uni-freiburg.de/~mawa/ +######################################################################### + use English; + use IO::Socket::SSL; + +######################################################################### + sub Usage { + print "@_"; + print "Usage: $0 [--debug] peerhost:peerport\n"; + exit; + } +######################################################################### + sub Tprint { # print with timestamp + my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); + my $x=sprintf "%4d-%02d-%02d--%02d:%02d:%02d ($$)",1900+$year,$mon+1,$mday,$hour,$min,$sec; + print STDERR "$x @_"; + } +######################################################################### + sub Tdebug { # debug-print with timestamp + Tprint "@_" if ($debug); + } +######################################################################### + sub Terror { # error-print with timestamp and exit 1 + Tprint "ERROR: @_"; + exit 1; + } +######################################################################### +######################################################################### +# main: +######################################################################### + $| = 1; + $debug = 0; + + while ($ARGV[0] =~ /^(-.*)$/) { + if ($1 eq "--debug") { + $debug=1; + Tprint "--debug\n"; + } elsif ($1 eq "--help") { + Usage; + } else { + Terror "invalid option: $1\n"; + } + shift; + } + Usage if ($#ARGV != 0); + Usage if ($ARGV[0] !~ /^([a-z0-9.-]+):([a-z0-9.-]+)$/); + shift; + + ($peerhost,$peerport) = ($1,$2); + +######################################################################### +# connect to server + + if ($EUID) { + $sock = IO::Socket::SSL->new( + PeerAddr => $peerhost, + PeerPort => $peerport, + Proto => 'tcp', + Timeout => 5, + SSL_use_cert => 0, + SSL_verify_mode => 0, + ); + } else { + for $localport (90..900) { + $sock = IO::Socket::SSL->new( + PeerAddr => $peerhost, + PeerPort => $peerport, + LocalPort => $localport, + Proto => 'tcp', + Timeout => 2, + SSL_use_cert => 0, + SSL_verify_mode => 0, + ); + Tdebug "localport=$localport --> " . ($sock ? "ok" : "failed") . "\n"; + last if ($sock); + } + } + Terror "unable to connect to $peerhost:$peerport\n" if (!$sock); + + if (!fork()) { + print $buf while ($buf = $sock->readline); + shutdown($sock,2); + exit 0; + } + + while ( ($buf = <>) && ($sock->write($buf, length($buf))) ) {} + + shutdown($sock,2); + exit 0; + +######################################################################### + diff --git a/resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm b/resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm new file mode 100755 index 0000000..5a196c9 Binary files /dev/null and b/resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm differ diff --git a/resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm b/resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm new file mode 100755 index 0000000..b2f5e05 Binary files /dev/null and b/resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm differ diff --git a/resources/config/1/uniontmp/var/log/ConsoleKit/history b/resources/config/1/uniontmp/var/log/ConsoleKit/history new file mode 100755 index 0000000..f2baf3d --- /dev/null +++ b/resources/config/1/uniontmp/var/log/ConsoleKit/history @@ -0,0 +1,3 @@ +1294230214.137 type=SEAT_ADDED : seat-id='Seat1' seat-kind=0 +1294230214.159 type=SEAT_SESSION_ADDED : seat-id='Seat1' session-id='Session1' session-type='' session-x11-display=':0' session-x11-display-device='/dev/tty7' session-display-device='' session-remote-host-name='' session-is-local=TRUE session-unix-user=14620 session-creation-time='2011-01-05T12:23:34.147968Z' +1294230214.184 type=SEAT_ACTIVE_SESSION_CHANGED : seat-id='Seat1' session-id='Session1' diff --git a/resources/config/1/uniontmp/var/log/Xorg.0.log b/resources/config/1/uniontmp/var/log/Xorg.0.log new file mode 100755 index 0000000..85d56ee --- /dev/null +++ b/resources/config/1/uniontmp/var/log/Xorg.0.log @@ -0,0 +1,787 @@ + +X.Org X Server 1.7.6 +Release Date: 2010-03-17 +X Protocol Version 11, Revision 0 +Build Operating System: Linux 2.6.24-27-server i686 Ubuntu +Current Operating System: Linux lsfks20 2.6.32-25-generic-pae #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 i686 +Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Build Date: 21 July 2010 12:47:34PM +xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) +Current version of pixman: 0.16.4 + Before reporting problems, check http://wiki.x.org + to make sure that you have the latest version. +Markers: (--) probed, (**) from config file, (==) default setting, + (++) from command line, (!!) notice, (II) informational, + (WW) warning, (EE) error, (NI) not implemented, (??) unknown. +(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 5 13:23:25 2011 +(==) Using config file: "/etc/X11/xorg.conf" +(==) Using config directory: "/usr/lib/X11/xorg.conf.d" +(==) ServerLayout "Default Layout" +(**) |-->Screen "Default Screen" (0) +(**) | |-->Monitor "Generic Display" +(**) |-->Input Device "Generic Keyboard" +(**) |-->Input Device "Generic Mouse" +(**) Option "AllowMouseOpenFail" +(**) Option "BlankTime" "5" +(**) Option "StandbyTime" "10" +(**) Option "SuspendTime" "15" +(**) Option "OffTime" "20" +(**) Option "AllowEmptyInput" "false" +(==) Automatically adding devices +(==) Automatically enabling devices +(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. + Entry deleted from font path. +(==) FontPath set to: + /usr/share/fonts/X11/misc, + /usr/share/fonts/X11/100dpi/:unscaled, + /usr/share/fonts/X11/75dpi/:unscaled, + /usr/share/fonts/X11/Type1, + /usr/share/fonts/X11/100dpi, + /usr/share/fonts/X11/75dpi, + /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType, + built-ins +(==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules" +(II) Loader magic: 0x81f0e80 +(II) Module ABI versions: + X.Org ANSI C Emulation: 0.4 + X.Org Video Driver: 6.0 + X.Org XInput driver : 7.0 + X.Org Server Extension : 2.0 +(++) using VT number 7 + +(--) PCI:*(0:2:0:0) 1002:94c1:1028:0d02 ATI Technologies Inc RV610 [Radeon HD 2400 XT] rev 0, Mem @ 0xd0000000/268435456, 0xf0100000/65536, I/O @ 0x00001100/256, BIOS @ 0x????????/131072 +(II) Open ACPI successful (/var/run/acpid.socket) +(II) "extmod" will be loaded. This was enabled by default and also specified in the config file. +(II) "dbe" will be loaded by default. +(II) "glx" will be loaded. This was enabled by default and also specified in the config file. +(II) "record" will be loaded by default. +(II) "dri" will be loaded. This was enabled by default and also specified in the config file. +(II) "dri2" will be loaded by default. +(II) LoadModule: "i2c" +(II) Module "i2c" already built-in +(II) LoadModule: "ddc" +(II) Module "ddc" already built-in +(II) LoadModule: "extmod" +(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so +(II) Module extmod: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + Module class: X.Org Server Extension + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension MIT-SCREEN-SAVER +(II) Loading extension XFree86-VidModeExtension +(II) Loading extension XFree86-DGA +(II) Loading extension DPMS +(II) Loading extension XVideo +(II) Loading extension XVideo-MotionCompensation +(II) Loading extension X-Resource +(II) LoadModule: "int10" +(II) Loading /usr/lib/xorg/modules/libint10.so +(II) Module int10: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "vbe" +(II) Loading /usr/lib/xorg/modules/libvbe.so +(II) Module vbe: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.1.0 + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "glx" +(II) Loading /usr/lib/xorg/modules/extensions/libglx.so +(II) Module glx: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org Server Extension, version 2.0 +(==) AIGLX enabled +(II) Loading extension GLX +(II) LoadModule: "dri" +(II) Loading /usr/lib/xorg/modules/extensions/libdri.so +(II) Module dri: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension XFree86-DRI +(II) LoadModule: "dbe" +(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so +(II) Module dbe: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + Module class: X.Org Server Extension + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension DOUBLE-BUFFER +(II) LoadModule: "record" +(II) Loading /usr/lib/xorg/modules/extensions/librecord.so +(II) Module record: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.13.0 + Module class: X.Org Server Extension + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension RECORD +(II) LoadModule: "dri2" +(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so +(II) Module dri2: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.1.0 + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension DRI2 +(==) Matched ati as autoconfigured driver 0 +(==) Matched vesa as autoconfigured driver 1 +(==) Matched fbdev as autoconfigured driver 2 +(==) Assigned the driver to the xf86ConfigLayout +(II) LoadModule: "ati" +(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so +(II) Module ati: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 6.13.0 + Module class: X.Org Video Driver + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "radeon" +(II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so +(II) Module radeon: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 6.13.0 + Module class: X.Org Video Driver + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "vesa" +(II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so +(II) Module vesa: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 2.3.0 + Module class: X.Org Video Driver + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "fbdev" +(II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so +(II) Module fbdev: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 0.4.1 + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "evdev" +(II) Loading /usr/lib/xorg/modules/input/evdev_drv.so +(II) Module evdev: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 2.3.2 + Module class: X.Org XInput Driver + ABI class: X.Org XInput driver, version 7.0 +(II) LoadModule: "mouse" +(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so +(II) Module mouse: vendor="X.Org Foundation" + compiled for 1.7.2, module version = 1.5.0 + Module class: X.Org XInput Driver + ABI class: X.Org XInput driver, version 7.0 +(II) RADEON: Driver for ATI Radeon chipsets: + ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI), + ATI Radeon Mobility X300 (M24) 3152 (PCIE), + ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE), + ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136, + ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP), + ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), + ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP), + ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), + ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP), + ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), + ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650, + ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237, + ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP), + ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337, + ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI), + ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP), + ATI Radeon X800PRO (R420) JI (AGP), + ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), + ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), + ATI Radeon Mobility 9800 (M18) JN (AGP), + ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP), + ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP), + ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP), + ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP), + ATI Radeon Mobility M7 LW (AGP), + ATI Mobility FireGL 7800 M7 LX (AGP), + ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), + ATI FireGL Mobility 9000 (M9) Ld (AGP), + ATI Radeon Mobility 9000 (M9) Lf (AGP), + ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP), + ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP), + ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP), + ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), + ATI Radeon 9800XT NJ (AGP), + ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP), + ATI Radeon Mobility 9600 (M10) NQ (AGP), + ATI Radeon Mobility 9600 (M11) NR (AGP), + ATI Radeon Mobility 9600 (M10) NS (AGP), + ATI FireGL Mobility T2 (M10) NT (AGP), + ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP), + ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), + ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP), + ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI), + ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI), + ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI), + ATI Radeon Mobility X300 (M22) 5460 (PCIE), + ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE), + ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE), + ATI Radeon X800PRO (R423) UI (PCIE), + ATI Radeon X800LE (R423) UJ (PCIE), + ATI Radeon X800SE (R423) UK (PCIE), + ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE), + ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE), + ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE), + ATI FireGL unknown (R423) UR (PCIE), + ATI FireGL unknown (R423) UT (PCIE), + ATI Mobility FireGL V5000 (M26) (PCIE), + ATI Mobility FireGL V5000 (M26) (PCIE), + ATI Mobility Radeon X700 XL (M26) (PCIE), + ATI Mobility Radeon X700 (M26) (PCIE), + ATI Mobility Radeon X700 (M26) (PCIE), + ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834, + ATI Radeon Mobility 9100 IGP (U3) 5835, + ATI Radeon XPRESS 200 5954 (PCIE), + ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP), + ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP), + ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI), + ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE), + ATI Radeon XPRESS 200M 5975 (PCIE), + ATI Radeon XPRESS 200 5A41 (PCIE), + ATI Radeon XPRESS 200M 5A42 (PCIE), + ATI Radeon XPRESS 200 5A61 (PCIE), + ATI Radeon XPRESS 200M 5A62 (PCIE), + ATI Radeon X300 (RV370) 5B60 (PCIE), + ATI Radeon X600 (RV370) 5B62 (PCIE), + ATI Radeon X550 (RV370) 5B63 (PCIE), + ATI FireGL V3100 (RV370) 5B64 (PCIE), + ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE), + ATI Radeon Mobility 9200 (M9+) 5C61 (AGP), + ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), + ATI Mobility Radeon X800 XT (M28) (PCIE), + ATI Mobility FireGL V5100 (M28) (PCIE), + ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE), + ATI Radeon X850 XT PE (R480) (PCIE), + ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE), + ATI unknown Radeon / FireGL (R480) 5D50 (PCIE), + ATI Radeon X850 XT (R480) (PCIE), + ATI Radeon X800XT (R423) 5D57 (PCIE), + ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE), + ATI Radeon X700 PRO (RV410) (PCIE), + ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE), + ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800, + ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800, + ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300, + ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800, + ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800, + ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505, + ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL, + ATI Mobility Radeon X1400, ATI Radeon X1300/X1550, + ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300, + ATI Mobility Radeon X1300, ATI Mobility Radeon X1300, + ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300, + ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350, + ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550, + ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450, + ATI Radeon X1300/X1550, ATI Mobility Radeon X2300, + ATI Mobility Radeon X2300, ATI Mobility Radeon X1350, + ATI Mobility Radeon X1350, ATI Mobility Radeon X1450, + ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350, + ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600, + ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600, + ATI Mobility FireGL V5200, ATI Mobility Radeon X1600, + ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600, + ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400, + ATI Mobility FireGL V5250, ATI Mobility Radeon X1700, + ATI Mobility Radeon X1700 XT, ATI FireGL V5200, + ATI Mobility Radeon X1700, ATI Radeon X2300HD, + ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300, + ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950, + ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, + ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, + ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, + ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950, + ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560, + ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400, + ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560, + ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835, + ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200, + ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740, + ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT, + ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT, + ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600, + ATI Radeon 4800 Series, ATI Radeon HD 4870 x2, + ATI Radeon 4800 Series, ATI Radeon HD 4850 x2, + ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL), + ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2, + ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270, + AMD FireStream 9250, ATI FirePro V8700 (FireGL), + ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98, + ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series, + ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98, + ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP), + ATI Mobility Radeon HD 4670, ATI FirePro M5750, + ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP), + ATI RV730XT [Radeon HD 4670], ATI RADEON E4600, + ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650], + ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL), + ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830, + ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740, + ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770, + ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT, + ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, + ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT, + ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610, + ATI FireMV 2260, ATI RV670, ATI Radeon HD3870, + ATI Mobility Radeon HD 3850, ATI Radeon HD3850, + ATI Mobility Radeon HD 3850 X2, ATI RV670, + ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2, + ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850, + ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550, + ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710, + ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series, + ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series, + ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630, + ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT, + ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP, + ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630, + ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600, + ATI FireGL V3600, ATI Radeon HD 2600 LE, + ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470, + ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series, + ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430, + ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450, + ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series, + ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO, + ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO, + ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670, + ATI Mobility FireGL V5700, ATI Mobility FireGL V5725, + ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, + ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, + ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics, + ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100, + ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100, + ATI Radeon HD 4290, ATI Radeon HD 4290, CYPRESS, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5800 Series, + ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series, + ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series, + ATI Mobility Radeon HD 5800 Series, + ATI Mobility Radeon HD 5800 Series, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, + ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series, + ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series, + ATI Mobility Radeon HD 5000 Series, + ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670, + ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD, + ATI Mobility Radeon HD 5000 Series, + ATI Mobility Radeon HD 5000 Series, CEDAR, CEDAR, CEDAR, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, CEDAR, ATI Radeon HD 5450, + CEDAR +(II) VESA: driver for VESA chipsets: vesa +(II) FBDEV: driver for framebuffer: fbdev +(II) Primary Device is: PCI 02@00:00:0 +(II) [KMS] Kernel modesetting enabled. +(WW) Falling back to old probe method for vesa +(WW) Falling back to old probe method for fbdev +(II) Loading sub module "fbdevhw" +(II) LoadModule: "fbdevhw" +(II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so +(II) Module fbdevhw: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 0.0.2 + ABI class: X.Org Video Driver, version 6.0 +(II) RADEON(0): Creating default Display subsection in Screen section + "Default Screen" for depth/fbbpp 24/32 +(**) RADEON(0): Depth 24, (--) framebuffer bpp 32 +(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) +(==) RADEON(0): Default visual is TrueColor +(==) RADEON(0): RGB weight 888 +(II) RADEON(0): Using 8 bits per RGB (8 bit DAC) +(--) RADEON(0): Chipset: "ATI Radeon HD 2400 XT" (ChipID = 0x94c1) +(II) RADEON(0): PCIE card detected +(WW) RADEON(0): Color tiling is not yet supported on R600/R700 +(II) RADEON(0): KMS Color Tiling: disabled +drmOpenDevice: node name is /dev/dri/card0 +drmOpenDevice: open result is 12, (OK) +drmOpenByBusid: Searching for BusID pci:0000:02:00.0 +drmOpenDevice: node name is /dev/dri/card0 +drmOpenDevice: open result is 12, (OK) +drmOpenByBusid: drmOpenMinor returns 12 +drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0 +(II) RADEON(0): Output DIN using monitor section Generic Display +(II) RADEON(0): Output DVI-0 has no monitor section +(II) RADEON(0): Output DVI-1 has no monitor section +(II) RADEON(0): EDID for output DIN +(II) RADEON(0): EDID for output DVI-0 +(II) RADEON(0): Manufacturer: IVM Model: 5613 Serial#: 16843009 +(II) RADEON(0): Year: 2009 Week: 48 +(II) RADEON(0): EDID Version: 1.3 +(II) RADEON(0): Digital Display Input +(II) RADEON(0): Max Image Size [cm]: horiz.: 48 vert.: 27 +(II) RADEON(0): Gamma: 2.20 +(II) RADEON(0): DPMS capabilities: Off +(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 +(II) RADEON(0): First detailed timing is preferred mode +(II) RADEON(0): redX: 0.648 redY: 0.339 greenX: 0.282 greenY: 0.603 +(II) RADEON(0): blueX: 0.143 blueY: 0.070 whiteX: 0.312 whiteY: 0.329 +(II) RADEON(0): Supported established timings: +(II) RADEON(0): 720x400@70Hz +(II) RADEON(0): 640x480@60Hz +(II) RADEON(0): 640x480@67Hz +(II) RADEON(0): 640x480@72Hz +(II) RADEON(0): 640x480@75Hz +(II) RADEON(0): 800x600@56Hz +(II) RADEON(0): 800x600@60Hz +(II) RADEON(0): 800x600@72Hz +(II) RADEON(0): 800x600@75Hz +(II) RADEON(0): 832x624@75Hz +(II) RADEON(0): 1024x768@60Hz +(II) RADEON(0): 1024x768@70Hz +(II) RADEON(0): 1024x768@75Hz +(II) RADEON(0): 1280x1024@75Hz +(II) RADEON(0): 1152x864@75Hz +(II) RADEON(0): Manufacturer's mask: 0 +(II) RADEON(0): Supported standard timings: +(II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179 +(II) RADEON(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 +(II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 +(II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 75 vid: 36737 +(II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 +(II) RADEON(0): #5: hsize: 1440 vsize 900 refresh: 75 vid: 3989 +(II) RADEON(0): #6: hsize: 1152 vsize 864 refresh: 75 vid: 20337 +(II) RADEON(0): Supported detailed timing: +(II) RADEON(0): clock: 148.5 MHz Image Size: 477 x 268 mm +(II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0 +(II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0 +(II) RADEON(0): Serial No: 1105594803541 +(II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 29 H max: 83 kHz, PixClock max 170 MHz +(II) RADEON(0): Monitor name: PLT2250MTS +(II) RADEON(0): EDID (in hex): +(II) RADEON(0): 00ffffffffffff0026cd135601010101 +(II) RADEON(0): 3013010380301b782a3581a656489a24 +(II) RADEON(0): 125054bfef80b300a9409500818f8180 +(II) RADEON(0): 950f714f0101023a801871382d40582c +(II) RADEON(0): 4500dd0c1100001e000000ff00313130 +(II) RADEON(0): 35353934383033353431000000fd0037 +(II) RADEON(0): 4c1d5311000a202020202020000000fc +(II) RADEON(0): 00504c54323235304d54530a20200088 +(II) RADEON(0): Printing probed modes for output DVI-0 +(II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz) +(II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz) +(II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz) +(II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) +(II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) +(II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) +(II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) +(II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) +(II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) +(II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID for output DVI-1 +(II) RADEON(0): Manufacturer: DEL Model: a008 Serial#: 825247308 +(II) RADEON(0): Year: 2006 Week: 11 +(II) RADEON(0): EDID Version: 1.3 +(II) RADEON(0): Digital Display Input +(II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 31 +(II) RADEON(0): Gamma: 2.20 +(II) RADEON(0): DPMS capabilities: StandBy Suspend Off +(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 +(II) RADEON(0): Default color space is primary color space +(II) RADEON(0): First detailed timing is preferred mode +(II) RADEON(0): redX: 0.638 redY: 0.342 greenX: 0.293 greenY: 0.608 +(II) RADEON(0): blueX: 0.146 blueY: 0.067 whiteX: 0.312 whiteY: 0.328 +(II) RADEON(0): Supported established timings: +(II) RADEON(0): 720x400@70Hz +(II) RADEON(0): 640x480@60Hz +(II) RADEON(0): 640x480@75Hz +(II) RADEON(0): 800x600@60Hz +(II) RADEON(0): 800x600@75Hz +(II) RADEON(0): 1024x768@60Hz +(II) RADEON(0): 1024x768@75Hz +(II) RADEON(0): 1280x1024@75Hz +(II) RADEON(0): Manufacturer's mask: 0 +(II) RADEON(0): Supported standard timings: +(II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 +(II) RADEON(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 +(II) RADEON(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337 +(II) RADEON(0): Supported detailed timing: +(II) RADEON(0): clock: 162.0 MHz Image Size: 367 x 275 mm +(II) RADEON(0): h_active: 1600 h_sync: 1664 h_sync_end 1856 h_blank_end 2160 h_border: 0 +(II) RADEON(0): v_active: 1200 v_sync: 1201 v_sync_end 1204 v_blanking: 1250 v_border: 0 +(II) RADEON(0): Serial No: C088163710FL +(II) RADEON(0): Monitor name: DELL 2001FP +(II) RADEON(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 80 kHz, PixClock max 162 MHz +(II) RADEON(0): EDID (in hex): +(II) RADEON(0): 00ffffffffffff0010ac08a04c463031 +(II) RADEON(0): 0b10010380291f78ee6390a3574b9b25 +(II) RADEON(0): 115054a54b008180a940714f01010101 +(II) RADEON(0): 010101010101483f403062b0324040c0 +(II) RADEON(0): 13006f131100001e000000ff00433038 +(II) RADEON(0): 38313633373130464c20000000fc0044 +(II) RADEON(0): 454c4c203230303146500a20000000fd +(II) RADEON(0): 00384c1f5010000a2020202020200082 +(II) RADEON(0): Printing probed modes for output DVI-1 +(II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) +(II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Output DIN disconnected +(II) RADEON(0): Output DVI-0 connected +(II) RADEON(0): Output DVI-1 connected +(II) RADEON(0): Using exact sizes for initial modes +(II) RADEON(0): Output DVI-0 using initial mode 1600x1200 +(II) RADEON(0): Output DVI-1 using initial mode 1600x1200 +(II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated. +(II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f6f6000 +(II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM +(==) RADEON(0): DPI set to (96, 96) +(II) Loading sub module "fb" +(II) LoadModule: "fb" +(II) Loading /usr/lib/xorg/modules/libfb.so +(II) Module fb: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org ANSI C Emulation, version 0.4 +(II) Loading sub module "ramdac" +(II) LoadModule: "ramdac" +(II) Module "ramdac" already built-in +(II) Loading sub module "exa" +(II) LoadModule: "exa" +(II) Loading /usr/lib/xorg/modules/libexa.so +(II) Module exa: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 2.5.0 + ABI class: X.Org Video Driver, version 6.0 +(II) UnloadModule: "vesa" +(II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so +(II) UnloadModule: "fbdev" +(II) Unloading /usr/lib/xorg/modules/drivers/fbdev_drv.so +(II) UnloadModule: "fbdevhw" +(II) Unloading /usr/lib/xorg/modules/linux/libfbdevhw.so +(--) Depth 24 pixmap format is 32 bpp +(II) RADEON(0): [DRI2] Setup complete +(II) RADEON(0): Front buffer size: 8400K +(II) RADEON(0): VRAM usage limit set to 220039K +(==) RADEON(0): Backing store disabled +(II) RADEON(0): Direct rendering enabled +(II) RADEON(0): Setting EXA maxPitchBytes +(II) EXA(0): Driver allocated offscreen pixmaps +(II) EXA(0): Driver registered support for the following operations: +(II) Solid +(II) Copy +(II) Composite (RENDER acceleration) +(II) UploadToScreen +(II) DownloadFromScreen +(II) RADEON(0): Acceleration enabled +(**) RADEON(0): DPMS enabled +(==) RADEON(0): Silken mouse enabled +(II) RADEON(0): Set up textured video +(II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message. +(--) RandR disabled +(II) Initializing built-in extension Generic Event Extension +(II) Initializing built-in extension SHAPE +(II) Initializing built-in extension MIT-SHM +(II) Initializing built-in extension XInputExtension +(II) Initializing built-in extension XTEST +(II) Initializing built-in extension BIG-REQUESTS +(II) Initializing built-in extension SYNC +(II) Initializing built-in extension XKEYBOARD +(II) Initializing built-in extension XC-MISC +(II) Initializing built-in extension SECURITY +(II) Initializing built-in extension XINERAMA +(II) Initializing built-in extension XFIXES +(II) Initializing built-in extension RENDER +(II) Initializing built-in extension RANDR +(II) Initializing built-in extension COMPOSITE +(II) Initializing built-in extension DAMAGE +(II) AIGLX: enabled GLX_MESA_copy_sub_buffer +(II) AIGLX: enabled GLX_SGI_make_current_read +(II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control +(II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects +(II) AIGLX: Loaded and initialized /usr/lib/dri/r600_dri.so +(II) GLX: Initialized DRI2 GL provider for screen 0 +(II) RADEON(0): Setting screen physical size to 423 x 317 +(II) XKB: generating xkmfile /var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm +(**) Option "CoreKeyboard" +(**) Generic Keyboard: always reports core events +(EE) Generic Keyboard: No device specified. +(II) UnloadModule: "evdev" +(EE) PreInit returned NULL for "Generic Keyboard" +(WW) Generic Mouse: No Device specified, looking for one... +(II) Generic Mouse: Setting Device option to "/dev/input/mice" +(--) Generic Mouse: Device: "/dev/input/mice" +(==) Generic Mouse: Protocol: "Auto" +(**) Generic Mouse: always reports core events +(**) Option "Device" "/dev/input/mice" +(==) Generic Mouse: Emulate3Buttons, Emulate3Timeout: 50 +(**) Generic Mouse: ZAxisMapping: buttons 4 and 5 +(**) Generic Mouse: Buttons: 9 +(**) Generic Mouse: Sensitivity: 1 +(II) XINPUT: Adding extended input device "Generic Mouse" (type: MOUSE) +(**) Generic Mouse: (accel) keeping acceleration scheme 1 +(**) Generic Mouse: (accel) acceleration profile 0 +(**) Generic Mouse: (accel) acceleration factor: 2.000 +(**) Generic Mouse: (accel) acceleration threshold: 4 +(II) Generic Mouse: Setting mouse protocol to "ExplorerPS/2" +(II) Generic Mouse: ps2EnableDataReporting: succeeded +(II) config/udev: Adding input device Power Button (/dev/input/event1) +(**) Power Button: Applying InputClass "evdev keyboard catchall" +(**) Power Button: always reports core events +(**) Power Button: Device: "/dev/input/event1" +(II) Power Button: Found keys +(II) Power Button: Configuring as keyboard +(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD) +(**) Option "xkb_rules" "evdev" +(**) Option "xkb_model" "pc105" +(**) Option "xkb_layout" "de" +(II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm +(II) config/udev: Adding input device Power Button (/dev/input/event0) +(**) Power Button: Applying InputClass "evdev keyboard catchall" +(**) Power Button: always reports core events +(**) Power Button: Device: "/dev/input/event0" +(II) Power Button: Found keys +(II) Power Button: Configuring as keyboard +(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD) +(**) Option "xkb_rules" "evdev" +(**) Option "xkb_model" "pc105" +(**) Option "xkb_layout" "de" +(II) config/udev: Adding input device Hewlett-Packard Company HP USB Smart Card Keyboard (/dev/input/event3) +(**) Hewlett-Packard Company HP USB Smart Card Keyboard: Applying InputClass "evdev keyboard catchall" +(**) Hewlett-Packard Company HP USB Smart Card Keyboard: always reports core events +(**) Hewlett-Packard Company HP USB Smart Card Keyboard: Device: "/dev/input/event3" +(II) Hewlett-Packard Company HP USB Smart Card Keyboard: Found keys +(II) Hewlett-Packard Company HP USB Smart Card Keyboard: Configuring as keyboard +(II) XINPUT: Adding extended input device "Hewlett-Packard Company HP USB Smart Card Keyboard" (type: KEYBOARD) +(**) Option "xkb_rules" "evdev" +(**) Option "xkb_model" "pc105" +(**) Option "xkb_layout" "de" +(II) config/udev: Adding input device USB Optical Mouse (/dev/input/event4) +(**) USB Optical Mouse: Applying InputClass "evdev pointer catchall" +(**) USB Optical Mouse: always reports core events +(**) USB Optical Mouse: Device: "/dev/input/event4" +(II) USB Optical Mouse: Found 3 mouse buttons +(II) USB Optical Mouse: Found scroll wheel(s) +(II) USB Optical Mouse: Found relative axes +(II) USB Optical Mouse: Found x and y relative axes +(II) USB Optical Mouse: Configuring as mouse +(**) USB Optical Mouse: YAxisMapping: buttons 4 and 5 +(**) USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 +(II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE) +(II) USB Optical Mouse: initialized for relative axes. +(II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse1) +(II) No input driver/identifier specified (ignoring) +(II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5) +(II) No input driver/identifier specified (ignoring) +(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/event2) +(**) Macintosh mouse button emulation: Applying InputClass "evdev pointer catchall" +(**) Macintosh mouse button emulation: always reports core events +(**) Macintosh mouse button emulation: Device: "/dev/input/event2" +(II) Macintosh mouse button emulation: Found 3 mouse buttons +(II) Macintosh mouse button emulation: Found relative axes +(II) Macintosh mouse button emulation: Found x and y relative axes +(II) Macintosh mouse button emulation: Configuring as mouse +(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5 +(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 +(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE) +(II) Macintosh mouse button emulation: initialized for relative axes. +(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/mouse0) +(II) No input driver/identifier specified (ignoring) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using EDID range info for horizontal sync +(II) RADEON(0): Using EDID range info for vertical refresh +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Allocate new frame buffer 3200x1200 stride 3200 +(II) RADEON(0): VRAM usage limit set to 214099K +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) XKB: generating xkmfile /var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) diff --git a/resources/config/1/uniontmp/var/log/auth.log b/resources/config/1/uniontmp/var/log/auth.log new file mode 100755 index 0000000..ef91fa3 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/auth.log @@ -0,0 +1,35 @@ +Jan 5 13:23:14 lsfks20 sshd[2781]: Server listening on 0.0.0.0 port 22. +Jan 5 13:23:14 lsfks20 sshd[2781]: Server listening on :: port 22. +Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_unix(kdm:auth): authentication failure; logname= uid=0 euid=0 tty=:0 ruser= rhost= user=mp57 +Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_krb5(kdm:auth): user mp57 authenticated as mp57@PUBLIC.ADS.UNI-FREIBURG.DE +Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_unix(kdm:session): session opened for user mp57 by (uid=0) +Jan 5 13:28:53 lsfks20 polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.9 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) +Jan 5 13:33:44 lsfks20 nscd: nss_ldap: reconnecting to LDAP server... +Jan 5 13:33:44 lsfks20 nscd: nss_ldap: reconnected to LDAP server ldap://132.230.1.62 after 1 attempt +Jan 5 13:33:53 lsfks20 rpc.idmapd[2757]: nss_ldap: reconnecting to LDAP server... +Jan 5 13:33:53 lsfks20 rpc.idmapd[2757]: nss_ldap: reconnected to LDAP server ldap://132.230.1.62 after 1 attempt +Jan 5 13:35:46 lsfks20 sudo: pam_unix(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= user=mp57 +Jan 5 13:35:46 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= +Jan 5 13:35:59 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= +Jan 5 13:36:03 lsfks20 sudo: pam_unix(sudo:auth): conversation failed +Jan 5 13:36:03 lsfks20 sudo: pam_unix(sudo:auth): auth could not identify password for [mp57] +Jan 5 13:36:03 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= +Jan 5 13:36:03 lsfks20 sudo: mp57 : 2 incorrect password attempts ; TTY=pts/0 ; PWD=/home/mp57 ; USER=root ; COMMAND=/bin/su +Jan 5 13:36:10 lsfks20 su[3981]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root +Jan 5 13:36:10 lsfks20 su[3981]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= +Jan 5 13:36:12 lsfks20 su[3981]: pam_authenticate: User not known to the underlying authentication module +Jan 5 13:36:12 lsfks20 su[3981]: FAILED su for root by mp57 +Jan 5 13:36:12 lsfks20 su[3981]: - /dev/pts/0 mp57:root +Jan 5 13:36:35 lsfks20 su[3985]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root +Jan 5 13:36:35 lsfks20 su[3985]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= +Jan 5 13:36:37 lsfks20 su[3985]: pam_authenticate: User not known to the underlying authentication module +Jan 5 13:36:37 lsfks20 su[3985]: FAILED su for root by mp57 +Jan 5 13:36:37 lsfks20 su[3985]: - /dev/pts/0 mp57:root +Jan 5 13:37:30 lsfks20 su[3994]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root +Jan 5 13:37:30 lsfks20 su[3994]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= +Jan 5 13:37:32 lsfks20 su[3994]: pam_authenticate: User not known to the underlying authentication module +Jan 5 13:37:32 lsfks20 su[3994]: FAILED su for root by mp57 +Jan 5 13:37:32 lsfks20 su[3994]: - /dev/pts/0 mp57:root +Jan 5 13:37:40 lsfks20 su[3997]: Successful su for root by mp57 +Jan 5 13:37:40 lsfks20 su[3997]: + /dev/pts/0 mp57:root +Jan 5 13:37:40 lsfks20 su[3997]: pam_unix(su:session): session opened for user root by mp57(uid=14620) diff --git a/resources/config/1/uniontmp/var/log/daemon.log b/resources/config/1/uniontmp/var/log/daemon.log new file mode 100755 index 0000000..75da05d --- /dev/null +++ b/resources/config/1/uniontmp/var/log/daemon.log @@ -0,0 +1,45 @@ +Jan 5 13:24:31 lsfks20 acpid: starting up with proc fs +Jan 5 13:23:14 lsfks20 acpid: 36 rules loaded +Jan 5 13:23:14 lsfks20 acpid: waiting for events: event logging is off +Jan 5 13:23:14 lsfks20 udevd-work[2819]: mknod(/dev/pktcdvd/control, 020660, (10,60) failed: Not a directory +Jan 5 13:23:14 lsfks20 sm-notify[2604]: Failed to open /var/lib/nfs/sm.bak: No such file or directory +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Version 1.1.6 Starting +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Flags: +Jan 5 13:23:14 lsfks20 vmnetBridge: Daemon created. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface eth0 index:2 +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface br0 index:3 +Jan 5 13:23:14 lsfks20 vmnetBridge: RTM_NEWROUTE: index:3 +Jan 5 13:23:14 lsfks20 vmnetBridge: Stopped bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge br0 to virtual network 0. +Jan 5 13:23:14 lsfks20 udhcpd[3127]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3127]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3127]: can't open '/var/run/vmware/udhcpd-vmnet1.leases': No such file or directory +Jan 5 13:23:14 lsfks20 udhcpd[3195]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3195]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3195]: can't open '/var/run/vmware/udhcpd-vmnet8.leases': No such file or directory +Jan 5 13:23:25 lsfks20 automount[3293]: read_map_source: relative path invalid in files map name +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:*-Greeter] at /etc/kde4/kdm/kdmrc:15 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'LogSource' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:29 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:31 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized section name [xdmcp] at /etc/kde4/kdm/kdmrc:33 +Jan 5 13:23:25 lsfks20 automount[3293]: lookup_init:136: lookup(yp): map #/etc/auto.misc: Local domain name not set +Jan 5 13:23:25 lsfks20 acpid: client connected from 3307[0:0] +Jan 5 13:23:25 lsfks20 acpid: 1 client rule loaded +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: Could not parse desktop file /home/mp57/.config/autostart/xfconf-migration-4.6.desktop: Die Schlüsselwertedatei enthält nicht den Schlüssel »Name« +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: could not read /home/mp57/.config/autostart/xfconf-migration-4.6.desktop +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. +Jan 5 13:28:53 lsfks20 polkitd[3760]: started daemon version 0.96 using authority implementation `local' version `0.96' +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3770 of process 3770 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3776 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3777 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3791 of process 3791 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. diff --git a/resources/config/1/uniontmp/var/log/debug b/resources/config/1/uniontmp/var/log/debug new file mode 100755 index 0000000..44c3be3 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/debug @@ -0,0 +1,159 @@ +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT +Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. +Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device +Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. +Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp +Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). +Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 +Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge +Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down +Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached +Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing +Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present +Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present +Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present +Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. diff --git a/resources/config/1/uniontmp/var/log/dmesg b/resources/config/1/uniontmp/var/log/dmesg new file mode 100755 index 0000000..36af8c6 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/dmesg @@ -0,0 +1,673 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] NSC Geode by NSC +[ 0.000000] Cyrix CyrixInstead +[ 0.000000] Centaur CentaurHauls +[ 0.000000] Transmeta GenuineTMx86 +[ 0.000000] Transmeta TransmetaCPU +[ 0.000000] UMC UMC UMC UMC +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +[ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +[ 0.000000] DMI 2.4 present. +[ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-E3FFF write-protect +[ 0.000000] E4000-EFFFF write-back +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FF80000000 write-back +[ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +[ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +[ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +[ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] TOM2: 0000000130000000 aka 4864M +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +[ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +[ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +[ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +[ 0.000000] initial memory mapped : 0 - 00e00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] 0000000000 - 0000200000 page 4k +[ 0.000000] 0000200000 - 0037800000 page 2M +[ 0.000000] 0037800000 - 00379fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +[ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +[ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +[ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +[ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +[ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +[ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +[ 0.000000] ACPI: FACS cfec7f00 00040 +[ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 3974MB HIGHMEM available. +[ 0.000000] 889MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 379fe000 +[ 0.000000] low ram: 0 - 379fe000 +[ 0.000000] node 0 low ram: 00000000 - 379fe000 +[ 0.000000] node 0 bootmap 00009000 - 0000ff40 +[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +[ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +[ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +[ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +[ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +[ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +[ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000000 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000379fe +[ 0.000000] HighMem 0x000379fe -> 0x00130000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000000 -> 0x00000002 +[ 0.000000] 0: 0x00000006 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +[ 0.000000] 0: 0x00100000 -> 0x00130000 +[ 0.000000] On node 0 totalpages: 1048146 +[ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1748 pages used for memmap +[ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 7949 pages used for memmap +[ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 24 +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +[ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +[ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +[ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 24903680 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +[ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +[ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +[ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +[ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +[ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] NR_IRQS:2304 nr_irqs:424 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2493.628 MHz processor. +[ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +[ 0.008020] Security Framework initialized +[ 0.008038] AppArmor: AppArmor initialized +[ 0.008044] Mount-cache hash table entries: 512 +[ 0.012007] Initializing cgroup subsys ns +[ 0.012011] Initializing cgroup subsys cpuacct +[ 0.012014] Initializing cgroup subsys memory +[ 0.012020] Initializing cgroup subsys devices +[ 0.012022] Initializing cgroup subsys freezer +[ 0.012024] Initializing cgroup subsys net_cls +[ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.012044] CPU: Physical Processor ID: 0 +[ 0.012046] CPU: Processor Core ID: 0 +[ 0.012049] mce: CPU supports 5 MCE banks +[ 0.012059] using C1E aware idle routine +[ 0.012066] Performance Events: AMD PMU driver. +[ 0.012069] ... version: 0 +[ 0.012071] ... bit width: 48 +[ 0.012072] ... generic registers: 4 +[ 0.012074] ... value mask: 0000ffffffffffff +[ 0.012076] ... max period: 00007fffffffffff +[ 0.012078] ... fixed-purpose events: 0 +[ 0.012079] ... event mask: 000000000000000f +[ 0.012083] Checking 'hlt' instruction... OK. +[ 0.029950] ACPI: Core revision 20090903 +[ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.039977] ftrace: allocating 22420 entries in 44 pages +[ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +[ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +[ 0.012000] Initializing CPU#1 +[ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.012000] CPU: Physical Processor ID: 0 +[ 0.012000] CPU: Processor Core ID: 1 +[ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +[ 0.172072] Brought up 2 CPUs +[ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +[ 0.172237] CPU0 attaching sched-domain: +[ 0.172240] domain 0: span 0-1 level MC +[ 0.172242] groups: 0 1 +[ 0.172247] CPU1 attaching sched-domain: +[ 0.172249] domain 0: span 0-1 level MC +[ 0.172251] groups: 1 0 +[ 0.172319] devtmpfs: initialized +[ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +[ 0.172319] regulator: core version 0.5 +[ 0.172319] Time: 12:24:22 Date: 01/05/11 +[ 0.172319] NET: Registered protocol family 16 +[ 0.172319] EISA bus registered +[ 0.172319] Trying to unpack rootfs image as initramfs... +[ 0.172319] ACPI: bus type pci registered +[ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +[ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +[ 0.172319] PCI: Using MMCONFIG for extended config space +[ 0.172319] PCI: Using configuration type 1 for base access +[ 0.176093] bio: create slab at 0 +[ 0.176604] ACPI: EC: Look up EC in DSDT +[ 0.179477] ACPI: Interpreter enabled +[ 0.179481] ACPI: (supports S0 S3 S4 S5) +[ 0.179498] ACPI: Using IOAPIC for interrupt routing +[ 0.182958] ACPI: No dock devices found. +[ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +[ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +[ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +[ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +[ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +[ 0.183342] pci 0000:00:02.0: PME# disabled +[ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 0.183380] pci 0000:00:07.0: PME# disabled +[ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +[ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +[ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +[ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +[ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +[ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +[ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +[ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +[ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +[ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +[ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +[ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +[ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +[ 0.183927] pci 0000:00:13.5: supports D1 D2 +[ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +[ 0.183933] pci 0000:00:13.5: PME# disabled +[ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +[ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +[ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +[ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +[ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +[ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +[ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +[ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.184211] pci 0000:00:14.2: PME# disabled +[ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +[ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +[ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +[ 0.184443] pci 0000:02:00.0: supports D1 D2 +[ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +[ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +[ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +[ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +[ 0.184629] pci 0000:3f:00.0: PME# disabled +[ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +[ 0.184755] pci 0000:00:14.4: transparent bridge +[ 0.184774] pci_bus 0000:00: on NUMA node 0 +[ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +[ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +[ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +[ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +[ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +[ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.200343] vgaarb: loaded +[ 0.200440] SCSI subsystem initialized +[ 0.200519] libata version 3.00 loaded. +[ 0.200580] usbcore: registered new interface driver usbfs +[ 0.200595] usbcore: registered new interface driver hub +[ 0.200618] usbcore: registered new device driver usb +[ 0.200753] ACPI: WMI: Mapper loaded +[ 0.200755] PCI: Using ACPI for IRQ routing +[ 0.200903] NetLabel: Initializing +[ 0.200905] NetLabel: domain hash size = 128 +[ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.200918] NetLabel: unlabeled traffic allowed by default +[ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +[ 0.202990] Switching to clocksource hpet +[ 0.203240] AppArmor: AppArmor Filesystem Enabled +[ 0.203240] pnp: PnP ACPI init +[ 0.203240] ACPI: bus type pnp registered +[ 0.203882] pnp: PnP ACPI: found 15 devices +[ 0.203884] ACPI: ACPI bus type pnp unregistered +[ 0.203887] PnPBIOS: Disabled by ACPI PNP +[ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +[ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +[ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +[ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +[ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +[ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +[ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +[ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +[ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +[ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +[ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +[ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +[ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +[ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +[ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +[ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +[ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +[ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +[ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +[ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +[ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +[ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +[ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +[ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +[ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +[ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +[ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +[ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +[ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +[ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +[ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +[ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +[ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +[ 0.238684] pci 0000:00:07.0: IO window: disabled +[ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +[ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +[ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +[ 0.238694] pci 0000:00:14.4: IO window: disabled +[ 0.238699] pci 0000:00:14.4: MEM window: disabled +[ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +[ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +[ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +[ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +[ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +[ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +[ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +[ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +[ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +[ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +[ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +[ 0.238780] NET: Registered protocol family 2 +[ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.240198] TCP reno registered +[ 0.240284] NET: Registered protocol family 1 +[ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +[ 0.240370] pci 0000:02:00.0: Boot video device +[ 0.240551] cpufreq-nforce2: No nForce2 chipset. +[ 0.240574] Scanning for low memory corruption every 60 seconds +[ 0.240681] audit: initializing netlink socket (disabled) +[ 0.240691] type=2000 audit(1294230262.240:1): initialized +[ 0.249307] highmem bounce pool size: 64 pages +[ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.250539] VFS: Disk quotas dquot_6.5.2 +[ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.251068] fuse init (API version 7.13) +[ 0.251139] msgmni has been set to 1625 +[ 0.251329] alg: No test for stdrng (krng) +[ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.251377] io scheduler noop registered +[ 0.251379] io scheduler anticipatory registered +[ 0.251381] io scheduler deadline registered +[ 0.251414] io scheduler cfq registered (default) +[ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +[ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +[ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.251713] ACPI: Power Button [PBTN] +[ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.251756] ACPI: Power Button [PWRF] +[ 0.251956] processor LNXCPU:00: registered as cooling_device0 +[ 0.252097] processor LNXCPU:01: registered as cooling_device1 +[ 0.253777] isapnp: Scanning for PnP cards... +[ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.256308] brd: module loaded +[ 0.256698] loop: module loaded +[ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +[ 0.256921] alloc irq_desc for 16 on node -1 +[ 0.256923] alloc kstat_irqs on node -1 +[ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.257252] Fixed MDIO Bus: probed +[ 0.257286] PPP generic driver version 2.4.2 +[ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +[ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +[ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.257413] alloc irq_desc for 19 on node -1 +[ 0.257415] alloc kstat_irqs on node -1 +[ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +[ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +[ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +[ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +[ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +[ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +[ 0.269326] usb usb1: configuration #1 chosen from 1 choice +[ 0.269352] hub 1-0:1.0: USB hub found +[ 0.269360] hub 1-0:1.0: 10 ports detected +[ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +[ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +[ 0.321535] Freeing initrd memory: 6158k freed +[ 0.329388] usb usb2: configuration #1 chosen from 1 choice +[ 0.329413] hub 2-0:1.0: USB hub found +[ 0.329426] hub 2-0:1.0: 2 ports detected +[ 0.329480] alloc irq_desc for 17 on node -1 +[ 0.329482] alloc kstat_irqs on node -1 +[ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +[ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +[ 0.389066] usb usb3: configuration #1 chosen from 1 choice +[ 0.389087] hub 3-0:1.0: USB hub found +[ 0.389097] hub 3-0:1.0: 2 ports detected +[ 0.389136] alloc irq_desc for 18 on node -1 +[ 0.389138] alloc kstat_irqs on node -1 +[ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +[ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +[ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +[ 0.449065] usb usb4: configuration #1 chosen from 1 choice +[ 0.449086] hub 4-0:1.0: USB hub found +[ 0.449095] hub 4-0:1.0: 2 ports detected +[ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +[ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +[ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +[ 0.509057] usb usb5: configuration #1 chosen from 1 choice +[ 0.509078] hub 5-0:1.0: USB hub found +[ 0.509087] hub 5-0:1.0: 2 ports detected +[ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +[ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +[ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +[ 0.569055] usb usb6: configuration #1 chosen from 1 choice +[ 0.569076] hub 6-0:1.0: USB hub found +[ 0.569085] hub 6-0:1.0: 2 ports detected +[ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +[ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.571764] mice: PS/2 mouse device common for all mice +[ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +[ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 0.571998] device-mapper: uevent: version 1.0.3 +[ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +[ 0.572162] device-mapper: multipath: version 1.1.0 loaded +[ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.572263] EISA: Probing bus 0 at eisa.0 +[ 0.572270] Cannot allocate resource for EISA slot 1 +[ 0.572300] EISA: Detected 0 cards. +[ 0.572367] cpuidle: using governor ladder +[ 0.572369] cpuidle: using governor menu +[ 0.572740] TCP cubic registered +[ 0.572877] NET: Registered protocol family 10 +[ 0.573274] lo: Disabled Privacy Extensions +[ 0.573540] NET: Registered protocol family 17 +[ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +[ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +[ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +[ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +[ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +[ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +[ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +[ 0.607797] isapnp: No Plug & Play device found +[ 0.607819] powernow-k8: ph2 null fid transition 0x11 +[ 0.607844] Using IPI No-Shortcut mode +[ 0.607931] PM: Resume from disk failed. +[ 0.607947] registered taskstats version 1 +[ 0.608207] Magic number: 11:987:429 +[ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +[ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.608301] EDD information not available. +[ 0.608351] Freeing unused kernel memory: 672k freed +[ 0.608801] Write protecting the kernel text: 4836k +[ 0.608861] Write protecting the kernel read-only data: 1880k +[ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +[ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +[ 0.663001] vesafb: protected mode interface info at c000:a01e +[ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +[ 0.663005] vesafb: scrolling: redraw +[ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +[ 0.663591] fb0: VESA VGA frame buffer device +[ 0.671307] Console: switching to colour frame buffer device 128x48 +[ 0.705121] usbcore: registered new interface driver hiddev +[ 0.705613] usbcore: registered new interface driver usbhid +[ 0.705617] usbhid: v2.6:USB HID core driver +[ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +[ 1.066113] tg3.c:v3.102 (September 1, 2009) +[ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +[ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +[ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.184045] Bridge firewalling registered +[ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +[ 1.232247] device eth0 entered promiscuous mode +[ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +[ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +[ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +[ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +[ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +[ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +[ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +[ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +[ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +[ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +[ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[ 4.379979] br0: port 1(eth0) entering forwarding state +[ 5.348605] RPC: Registered udp transport module. +[ 5.348609] RPC: Registered tcp transport module. +[ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 5.419953] ahci 0000:00:12.0: version 3.0 +[ 5.419971] alloc irq_desc for 22 on node -1 +[ 5.419973] alloc kstat_irqs on node -1 +[ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +[ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +[ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +[ 5.420538] scsi0 : ahci +[ 5.421424] scsi1 : ahci +[ 5.421992] scsi2 : ahci +[ 5.423101] scsi3 : ahci +[ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +[ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +[ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +[ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +[ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +[ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +[ 5.908026] ata1: softreset failed (device not ready) +[ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +[ 5.908051] ata2: softreset failed (device not ready) +[ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +[ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +[ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +[ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.073402] ata1.00: configured for UDMA/133 +[ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +[ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.079640] ata2.00: configured for UDMA/100 +[ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +[ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +[ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +[ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 6.093820] sda: +[ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 6.112956] sda1 sda2 sda3 sda4 +[ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +[ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +[ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 6.544933] Uniform CD-ROM driver Revision: 3.20 +[ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 6.556221] Linux agpgart interface v0.103 +[ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +[ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 6.661458] scsi4 : pata_atiixp +[ 6.662649] scsi5 : pata_atiixp +[ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +[ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +[ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +[ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +[ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +[ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +[ 7.848088] ppdev: user-space parallel port driver +[ 7.917660] aufs 2-standalone.tree-20091207 +[ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +[ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +[ 7.985345] Using default: (25% of RAM). +[ 7.985348] ramzswap: disk size set to 1030140 kB +[ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +[ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 9.732649] udev: starting version 151 +[ 9.783447] lp0: using parport0 (interrupt-driven). +[ 9.963224] [drm] Initialized drm 1.1.0 20060810 +[ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +[ 10.165758] [drm] radeon defaulting to kernel modesetting. +[ 10.165761] [drm] radeon kernel modesetting enabled. +[ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +[ 10.167854] [drm] radeon: Initializing kernel modesetting. +[ 10.203499] [drm] register mmio base: 0xF0100000 +[ 10.203502] [drm] register mmio size: 65536 +[ 10.203754] ATOM BIOS: 113 +[ 10.203768] [drm] Clocks initialized ! +[ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +[ 10.203959] [drm] RAM width 64bits DDR +[ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +[ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +[ 10.207479] [drm] radeon: 256M of VRAM memory ready +[ 10.207481] [drm] radeon: 512M of GTT memory ready. +[ 10.207521] [drm] radeon: irq initialized. +[ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 10.217958] [drm] Loading RV610 Microcode +[ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +[ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +[ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +[ 10.422024] [drm] ring test succeeded in 1 usecs +[ 10.426041] [drm] radeon: ib pool ready. +[ 10.426122] [drm] ib test succeeded in 0 usecs +[ 10.426125] [drm] Enabling audio support +[ 10.426155] [drm] Default TV standard: NTSC +[ 10.428628] [drm] Radeon Display Connectors +[ 10.428631] [drm] Connector 0: +[ 10.428633] [drm] DIN +[ 10.428634] [drm] Encoders: +[ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +[ 10.428637] [drm] Connector 1: +[ 10.428639] [drm] DVI-I +[ 10.428640] [drm] HPD2 +[ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 10.428644] [drm] Encoders: +[ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +[ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +[ 10.428648] [drm] Connector 2: +[ 10.428650] [drm] DVI-I +[ 10.428651] [drm] HPD1 +[ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 10.428654] [drm] Encoders: +[ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +[ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +[ 10.451333] vboxdrv: Successfully done. +[ 10.451335] vboxdrv: Found 2 processor cores. +[ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +[ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +[ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). diff --git a/resources/config/1/uniontmp/var/log/dmesg.0 b/resources/config/1/uniontmp/var/log/dmesg.0 new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/kdm.log b/resources/config/1/uniontmp/var/log/kdm.log new file mode 100755 index 0000000..29ac52e --- /dev/null +++ b/resources/config/1/uniontmp/var/log/kdm.log @@ -0,0 +1,77 @@ +******************************************************************************** +Note that your system uses syslog. All of kdm's internally generated messages +(i.e., not from libraries and external programs/scripts it uses) go to the +daemon.* syslog facility; check your syslog configuration to find out to which +file(s) it is logged. PAM logs messages related to authentication to authpriv.*. +******************************************************************************** + + +X.Org X Server 1.7.6 +Release Date: 2010-03-17 +X Protocol Version 11, Revision 0 +Build Operating System: Linux 2.6.24-27-server i686 Ubuntu +Current Operating System: Linux lsfks20 2.6.32-25-generic-pae #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 i686 +Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Build Date: 21 July 2010 12:47:34PM +xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) +Current version of pixman: 0.16.4 + Before reporting problems, check http://wiki.x.org + to make sure that you have the latest version. +Markers: (--) probed, (**) from config file, (==) default setting, + (++) from command line, (!!) notice, (II) informational, + (WW) warning, (EE) error, (NI) not implemented, (??) unknown. +(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 5 13:23:25 2011 +(==) Using config file: "/etc/X11/xorg.conf" +(==) Using config directory: "/usr/lib/X11/xorg.conf.d" +(II) [KMS] Kernel modesetting enabled. +(EE) Generic Keyboard: No device specified. +(EE) PreInit returned NULL for "Generic Keyboard" +QFont::fromString: Invalid description 'Serif,20,5,0,50,0' +QFont::fromString: Invalid description 'Sans Serif,10,5,0,50,0' +QFont::fromString: Invalid description 'Sans Serif,10,5,0,75,0' +QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: No such file or directory +QFileSystemWatcher: failed to add paths: /tmp/0861351660/.config/ibus/bus +Bus::open: Can not get ibus-daemon's address. +IBusInputContext::createInputContext: no connection to ibus-daemon +The XKEYBOARD keymap compiler (xkbcomp) reports: +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +Errors from xkbcomp are not fatal to the X server diff --git a/resources/config/1/uniontmp/var/log/kern.log b/resources/config/1/uniontmp/var/log/kern.log new file mode 100755 index 0000000..3489c61 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/kern.log @@ -0,0 +1,725 @@ +Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. +Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns +Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct +Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory +Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer +Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls +Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks +Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine +Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. +Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f +Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. +Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access +Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT +Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) +Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. +Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge +Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs +Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub +Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb +Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default +Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP +Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device +Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. +Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds +Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... +Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed +Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice +Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. +Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder +Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu +Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions +Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found +Jan 5 13:24:31 lsfks20 kernel: [ 0.607819] powernow-k8: ph2 null fid transition 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. +Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k +Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw +Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device +Jan 5 13:24:31 lsfks20 kernel: [ 0.671307] Console: switching to colour frame buffer device 128x48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev +Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid +Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver +Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) +Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered +Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode +Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state +Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908026] ata1: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 5.908051] ata2: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: +Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.112956] sda1 sda2 sda3 sda4 +Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 +Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 +Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver +Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 +Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). +Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB +Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 +Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). +Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 +Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! +Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR +Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready +Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode +Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support +Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC +Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors +Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN +Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). +Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 +Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge +Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down +Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached +Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 +Jan 5 13:23:14 lsfks20 kernel: [ 10.738346] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 +Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 +Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team +Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device +Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier +Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing +Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present +Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k +Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present +Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found +Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present +Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present +Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present diff --git a/resources/config/1/uniontmp/var/log/lastlog b/resources/config/1/uniontmp/var/log/lastlog new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/lpr.log b/resources/config/1/uniontmp/var/log/lpr.log new file mode 100755 index 0000000..84f98f1 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/lpr.log @@ -0,0 +1,4 @@ +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent diff --git a/resources/config/1/uniontmp/var/log/mail.err b/resources/config/1/uniontmp/var/log/mail.err new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/mail.info b/resources/config/1/uniontmp/var/log/mail.info new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/mail.log b/resources/config/1/uniontmp/var/log/mail.log new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/mail.warn b/resources/config/1/uniontmp/var/log/mail.warn new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/messages b/resources/config/1/uniontmp/var/log/messages new file mode 100755 index 0000000..8eaf361 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/messages @@ -0,0 +1,574 @@ +Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. +Jan 5 13:24:31 lsfks20 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="2615" x-info="http://www.rsyslog.com"] (re)start +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's groupid changed to 102 +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's userid changed to 101 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. +Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns +Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct +Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory +Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer +Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls +Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks +Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine +Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. +Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f +Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. +Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access +Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) +Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. +Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge +Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs +Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub +Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb +Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default +Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP +Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. +Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds +Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... +Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed +Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice +Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. +Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder +Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu +Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions +Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found +Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k +Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw +Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device +Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev +Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid +Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver +Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) +Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered +Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode +Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state +Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: +Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 +Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 +Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver +Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 +Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). +Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB +Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 +Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). +Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 +Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! +Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR +Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready +Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode +Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support +Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC +Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors +Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN +Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 +Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 +Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 +Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team +Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device +Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier +Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present +Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k +Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found diff --git a/resources/config/1/uniontmp/var/log/news/news.crit b/resources/config/1/uniontmp/var/log/news/news.crit new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/news/news.err b/resources/config/1/uniontmp/var/log/news/news.err new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/news/news.notice b/resources/config/1/uniontmp/var/log/news/news.notice new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/pm-powersave.log b/resources/config/1/uniontmp/var/log/pm-powersave.log new file mode 100755 index 0000000..996d91c --- /dev/null +++ b/resources/config/1/uniontmp/var/log/pm-powersave.log @@ -0,0 +1,7 @@ +/usr/lib/pm-utils/power.d/95hdparm-apm false:success. +/usr/lib/pm-utils/power.d/anacron false:start: Unknown job: anacron +success. +/usr/lib/pm-utils/power.d/powersave-policy-dirty-writeback false:success. +/usr/lib/pm-utils/power.d/powersave-policy-hda-powerdown false:success. +/usr/lib/pm-utils/power.d/sched-powersave false:**sched policy powersave OFF +success. diff --git a/resources/config/1/uniontmp/var/log/syslog b/resources/config/1/uniontmp/var/log/syslog new file mode 100755 index 0000000..2261682 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/syslog @@ -0,0 +1,781 @@ +Jan 5 13:24:31 lsfks20 rsyslogd: connot create '/var/spool/postfix/dev/log': No such file or directory +Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. +Jan 5 13:24:31 lsfks20 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="2615" x-info="http://www.rsyslog.com"] (re)start +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's groupid changed to 102 +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's userid changed to 101 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. +Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns +Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct +Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory +Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer +Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls +Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks +Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine +Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. +Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f +Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. +Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access +Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT +Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) +Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. +Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge +Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs +Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub +Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb +Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default +Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP +Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device +Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. +Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds +Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... +Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed +Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice +Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. +Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder +Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu +Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions +Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found +Jan 5 13:24:31 lsfks20 kernel: [ 0.607819] powernow-k8: ph2 null fid transition 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. +Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k +Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw +Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device +Jan 5 13:24:31 lsfks20 kernel: [ 0.671307] Console: switching to colour frame buffer device 128x48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev +Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid +Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver +Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) +Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered +Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode +Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state +Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908026] ata1: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 5.908051] ata2: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: +Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.112956] sda1 sda2 sda3 sda4 +Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 +Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 +Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver +Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 +Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). +Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB +Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 +Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent +Jan 5 13:24:31 lsfks20 acpid: starting up with proc fs +Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 +Jan 5 13:23:14 lsfks20 acpid: 36 rules loaded +Jan 5 13:23:14 lsfks20 acpid: waiting for events: event logging is off +Jan 5 13:23:14 lsfks20 udevd-work[2819]: mknod(/dev/pktcdvd/control, 020660, (10,60) failed: Not a directory +Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! +Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR +Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready +Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode +Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +Jan 5 13:23:14 lsfks20 sm-notify[2604]: Failed to open /var/lib/nfs/sm.bak: No such file or directory +Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Version 1.1.6 Starting +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Flags: +Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support +Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC +Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors +Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN +Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). +Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 +Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized +Jan 5 13:23:14 lsfks20 vmnetBridge: Daemon created. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface eth0 index:2 +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface br0 index:3 +Jan 5 13:23:14 lsfks20 vmnetBridge: RTM_NEWROUTE: index:3 +Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge +Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened +Jan 5 13:23:14 lsfks20 vmnetBridge: Stopped bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge br0 to virtual network 0. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down +Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached +Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened +Jan 5 13:23:14 lsfks20 udhcpd[3127]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3127]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3127]: can't open '/var/run/vmware/udhcpd-vmnet1.leases': No such file or directory +Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 +Jan 5 13:23:14 lsfks20 kernel: [ 10.738346] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 +Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 +Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team +Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device +Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier +Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing +Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present +Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +Jan 5 13:23:14 lsfks20 udhcpd[3195]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3195]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3195]: can't open '/var/run/vmware/udhcpd-vmnet8.leases': No such file or directory +Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k +Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present +Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found +Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present +Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present +Jan 5 13:23:25 lsfks20 automount[3293]: read_map_source: relative path invalid in files map name +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:*-Greeter] at /etc/kde4/kdm/kdmrc:15 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'LogSource' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:29 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:31 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized section name [xdmcp] at /etc/kde4/kdm/kdmrc:33 +Jan 5 13:23:25 lsfks20 automount[3293]: lookup_init:136: lookup(yp): map #/etc/auto.misc: Local domain name not set +Jan 5 13:23:25 lsfks20 acpid: client connected from 3307[0:0] +Jan 5 13:23:25 lsfks20 acpid: 1 client rule loaded +Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: Could not parse desktop file /home/mp57/.config/autostart/xfconf-migration-4.6.desktop: Die Schlüsselwertedatei enthält nicht den Schlüssel »Name« +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: could not read /home/mp57/.config/autostart/xfconf-migration-4.6.desktop +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. +Jan 5 13:28:53 lsfks20 polkitd[3760]: started daemon version 0.96 using authority implementation `local' version `0.96' +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3770 of process 3770 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3776 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3777 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3791 of process 3791 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. +Jan 5 13:28:54 lsfks20 pulseaudio[3791]: pid.c: Daemon already running. +Jan 5 13:35:46 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) +Jan 5 13:35:59 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) diff --git a/resources/config/1/uniontmp/var/log/udev b/resources/config/1/uniontmp/var/log/udev new file mode 100755 index 0000000..a441144 --- /dev/null +++ b/resources/config/1/uniontmp/var/log/udev @@ -0,0 +1,9121 @@ +monitor will print the received events for: +UDEV - the event which udev sends out after rule processing +KERNEL - the kernel uevent + +KERNEL[1294230271.657599] add /devices/virtual/vc/vcs4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs4 +SUBSYSTEM=vc +DEVNAME=vcs4 +SEQNUM=832 +MAJOR=7 +MINOR=4 + +KERNEL[1294230271.657621] add /devices/virtual/vc/vcsa4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa4 +SUBSYSTEM=vc +DEVNAME=vcsa4 +SEQNUM=833 +MAJOR=7 +MINOR=132 + +UDEV [1294230271.658269] add /devices/virtual/vc/vcsa4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa4 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa4 +SEQNUM=833 +MAJOR=7 +MINOR=132 +DEVLINKS=/dev/char/7:132 + +UDEV [1294230271.658287] add /devices/virtual/vc/vcs4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs4 +SUBSYSTEM=vc +DEVNAME=/dev/vcs4 +SEQNUM=832 +MAJOR=7 +MINOR=4 +DEVLINKS=/dev/char/7:4 + +KERNEL[1294230271.664310] add /devices/virtual/vc/vcs5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs5 +SUBSYSTEM=vc +DEVNAME=vcs5 +SEQNUM=834 +MAJOR=7 +MINOR=5 + +KERNEL[1294230271.668907] add /devices/LNXSYSTM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYSTM: +SEQNUM=835 + +UDEV [1294230271.672620] add /devices/virtual/vc/vcs5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs5 +SUBSYSTEM=vc +DEVNAME=/dev/vcs5 +SEQNUM=834 +MAJOR=7 +MINOR=5 +DEVLINKS=/dev/char/7:5 + +KERNEL[1294230271.672963] add /devices/virtual/vc/vcsa5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa5 +SUBSYSTEM=vc +DEVNAME=vcsa5 +SEQNUM=836 +MAJOR=7 +MINOR=133 + +UDEV [1294230271.673534] add /devices/virtual/vc/vcsa5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa5 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa5 +SEQNUM=836 +MAJOR=7 +MINOR=133 +DEVLINKS=/dev/char/7:133 + +KERNEL[1294230271.673906] add /devices/LNXSYSTM:00/LNXCPU:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:00 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=837 + +KERNEL[1294230271.673987] add /devices/LNXSYSTM:00/LNXCPU:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:01 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=838 + +KERNEL[1294230271.674055] add /devices/LNXSYSTM:00/LNXCPU:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:02 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=839 + +KERNEL[1294230271.674122] add /devices/LNXSYSTM:00/LNXCPU:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:03 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=840 + +KERNEL[1294230271.674187] add /devices/LNXSYSTM:00/LNXPWRBN:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:LNXPWRBN: +SEQNUM=841 + +KERNEL[1294230271.674265] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="LNXPWRBN/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=842 + +KERNEL[1294230271.674339] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 +SUBSYSTEM=input +DEVNAME=input/event1 +SEQNUM=843 +MAJOR=13 +MINOR=65 + +KERNEL[1294230271.674405] add /devices/LNXSYSTM:00/LNXSYBUS:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYBUS: +SEQNUM=844 + +KERNEL[1294230271.674470] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 +SUBSYSTEM=acpi +DRIVER=pci_root +MODALIAS=acpi:PNP0A08:PNP0A03: +SEQNUM=845 + +KERNEL[1294230271.674536] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=846 + +KERNEL[1294230271.674601] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=847 + +KERNEL[1294230271.674679] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=848 + +KERNEL[1294230271.674753] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=849 + +KERNEL[1294230271.674819] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=850 + +KERNEL[1294230271.674885] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=851 + +KERNEL[1294230271.674951] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=852 + +KERNEL[1294230271.675026] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=854 + +KERNEL[1294230271.675039] add /module/lp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/lp +SUBSYSTEM=module +SEQNUM=853 + +KERNEL[1294230271.675690] add /class/printer (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/printer +SUBSYSTEM=class +SEQNUM=855 + +UDEV [1294230271.675705] add /class/printer (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/printer +SUBSYSTEM=class +SEQNUM=855 + +KERNEL[1294230271.675745] add /devices/pnp0/00:07/printer/lp0 (printer) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/printer/lp0 +SUBSYSTEM=printer +DEVNAME=lp0 +SEQNUM=856 +MAJOR=6 +MINOR=0 + +KERNEL[1294230271.676233] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=857 + +KERNEL[1294230271.676311] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=858 + +KERNEL[1294230271.676379] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=859 + +KERNEL[1294230271.676447] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0000: +SEQNUM=860 + +KERNEL[1294230271.676515] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0003: +SEQNUM=861 + +KERNEL[1294230271.676582] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0100: +SEQNUM=862 + +KERNEL[1294230271.676648] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0103: +SEQNUM=863 + +KERNEL[1294230271.676743] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0200: +SEQNUM=864 + +KERNEL[1294230271.676823] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0303: +SEQNUM=865 + +KERNEL[1294230271.676889] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0401: +SEQNUM=866 + +KERNEL[1294230271.676965] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0501:PNP0500: +SEQNUM=867 + +KERNEL[1294230271.677036] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0700: +SEQNUM=868 + +KERNEL[1294230271.677106] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0800: +SEQNUM=869 + +KERNEL[1294230271.677182] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0B00: +SEQNUM=870 + +KERNEL[1294230271.677285] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C04: +SEQNUM=871 + +KERNEL[1294230271.680482] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0F13:PNP0F0E: +SEQNUM=872 + +KERNEL[1294230271.680857] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=873 + +KERNEL[1294230271.681021] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=874 + +KERNEL[1294230271.681099] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=875 + +KERNEL[1294230271.681254] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=876 + +KERNEL[1294230271.681469] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=877 + +KERNEL[1294230271.681673] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=878 + +KERNEL[1294230271.682048] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=879 + +KERNEL[1294230271.683231] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=880 + +KERNEL[1294230271.683385] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=881 + +KERNEL[1294230271.683625] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=882 + +KERNEL[1294230271.683808] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=883 + +KERNEL[1294230271.684821] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=884 + +KERNEL[1294230271.685183] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=885 + +KERNEL[1294230271.685290] add /devices/virtual/vc/vcs2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs2 +SUBSYSTEM=vc +DEVNAME=vcs2 +SEQNUM=886 +MAJOR=7 +MINOR=2 + +KERNEL[1294230271.685385] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=887 + +KERNEL[1294230271.685513] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=888 + +KERNEL[1294230271.685647] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=889 + +KERNEL[1294230271.685793] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=890 + +UDEV [1294230271.686061] add /devices/virtual/vc/vcs2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs2 +SUBSYSTEM=vc +DEVNAME=/dev/vcs2 +SEQNUM=886 +MAJOR=7 +MINOR=2 +DEVLINKS=/dev/char/7:2 + +KERNEL[1294230271.686663] add /devices/virtual/vc/vcsa2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa2 +SUBSYSTEM=vc +DEVNAME=vcsa2 +SEQNUM=892 +MAJOR=7 +MINOR=130 + +UDEV [1294230271.687078] add /devices/virtual/vc/vcsa2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa2 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa2 +SEQNUM=892 +MAJOR=7 +MINOR=130 +DEVLINKS=/dev/char/7:130 + +KERNEL[1294230271.687097] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=891 + +KERNEL[1294230271.687175] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=893 + +KERNEL[1294230271.687296] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C01: +SEQNUM=894 + +KERNEL[1294230271.687339] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:PNP0C0C: +SEQNUM=895 + +KERNEL[1294230271.688981] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="PNP0C0C/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=896 + +KERNEL[1294230271.689084] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 +SUBSYSTEM=input +DEVNAME=input/event0 +SEQNUM=897 +MAJOR=13 +MINOR=64 + +KERNEL[1294230271.689164] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 +SUBSYSTEM=acpi +DRIVER=wmi +MODALIAS=acpi:PNP0C14: +SEQNUM=898 + +KERNEL[1294230271.689304] add /devices/LNXSYSTM:00/LNXTHERM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXTHERM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXTHERM: +SEQNUM=899 + +KERNEL[1294230271.689385] add /devices/pci0000:00/0000:00:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:00.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1002:5950 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:00.0 +MODALIAS=pci:v00001002d00005950sv0000103Csd0000280Abc06sc00i00 +SEQNUM=900 + +KERNEL[1294230271.689987] add /devices/pci0000:00/0000:00:02.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A34 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:02.0 +MODALIAS=pci:v00001002d00005A34sv00000000sd00000000bc06sc04i00 +SEQNUM=901 + +UDEV [1294230271.690809] add /devices/pci0000:00/0000:00:02.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A34 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:02.0 +MODALIAS=pci:v00001002d00005A34sv00000000sd00000000bc06sc04i00 +SEQNUM=901 + +KERNEL[1294230271.692103] add /devices/virtual/vc/vcs3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs3 +SUBSYSTEM=vc +DEVNAME=vcs3 +SEQNUM=902 +MAJOR=7 +MINOR=3 + +KERNEL[1294230271.692454] add /devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=903 + +UDEV [1294230271.692705] add /devices/virtual/vc/vcs3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs3 +SUBSYSTEM=vc +DEVNAME=/dev/vcs3 +SEQNUM=902 +MAJOR=7 +MINOR=3 +DEVLINKS=/dev/char/7:3 + +KERNEL[1294230271.692780] add /devices/virtual/vc/vcsa3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa3 +SUBSYSTEM=vc +DEVNAME=vcsa3 +SEQNUM=904 +MAJOR=7 +MINOR=131 + +UDEV [1294230271.693078] add /devices/virtual/vc/vcsa3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa3 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa3 +SEQNUM=904 +MAJOR=7 +MINOR=131 +DEVLINKS=/dev/char/7:131 + +UDEV [1294230271.693686] add /devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=903 + +KERNEL[1294230271.694011] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0 +SUBSYSTEM=pci +PCI_CLASS=30000 +PCI_ID=1002:94C1 +PCI_SUBSYS_ID=1028:0D02 +PCI_SLOT_NAME=0000:02:00.0 +MODALIAS=pci:v00001002d000094C1sv00001028sd00000D02bc03sc00i00 +SEQNUM=905 + +KERNEL[1294230271.697955] add /devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 +SUBSYSTEM=pci_bus +SEQNUM=906 + +KERNEL[1294230271.701309] add /devices/pci0000:00/0000:00:07.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A39 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:07.0 +MODALIAS=pci:v00001002d00005A39sv00000000sd00000000bc06sc04i00 +SEQNUM=907 + +UDEV [1294230271.703167] add /module/lp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/lp +SUBSYSTEM=module +SEQNUM=853 + +UDEV [1294230271.705953] add /devices/pnp0/00:07/printer/lp0 (printer) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/printer/lp0 +SUBSYSTEM=printer +DEVNAME=/dev/lp0 +SEQNUM=856 +MAJOR=6 +MINOR=0 +DEVLINKS=/dev/char/6:0 + +KERNEL[1294230271.707877] add /devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=908 + +UDEV [1294230271.708277] add /devices/pci0000:00/0000:00:07.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A39 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:07.0 +MODALIAS=pci:v00001002d00005A39sv00000000sd00000000bc06sc04i00 +SEQNUM=907 + +KERNEL[1294230271.708485] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0 +SUBSYSTEM=pci +DRIVER=tg3 +PCI_CLASS=20000 +PCI_ID=14E4:167B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:3f:00.0 +MODALIAS=pci:v000014E4d0000167Bsv0000103Csd0000280Abc02sc00i00 +SEQNUM=909 + +UDEV [1294230271.708876] add /devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=908 + +KERNEL[1294230271.710227] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 +SUBSYSTEM=net +INTERFACE=eth0 +IFINDEX=2 +SEQNUM=910 + +UDEV [1294230271.710248] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0 +SUBSYSTEM=pci +DRIVER=tg3 +PCI_CLASS=20000 +PCI_ID=14E4:167B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:3f:00.0 +MODALIAS=pci:v000014E4d0000167Bsv0000103Csd0000280Abc02sc00i00 +SEQNUM=909 + +KERNEL[1294230271.710262] add /devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f +SUBSYSTEM=pci_bus +SEQNUM=911 + +UDEV [1294230271.710276] add /devices/pci0000:00/0000:00:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:00.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1002:5950 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:00.0 +MODALIAS=pci:v00001002d00005950sv0000103Csd0000280Abc06sc00i00 +SEQNUM=900 + +KERNEL[1294230271.710293] add /devices/pci0000:00/0000:00:12.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0 +SUBSYSTEM=pci +DRIVER=ahci +PCI_CLASS=10601 +PCI_ID=1002:4380 +PCI_SUBSYS_ID=103C:2813 +PCI_SLOT_NAME=0000:00:12.0 +MODALIAS=pci:v00001002d00004380sv0000103Csd00002813bc01sc06i01 +SEQNUM=912 + +KERNEL[1294230271.710307] add /devices/pci0000:00/0000:00:12.0/host0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=913 + +KERNEL[1294230271.710318] add /devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 +SUBSYSTEM=scsi_host +SEQNUM=914 + +KERNEL[1294230271.710330] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=915 + +KERNEL[1294230271.710342] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sd +MODALIAS=scsi:t-0x00 +SEQNUM=916 + +KERNEL[1294230271.710358] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +SUBSYSTEM=block +DEVNAME=sda +DEVTYPE=disk +SEQNUM=917 +MAJOR=8 +MINOR=0 + +UDEV [1294230271.710786] add /devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f +SUBSYSTEM=pci_bus +SEQNUM=911 + +KERNEL[1294230271.711345] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 +SUBSYSTEM=block +DEVNAME=sda1 +DEVTYPE=partition +SEQNUM=918 +MAJOR=8 +MINOR=1 + +UDEV [1294230271.712051] add /devices/LNXSYSTM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYSTM: +SEQNUM=835 + +UDEV [1294230271.712372] add /devices/LNXSYSTM:00/LNXCPU:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:01 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=838 + +UDEV [1294230271.712387] add /devices/LNXSYSTM:00/LNXCPU:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:00 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=837 + +UDEV [1294230271.712401] add /devices/LNXSYSTM:00/LNXCPU:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:02 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=839 + +KERNEL[1294230271.713380] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 +SUBSYSTEM=block +DEVNAME=sda2 +DEVTYPE=partition +SEQNUM=919 +MAJOR=8 +MINOR=2 + +KERNEL[1294230271.713481] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 +SUBSYSTEM=block +DEVNAME=sda3 +DEVTYPE=partition +SEQNUM=920 +MAJOR=8 +MINOR=3 + +KERNEL[1294230271.713578] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 +SUBSYSTEM=block +DEVNAME=sda4 +DEVTYPE=partition +SEQNUM=921 +MAJOR=8 +MINOR=4 + +KERNEL[1294230271.713672] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 +SUBSYSTEM=bsg +DEVNAME=bsg/0:0:0:0 +SEQNUM=922 +MAJOR=253 +MINOR=0 + +KERNEL[1294230271.713825] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=923 + +KERNEL[1294230271.713917] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 (scsi_disk) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 +SUBSYSTEM=scsi_disk +SEQNUM=924 + +KERNEL[1294230271.714000] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 +SUBSYSTEM=scsi_generic +DEVNAME=sg0 +SEQNUM=925 +MAJOR=21 +MINOR=0 + +KERNEL[1294230271.714056] add /devices/virtual/vc/vcs6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs6 +SUBSYSTEM=vc +DEVNAME=vcs6 +SEQNUM=926 +MAJOR=7 +MINOR=6 + +KERNEL[1294230271.714077] add /devices/pci0000:00/0000:00:12.0/host1 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=927 + +KERNEL[1294230271.714123] add /devices/virtual/vc/vcsa6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa6 +SUBSYSTEM=vc +DEVNAME=vcsa6 +SEQNUM=928 +MAJOR=7 +MINOR=134 + +UDEV [1294230271.714862] add /devices/virtual/vc/vcsa6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa6 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa6 +SEQNUM=928 +MAJOR=7 +MINOR=134 +DEVLINKS=/dev/char/7:134 + +UDEV [1294230271.714881] add /devices/virtual/vc/vcs6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs6 +SUBSYSTEM=vc +DEVNAME=/dev/vcs6 +SEQNUM=926 +MAJOR=7 +MINOR=6 +DEVLINKS=/dev/char/7:6 + +KERNEL[1294230271.714982] add /devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 +SUBSYSTEM=scsi_host +SEQNUM=929 + +KERNEL[1294230271.715046] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=930 + +KERNEL[1294230271.715085] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sr +MODALIAS=scsi:t-0x05 +SEQNUM=931 + +KERNEL[1294230271.715129] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 +SUBSYSTEM=block +DEVNAME=sr0 +DEVTYPE=disk +SEQNUM=932 +MAJOR=11 +MINOR=0 + +KERNEL[1294230271.715174] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 +SUBSYSTEM=bsg +DEVNAME=bsg/1:0:0:0 +SEQNUM=933 +MAJOR=253 +MINOR=1 + +KERNEL[1294230271.715212] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=934 + +KERNEL[1294230271.715330] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 +SUBSYSTEM=scsi_generic +DEVNAME=sg1 +SEQNUM=935 +MAJOR=21 +MINOR=1 + +KERNEL[1294230271.715426] add /devices/pci0000:00/0000:00:12.0/host2 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=936 + +KERNEL[1294230271.715468] add /devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 +SUBSYSTEM=scsi_host +SEQNUM=937 + +KERNEL[1294230271.715542] add /devices/pci0000:00/0000:00:12.0/host3 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=938 + +KERNEL[1294230271.715668] add /devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 +SUBSYSTEM=scsi_host +SEQNUM=939 + +KERNEL[1294230271.715830] add /devices/pci0000:00/0000:00:13.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4387 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.0 +MODALIAS=pci:v00001002d00004387sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=940 + +KERNEL[1294230271.715957] add /devices/pci0000:00/0000:00:13.0/usb2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2 +SUBSYSTEM=usb +DEVNAME=bus/usb/002/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=002 +DEVNUM=001 +SEQNUM=941 +MAJOR=189 +MINOR=128 + +KERNEL[1294230271.716095] add /devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=942 + +UDEV [1294230271.716145] add /devices/pci0000:00/0000:00:13.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4387 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.0 +MODALIAS=pci:v00001002d00004387sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=940 + +KERNEL[1294230271.716533] add /devices/pci0000:00/0000:00:13.0/usb2/2-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1 +SUBSYSTEM=usb +DEVNAME=bus/usb/002/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +BUSNUM=002 +DEVNUM=002 +SEQNUM=943 +MAJOR=189 +MINOR=129 + +KERNEL[1294230271.716899] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=3/1/1 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic03isc01ip01 +SEQNUM=944 + +KERNEL[1294230271.717798] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:000003F0:00001024 +HID_NAME=Hewlett-Packard Company HP USB Smart Card Keyboard +HID_PHYS=usb-0000:00:13.0-1/input0 +HID_UNIQ=0817bd66 +MODALIAS=hid:b0003v000003F0p00001024 +SEQNUM=945 + +KERNEL[1294230271.718123] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 +SUBSYSTEM=hidraw +DEVNAME=hidraw0 +SEQNUM=946 +MAJOR=251 +MINOR=0 + +KERNEL[1294230271.718380] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +SUBSYSTEM=input +PRODUCT=3/3f0/1024/111 +NAME="Hewlett-Packard Company HP USB Smart Card Keyboard" +PHYS="usb-0000:00:13.0-1/input0" +UNIQ="0817bd66" +EV==120013 +KEY==10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe +MSC==10 +LED==7 +MODALIAS=input:b0003v03F0p1024e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw +SEQNUM=947 + +KERNEL[1294230271.718689] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 +SUBSYSTEM=input +DEVNAME=input/event3 +SEQNUM=948 +MAJOR=13 +MINOR=67 + +UDEV [1294230271.722952] add /devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 +SUBSYSTEM=pci_bus +SEQNUM=906 + +UDEV [1294230271.723779] add /devices/LNXSYSTM:00/LNXPWRBN:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:LNXPWRBN: +SEQNUM=841 + +UDEV [1294230271.724530] add /devices/LNXSYSTM:00/LNXCPU:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:03 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=840 + +KERNEL[1294230271.724649] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 +SUBSYSTEM=usb +DEVTYPE=usb_interface +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=11/0/0 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic0Bisc00ip00 +SEQNUM=949 + +KERNEL[1294230271.724768] add /devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 +SUBSYSTEM=usbmon +DEVNAME=usbmon2 +SEQNUM=950 +MAJOR=252 +MINOR=2 + +UDEV [1294230271.725132] add /devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon2 +SEQNUM=950 +MAJOR=252 +MINOR=2 +DEVLINKS=/dev/char/252:2 + +KERNEL[1294230271.725181] add /devices/pci0000:00/0000:00:13.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4388 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.1 +MODALIAS=pci:v00001002d00004388sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=951 + +KERNEL[1294230271.725231] add /devices/pci0000:00/0000:00:13.1/usb3 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3 +SUBSYSTEM=usb +DEVNAME=bus/usb/003/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=003 +DEVNUM=001 +SEQNUM=952 +MAJOR=189 +MINOR=256 + +KERNEL[1294230271.725278] add /devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=953 + +KERNEL[1294230271.725333] add /devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 +SUBSYSTEM=usbmon +DEVNAME=usbmon3 +SEQNUM=954 +MAJOR=252 +MINOR=3 + +KERNEL[1294230271.725375] add /devices/pci0000:00/0000:00:13.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4389 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.2 +MODALIAS=pci:v00001002d00004389sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=955 + +KERNEL[1294230271.725425] add /devices/pci0000:00/0000:00:13.2/usb4 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4 +SUBSYSTEM=usb +DEVNAME=bus/usb/004/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=004 +DEVNUM=001 +SEQNUM=956 +MAJOR=189 +MINOR=384 + +KERNEL[1294230271.725474] add /devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=957 + +KERNEL[1294230271.725524] add /devices/pci0000:00/0000:00:13.2/usb4/4-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1 +SUBSYSTEM=usb +DEVNAME=bus/usb/004/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=408/3000/0 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=002 +SEQNUM=958 +MAJOR=189 +MINOR=385 + +UDEV [1294230271.725545] add /devices/pci0000:00/0000:00:13.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4388 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.1 +MODALIAS=pci:v00001002d00004388sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=951 + +KERNEL[1294230271.725590] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=408/3000/0 +TYPE=0/0/0 +INTERFACE=3/0/0 +MODALIAS=usb:v0408p3000d0000dc00dsc00dp00ic03isc00ip00 +SEQNUM=959 + +UDEV [1294230271.725874] add /devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon3 +SEQNUM=954 +MAJOR=252 +MINOR=3 +DEVLINKS=/dev/char/252:3 + +KERNEL[1294230271.726231] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 +SUBSYSTEM=hid +HID_ID=0003:00000408:00003000 +HID_NAME=Quanta Computer Inc. Optical Touch Screen +HID_PHYS=usb-0000:00:13.2-1/input0 +MODALIAS=hid:b0003v00000408p00003000 +SEQNUM=960 + +KERNEL[1294230271.726390] add /devices/pci0000:00/0000:00:13.2/usb4/4-2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2 +SUBSYSTEM=usb +DEVNAME=bus/usb/004/003 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=461/4d20/200 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=003 +SEQNUM=961 +MAJOR=189 +MINOR=386 + +KERNEL[1294230271.726489] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=461/4d20/200 +TYPE=0/0/0 +INTERFACE=3/1/2 +MODALIAS=usb:v0461p4D20d0200dc00dsc00dp00ic03isc01ip02 +SEQNUM=962 + +KERNEL[1294230271.726626] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:00000461:00004D20 +HID_NAME=USB Optical Mouse +HID_PHYS=usb-0000:00:13.2-2/input0 +MODALIAS=hid:b0003v00000461p00004D20 +SEQNUM=963 + +UDEV [1294230271.726758] add /devices/pci0000:00/0000:00:13.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4389 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.2 +MODALIAS=pci:v00001002d00004389sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=955 + +KERNEL[1294230271.726796] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 +SUBSYSTEM=hidraw +DEVNAME=hidraw1 +SEQNUM=964 +MAJOR=251 +MINOR=1 + +KERNEL[1294230271.726899] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +SUBSYSTEM=input +PRODUCT=3/461/4d20/111 +NAME="USB Optical Mouse" +PHYS="usb-0000:00:13.2-2/input0" +UNIQ="" +EV==17 +KEY==70000 0 0 0 0 0 0 0 0 +REL==103 +MSC==10 +MODALIAS=input:b0003v0461p4D20e0111-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw +SEQNUM=965 + +KERNEL[1294230271.726994] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 +SUBSYSTEM=input +DEVNAME=input/event4 +SEQNUM=966 +MAJOR=13 +MINOR=68 + +KERNEL[1294230271.727400] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 +SUBSYSTEM=input +DEVNAME=input/mouse1 +SEQNUM=967 +MAJOR=13 +MINOR=33 + +KERNEL[1294230271.727509] add /devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 +SUBSYSTEM=usbmon +DEVNAME=usbmon4 +SEQNUM=968 +MAJOR=252 +MINOR=4 + +KERNEL[1294230271.727626] add /devices/pci0000:00/0000:00:13.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438A +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.3 +MODALIAS=pci:v00001002d0000438Asv0000103Csd0000280Abc0Csc03i10 +SEQNUM=969 + +UDEV [1294230271.728196] add /devices/pci0000:00/0000:00:13.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438A +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.3 +MODALIAS=pci:v00001002d0000438Asv0000103Csd0000280Abc0Csc03i10 +SEQNUM=969 + +UDEV [1294230271.728216] add /devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon4 +SEQNUM=968 +MAJOR=252 +MINOR=4 +DEVLINKS=/dev/char/252:4 + +KERNEL[1294230271.728279] add /devices/pci0000:00/0000:00:13.3/usb5 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5 +SUBSYSTEM=usb +DEVNAME=bus/usb/005/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=005 +DEVNUM=001 +SEQNUM=970 +MAJOR=189 +MINOR=512 + +KERNEL[1294230271.730197] add /devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=971 + +KERNEL[1294230271.730349] add /devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 +SUBSYSTEM=usbmon +DEVNAME=usbmon5 +SEQNUM=972 +MAJOR=252 +MINOR=5 + +UDEV [1294230271.730770] add /devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon5 +SEQNUM=972 +MAJOR=252 +MINOR=5 +DEVLINKS=/dev/char/252:5 + +KERNEL[1294230271.732268] add /devices/pci0000:00/0000:00:13.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.4 +MODALIAS=pci:v00001002d0000438Bsv0000103Csd0000280Abc0Csc03i10 +SEQNUM=973 + +UDEV [1294230271.740008] add /devices/pci0000:00/0000:00:13.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.4 +MODALIAS=pci:v00001002d0000438Bsv0000103Csd0000280Abc0Csc03i10 +SEQNUM=973 + +UDEV [1294230271.740031] add /devices/LNXSYSTM:00/LNXSYBUS:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYBUS: +SEQNUM=844 + +UDEV [1294230271.740043] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 +SUBSYSTEM=acpi +DRIVER=pci_root +MODALIAS=acpi:PNP0A08:PNP0A03: +SEQNUM=845 + +KERNEL[1294230271.742928] add /devices/pci0000:00/0000:00:13.4/usb6 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6 +SUBSYSTEM=usb +DEVNAME=bus/usb/006/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=006 +DEVNUM=001 +SEQNUM=974 +MAJOR=189 +MINOR=640 + +UDEV [1294230271.742955] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="LNXPWRBN/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=842 + +KERNEL[1294230271.743472] add /devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=975 + +KERNEL[1294230271.744068] add /devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 +SUBSYSTEM=usbmon +DEVNAME=usbmon6 +SEQNUM=976 +MAJOR=252 +MINOR=6 + +UDEV [1294230271.746330] add /devices/pci0000:00/0000:00:13.0/usb2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/002/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=002 +DEVNUM=001 +SEQNUM=941 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.0 +ID_SERIAL_SHORT=0000:00:13.0 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=128 +DEVLINKS=/dev/char/189:128 + +UDEV [1294230271.746534] add /devices/pci0000:00/0000:00:13.1/usb3 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/003/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=003 +DEVNUM=001 +SEQNUM=952 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.1 +ID_SERIAL_SHORT=0000:00:13.1 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=256 +DEVLINKS=/dev/char/189:256 + +KERNEL[1294230271.747174] add /module/i2c_algo_bit (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/i2c_algo_bit +SUBSYSTEM=module +SEQNUM=977 + +KERNEL[1294230271.749798] add /devices/pci0000:00/0000:00:13.5 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5 +SUBSYSTEM=pci +DRIVER=ehci_hcd +PCI_CLASS=C0320 +PCI_ID=1002:4386 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.5 +MODALIAS=pci:v00001002d00004386sv0000103Csd0000280Abc0Csc03i20 +SEQNUM=978 + +UDEV [1294230271.749820] add /devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=942 + +KERNEL[1294230271.749859] add /devices/pci0000:00/0000:00:13.5/usb1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1 +SUBSYSTEM=usb +DEVNAME=bus/usb/001/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +BUSNUM=001 +DEVNUM=001 +SEQNUM=979 +MAJOR=189 +MINOR=0 + +UDEV [1294230271.749875] add /devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon6 +SEQNUM=976 +MAJOR=252 +MINOR=6 +DEVLINKS=/dev/char/252:6 + +KERNEL[1294230271.749892] add /devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=980 + +UDEV [1294230271.749904] add /module/i2c_algo_bit (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/i2c_algo_bit +SUBSYSTEM=module +SEQNUM=977 + +KERNEL[1294230271.749917] add /devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 +SUBSYSTEM=usbmon +DEVNAME=usbmon1 +SEQNUM=981 +MAJOR=252 +MINOR=1 + +KERNEL[1294230271.749933] add /devices/pci0000:00/0000:00:14.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0 +SUBSYSTEM=pci +DRIVER=piix4_smbus +PCI_CLASS=C0500 +PCI_ID=1002:4385 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.0 +MODALIAS=pci:v00001002d00004385sv0000103Csd0000280Abc0Csc05i00 +SEQNUM=982 + +KERNEL[1294230271.749947] add /devices/pci0000:00/0000:00:14.0/i2c-0 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0/i2c-0 +SUBSYSTEM=i2c +SEQNUM=983 + +KERNEL[1294230271.749961] add /devices/pci0000:00/0000:00:14.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1 +SUBSYSTEM=pci +DRIVER=pata_atiixp +PCI_CLASS=1018F +PCI_ID=1002:438C +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.1 +MODALIAS=pci:v00001002d0000438Csv0000103Csd0000280Abc01sc01i8f +SEQNUM=984 + +KERNEL[1294230271.749975] add /devices/pci0000:00/0000:00:14.1/host4 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=985 + +KERNEL[1294230271.749987] add /devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 +SUBSYSTEM=scsi_host +SEQNUM=986 + +KERNEL[1294230271.749999] add /devices/pci0000:00/0000:00:14.1/host5 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=987 + +KERNEL[1294230271.750010] add /devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 +SUBSYSTEM=scsi_host +SEQNUM=988 + +KERNEL[1294230271.750024] add /devices/pci0000:00/0000:00:14.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2 +SUBSYSTEM=pci +DRIVER=HDA Intel +PCI_CLASS=40300 +PCI_ID=1002:4383 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.2 +MODALIAS=pci:v00001002d00004383sv0000103Csd0000280Abc04sc03i00 +SEQNUM=989 + +KERNEL[1294230271.750041] add /devices/pci0000:00/0000:00:14.2/input/input5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5 +SUBSYSTEM=input +PRODUCT=1/10ec/260/1 +NAME="HDA Digital PCBeep" +PHYS="card0/codec#3/beep0" +EV==40001 +SND==6 +MODALIAS=input:b0001v10ECp0260e0001-e0,12,kramls1,2,fw +SEQNUM=990 + +KERNEL[1294230271.750056] add /devices/pci0000:00/0000:00:14.2/input/input5/event5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5/event5 +SUBSYSTEM=input +DEVNAME=input/event5 +SEQNUM=991 +MAJOR=13 +MINOR=69 + +KERNEL[1294230271.750068] add /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=992 + +KERNEL[1294230271.750088] add /devices/pci0000:00/0000:00:14.2/sound/card0/audio (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/audio +SUBSYSTEM=sound +DEVNAME=audio +SEQNUM=993 +MAJOR=14 +MINOR=4 + +KERNEL[1294230271.750102] add /devices/pci0000:00/0000:00:14.2/sound/card0/dsp (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/dsp +SUBSYSTEM=sound +DEVNAME=dsp +SEQNUM=994 +MAJOR=14 +MINOR=3 + +KERNEL[1294230271.750116] add /devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 +SUBSYSTEM=sound +DEVNAME=snd/hwC0D3 +SEQNUM=995 +MAJOR=116 +MINOR=5 + +KERNEL[1294230271.750130] add /devices/pci0000:00/0000:00:14.2/sound/card0/mixer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/mixer +SUBSYSTEM=sound +DEVNAME=mixer +SEQNUM=996 +MAJOR=14 +MINOR=0 + +KERNEL[1294230271.750144] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c +SUBSYSTEM=sound +DEVNAME=snd/pcmC0D0c +SEQNUM=997 +MAJOR=116 +MINOR=4 + +KERNEL[1294230271.750158] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p +SUBSYSTEM=sound +DEVNAME=snd/pcmC0D0p +SEQNUM=998 +MAJOR=116 +MINOR=3 + +KERNEL[1294230271.751042] add /devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 +SUBSYSTEM=sound +DEVNAME=snd/controlC0 +SEQNUM=999 +MAJOR=116 +MINOR=6 + +KERNEL[1294230271.751192] add /devices/pci0000:00/0000:00:14.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.3 +SUBSYSTEM=pci +PCI_CLASS=60100 +PCI_ID=1002:438D +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.3 +MODALIAS=pci:v00001002d0000438Dsv0000103Csd0000280Abc06sc01i00 +SEQNUM=1000 + +KERNEL[1294230271.755958] add /devices/pci0000:00/0000:00:14.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4 +SUBSYSTEM=pci +PCI_CLASS=60401 +PCI_ID=1002:4384 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:14.4 +MODALIAS=pci:v00001002d00004384sv00000000sd00000000bc06sc04i01 +SEQNUM=1001 + +UDEV [1294230271.755979] add /devices/pci0000:00/0000:00:14.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0 +SUBSYSTEM=pci +DRIVER=piix4_smbus +PCI_CLASS=C0500 +PCI_ID=1002:4385 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.0 +MODALIAS=pci:v00001002d00004385sv0000103Csd0000280Abc0Csc05i00 +SEQNUM=982 + +KERNEL[1294230271.755994] add /devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 +SUBSYSTEM=pci_bus +SEQNUM=1002 + +UDEV [1294230271.756004] add /devices/pci0000:00/0000:00:14.0/i2c-0 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0/i2c-0 +SUBSYSTEM=i2c +SEQNUM=983 + +KERNEL[1294230271.756017] add /devices/pci0000:00/0000:00:18.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1100 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.0 +MODALIAS=pci:v00001022d00001100sv00000000sd00000000bc06sc00i00 +SEQNUM=1003 + +KERNEL[1294230271.756033] add /devices/pci0000:00/0000:00:18.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.1 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1101 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.1 +MODALIAS=pci:v00001022d00001101sv00000000sd00000000bc06sc00i00 +SEQNUM=1004 + +KERNEL[1294230271.756049] add /devices/pci0000:00/0000:00:18.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.2 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1102 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.2 +MODALIAS=pci:v00001022d00001102sv00000000sd00000000bc06sc00i00 +SEQNUM=1005 + +KERNEL[1294230271.756065] add /devices/pci0000:00/0000:00:18.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3 +SUBSYSTEM=pci +DRIVER=k8temp +PCI_CLASS=60000 +PCI_ID=1022:1103 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.3 +MODALIAS=pci:v00001022d00001103sv00000000sd00000000bc06sc00i00 +SEQNUM=1006 + +KERNEL[1294230271.756093] add /devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 (hwmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 +SUBSYSTEM=hwmon +SEQNUM=1007 + +KERNEL[1294230271.756103] add /devices/pci0000:00/pci_bus/0000:00 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/pci_bus/0000:00 +SUBSYSTEM=pci_bus +SEQNUM=1008 + +KERNEL[1294230271.756115] add /devices/platform/Fixed MDIO bus.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0 +SUBSYSTEM=platform +MODALIAS=platform:Fixed MDIO bus +SEQNUM=1009 + +KERNEL[1294230271.756126] add /devices/platform/Fixed MDIO bus.0/mdio_bus/0 (mdio_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0/mdio_bus/0 +SUBSYSTEM=mdio_bus +SEQNUM=1010 + +KERNEL[1294230271.756137] add /devices/platform/eisa.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/eisa.0 +SUBSYSTEM=platform +MODALIAS=platform:eisa +SEQNUM=1011 + +KERNEL[1294230271.756149] add /devices/platform/i8042 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042 +SUBSYSTEM=platform +DRIVER=i8042 +MODALIAS=platform:i8042 +SEQNUM=1012 + +KERNEL[1294230271.756164] add /devices/platform/i8042/serio0 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio0 +SUBSYSTEM=serio +SERIO_TYPE=06 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty06pr00id00ex00 +SEQNUM=1013 + +KERNEL[1294230271.756180] add /devices/platform/i8042/serio1 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio1 +SUBSYSTEM=serio +SERIO_TYPE=01 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty01pr00id00ex00 +SEQNUM=1014 + +KERNEL[1294230271.756193] add /devices/platform/pcspkr (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/pcspkr +SUBSYSTEM=platform +MODALIAS=platform:pcspkr +SEQNUM=1015 + +KERNEL[1294230271.756206] add /devices/platform/serial8250 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250 +SUBSYSTEM=platform +DRIVER=serial8250 +MODALIAS=platform:serial8250 +SEQNUM=1016 + +KERNEL[1294230271.756220] add /devices/platform/serial8250/tty/ttyS1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS1 +SUBSYSTEM=tty +DEVNAME=ttyS1 +SEQNUM=1017 +MAJOR=4 +MINOR=65 + +KERNEL[1294230271.756233] add /devices/platform/serial8250/tty/ttyS2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS2 +SUBSYSTEM=tty +DEVNAME=ttyS2 +SEQNUM=1018 +MAJOR=4 +MINOR=66 + +KERNEL[1294230271.756247] add /devices/platform/serial8250/tty/ttyS3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS3 +SUBSYSTEM=tty +DEVNAME=ttyS3 +SEQNUM=1019 +MAJOR=4 +MINOR=67 + +KERNEL[1294230271.756260] add /devices/platform/vesafb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0 +SUBSYSTEM=platform +DRIVER=vesafb +MODALIAS=platform:vesafb +SEQNUM=1020 + +KERNEL[1294230271.756274] add /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=fb0 +SEQNUM=1021 +MAJOR=29 +MINOR=0 + +KERNEL[1294230271.756285] add /devices/pnp0/00:00 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:00 +SUBSYSTEM=pnp +SEQNUM=1022 + +KERNEL[1294230271.756296] add /devices/pnp0/00:01 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:01 +SUBSYSTEM=pnp +SEQNUM=1023 + +KERNEL[1294230271.756306] add /devices/pnp0/00:02 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:02 +SUBSYSTEM=pnp +SEQNUM=1024 + +KERNEL[1294230271.756317] add /devices/pnp0/00:03 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03 +SUBSYSTEM=pnp +DRIVER=rtc_cmos +SEQNUM=1025 + +KERNEL[1294230271.756330] add /devices/pnp0/00:03/rtc/rtc0 (rtc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03/rtc/rtc0 +SUBSYSTEM=rtc +DEVNAME=rtc0 +SEQNUM=1026 +MAJOR=254 +MINOR=0 + +KERNEL[1294230271.756342] add /devices/pnp0/00:04 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:04 +SUBSYSTEM=pnp +SEQNUM=1027 + +KERNEL[1294230271.756359] add /devices/pnp0/00:05 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:05 +SUBSYSTEM=pnp +DRIVER=i8042 aux +SEQNUM=1028 + +KERNEL[1294230271.756370] add /devices/pnp0/00:06 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:06 +SUBSYSTEM=pnp +DRIVER=i8042 kbd +SEQNUM=1029 + +KERNEL[1294230271.756382] add /devices/pnp0/00:07 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07 +SUBSYSTEM=pnp +DRIVER=parport_pc +SEQNUM=1030 + +KERNEL[1294230271.756395] add /devices/pnp0/00:07/ppdev/parport0 (ppdev) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/ppdev/parport0 +SUBSYSTEM=ppdev +DEVNAME=parport0 +SEQNUM=1031 +MAJOR=99 +MINOR=0 + +UDEV [1294230271.762547] add /devices/pci0000:00/0000:00:13.2/usb4 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/004/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=004 +DEVNUM=001 +SEQNUM=956 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.2 +ID_SERIAL_SHORT=0000:00:13.2 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=384 +DEVLINKS=/dev/char/189:384 + +UDEV [1294230271.764522] add /devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=957 + +UDEV [1294230271.764542] add /devices/pnp0/00:07 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07 +SUBSYSTEM=pnp +DRIVER=parport_pc +SEQNUM=1030 + +UDEV [1294230271.764556] add /devices/pnp0/00:07/ppdev/parport0 (ppdev) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/ppdev/parport0 +SUBSYSTEM=ppdev +DEVNAME=/dev/parport0 +SEQNUM=1031 +MAJOR=99 +MINOR=0 +DEVLINKS=/dev/char/99:0 + +UDEV [1294230271.765879] add /devices/LNXSYSTM:00/LNXTHERM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXTHERM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXTHERM: +SEQNUM=899 + +UDEV [1294230271.768377] add /devices/pci0000:00/0000:00:13.3/usb5 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/005/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=005 +DEVNUM=001 +SEQNUM=970 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.3 +ID_SERIAL_SHORT=0000:00:13.3 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=512 +DEVLINKS=/dev/char/189:512 + +UDEV [1294230271.769215] add /devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=971 + +UDEV [1294230271.771978] add /devices/pci0000:00/0000:00:13.2/usb4/4-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/004/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=408/3000/0 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=002 +SEQNUM=958 +ID_VENDOR=Quanta_Computer_Inc. +ID_VENDOR_ENC=Quanta\x20Computer\x20Inc. +ID_VENDOR_ID=0408 +ID_MODEL=Optical_Touch_Screen +ID_MODEL_ENC=Optical\x20Touch\x20Screen +ID_MODEL_ID=3000 +ID_REVISION=0000 +ID_SERIAL=Quanta_Computer_Inc._Optical_Touch_Screen +ID_BUS=usb +ID_USB_INTERFACES=:030000: +MAJOR=189 +MINOR=385 +DEVLINKS=/dev/char/189:385 + +UDEV [1294230271.773073] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=408/3000/0 +TYPE=0/0/0 +INTERFACE=3/0/0 +MODALIAS=usb:v0408p3000d0000dc00dsc00dp00ic03isc00ip00 +SEQNUM=959 + +UDEV [1294230271.773707] add /devices/pnp0/00:05 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:05 +SUBSYSTEM=pnp +DRIVER=i8042 aux +SEQNUM=1028 + +UDEV [1294230271.774710] add /devices/pnp0/00:04 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:04 +SUBSYSTEM=pnp +SEQNUM=1027 + +UDEV [1294230271.777511] add /devices/pnp0/00:02 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:02 +SUBSYSTEM=pnp +SEQNUM=1024 + +UDEV [1294230271.778277] add /devices/pnp0/00:00 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:00 +SUBSYSTEM=pnp +SEQNUM=1022 + +UDEV [1294230271.778943] add /devices/pnp0/00:06 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:06 +SUBSYSTEM=pnp +DRIVER=i8042 kbd +SEQNUM=1029 + +UDEV [1294230271.779536] add /devices/platform/serial8250 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250 +SUBSYSTEM=platform +DRIVER=serial8250 +MODALIAS=platform:serial8250 +SEQNUM=1016 + +UDEV [1294230271.780281] add /devices/platform/serial8250/tty/ttyS2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS2 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS2 +SEQNUM=1018 +MAJOR=4 +MINOR=66 +DEVLINKS=/dev/char/4:66 + +UDEV [1294230271.780299] add /devices/platform/serial8250/tty/ttyS3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS3 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS3 +SEQNUM=1019 +MAJOR=4 +MINOR=67 +DEVLINKS=/dev/char/4:67 + +UDEV [1294230271.780560] add /devices/platform/serial8250/tty/ttyS1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS1 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS1 +SEQNUM=1017 +MAJOR=4 +MINOR=65 +DEVLINKS=/dev/char/4:65 + +UDEV [1294230271.781734] add /devices/platform/i8042 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042 +SUBSYSTEM=platform +DRIVER=i8042 +MODALIAS=platform:i8042 +SEQNUM=1012 + +UDEV [1294230271.783318] add /devices/pci0000:00/0000:00:18.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3 +SUBSYSTEM=pci +DRIVER=k8temp +PCI_CLASS=60000 +PCI_ID=1022:1103 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.3 +MODALIAS=pci:v00001022d00001103sv00000000sd00000000bc06sc00i00 +SEQNUM=1006 + +UDEV [1294230271.783587] add /devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 (hwmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 +SUBSYSTEM=hwmon +SEQNUM=1007 + +UDEV [1294230271.785338] add /devices/pci0000:00/0000:00:12.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0 +SUBSYSTEM=pci +DRIVER=ahci +PCI_CLASS=10601 +PCI_ID=1002:4380 +PCI_SUBSYS_ID=103C:2813 +PCI_SLOT_NAME=0000:00:12.0 +MODALIAS=pci:v00001002d00004380sv0000103Csd00002813bc01sc06i01 +SEQNUM=912 +ID_VENDOR_FROM_DATABASE=ATI Technologies Inc +ID_MODEL_FROM_DATABASE=SB600 Non-Raid-5 SATA + +UDEV [1294230271.787166] add /devices/pci0000:00/0000:00:12.0/host0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=913 + +UDEV [1294230271.787183] add /devices/pci0000:00/0000:00:12.0/host1 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=927 + +UDEV [1294230271.787195] add /devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 +SUBSYSTEM=scsi_host +SEQNUM=914 + +UDEV [1294230271.787208] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=915 + +UDEV [1294230271.787220] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sd +MODALIAS=scsi:t-0x00 +SEQNUM=916 + +UDEV [1294230271.787254] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 +SUBSYSTEM=bsg +DEVNAME=/dev/bsg/0:0:0:0 +SEQNUM=922 +MAJOR=253 +MINOR=0 +DEVLINKS=/dev/char/253:0 + +UDEV [1294230193.977227] add /devices/pci0000:00/0000:00:13.0/usb2/2-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/002/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +BUSNUM=002 +DEVNUM=002 +SEQNUM=943 +ID_VENDOR=Hewlett-Packard_Company +ID_VENDOR_ENC=Hewlett-Packard\x20Company +ID_VENDOR_ID=03f0 +ID_MODEL=HP_USB_Smart_Card_Keyboard +ID_MODEL_ENC=HP\x20USB\x20Smart\x20Card\x20Keyboard +ID_MODEL_ID=1024 +ID_REVISION=0535 +ID_SERIAL=Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66 +ID_SERIAL_SHORT=0817bd66 +ID_BUS=usb +ID_USB_INTERFACES=:030101:0b0000: +MAJOR=189 +MINOR=129 +DEVLINKS=/dev/char/189:129 + +UDEV [1294230193.978525] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=3/1/1 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic03isc01ip01 +SEQNUM=944 + +UDEV [1294230193.978548] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:000003F0:00001024 +HID_NAME=Hewlett-Packard Company HP USB Smart Card Keyboard +HID_PHYS=usb-0000:00:13.0-1/input0 +HID_UNIQ=0817bd66 +MODALIAS=hid:b0003v000003F0p00001024 +SEQNUM=945 + +UDEV [1294230193.978567] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 +SUBSYSTEM=hidraw +DEVNAME=/dev/hidraw0 +SEQNUM=946 +MAJOR=251 +MINOR=0 +DEVLINKS=/dev/char/251:0 + +UDEV [1294230193.981364] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=858 + +UDEV [1294230193.982177] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=854 + +UDEV [1294230193.983589] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C01: +SEQNUM=894 + +UDEV [1294230193.984150] add /devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=953 + +UDEV [1294230193.984669] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=851 + +UDEV [1294230193.985441] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 +SUBSYSTEM=scsi_generic +DEVNAME=/dev/sg0 +SEQNUM=925 +MAJOR=21 +MINOR=0 +DEVLINKS=/dev/char/21:0 + +UDEV [1294230193.985764] add /devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 +SUBSYSTEM=scsi_host +SEQNUM=929 + +UDEV [1294230193.985779] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=849 + +UDEV [1294230193.986300] add /devices/pci0000:00/0000:00:12.0/host3 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=938 + +UDEV [1294230193.986590] add /devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 +SUBSYSTEM=scsi_host +SEQNUM=939 + +UDEV [1294230193.986788] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 (scsi_disk) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 +SUBSYSTEM=scsi_disk +SEQNUM=924 + +UDEV [1294230193.992516] add /devices/pci0000:00/0000:00:13.5 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5 +SUBSYSTEM=pci +DRIVER=ehci_hcd +PCI_CLASS=C0320 +PCI_ID=1002:4386 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.5 +MODALIAS=pci:v00001002d00004386sv0000103Csd0000280Abc0Csc03i20 +SEQNUM=978 + +UDEV [1294230193.992832] add /devices/pci0000:00/0000:00:14.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2 +SUBSYSTEM=pci +DRIVER=HDA Intel +PCI_CLASS=40300 +PCI_ID=1002:4383 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.2 +MODALIAS=pci:v00001002d00004383sv0000103Csd0000280Abc04sc03i00 +SEQNUM=989 + +UDEV [1294230193.993140] add /devices/pci0000:00/0000:00:12.0/host2 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=936 + +UDEV [1294230193.993777] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 +SUBSYSTEM=acpi +DRIVER=wmi +MODALIAS=acpi:PNP0C14: +SEQNUM=898 + +UDEV [1294230193.993993] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:PNP0C0C: +SEQNUM=895 + +UDEV [1294230193.995929] add /devices/pnp0/00:01 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:01 +SUBSYSTEM=pnp +SEQNUM=1023 + +UDEV [1294230193.996294] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=930 + +UDEV [1294230193.996552] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=857 + +UDEV [1294230193.996691] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=852 + +UDEV [1294230193.998244] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=850 + +UDEV [1294230193.998408] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=848 + +UDEV [1294230194.000083] add /devices/platform/vesafb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0 +SUBSYSTEM=platform +DRIVER=vesafb +MODALIAS=platform:vesafb +SEQNUM=1020 + +UDEV [1294230194.000655] add /devices/pnp0/00:03 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03 +SUBSYSTEM=pnp +DRIVER=rtc_cmos +SEQNUM=1025 + +UDEV [1294230194.000900] add /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=992 + +UDEV [1294230194.002135] add /devices/pci0000:00/pci_bus/0000:00 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/pci_bus/0000:00 +SUBSYSTEM=pci_bus +SEQNUM=1008 + +UDEV [1294230194.002842] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=923 + +UDEV [1294230194.003850] add /devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon1 +SEQNUM=981 +MAJOR=252 +MINOR=1 +DEVLINKS=/dev/char/252:1 + +UDEV [1294230194.004355] add /devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 +SUBSYSTEM=scsi_host +SEQNUM=937 + +UDEV [1294230194.005734] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sr +MODALIAS=scsi:t-0x05 +SEQNUM=931 + +UDEV [1294230194.006458] add /devices/pnp0/00:03/rtc/rtc0 (rtc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03/rtc/rtc0 +SUBSYSTEM=rtc +DEVNAME=/dev/rtc0 +SEQNUM=1026 +MAJOR=254 +MINOR=0 +DEVLINKS=/dev/char/254:0 /dev/rtc + +UDEV [1294230194.006753] add /devices/pci0000:00/0000:00:14.2/sound/card0/audio (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/audio +SUBSYSTEM=sound +DEVNAME=/dev/audio +SEQNUM=993 +ACL_MANAGE=1 +MAJOR=14 +MINOR=4 +DEVLINKS=/dev/char/14:4 + +UDEV [1294230194.006993] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c +SUBSYSTEM=sound +DEVNAME=/dev/snd/pcmC0D0c +SEQNUM=997 +ACL_MANAGE=1 +MAJOR=116 +MINOR=4 +DEVLINKS=/dev/char/116:4 + +UDEV [1294230194.007199] add /devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 +SUBSYSTEM=sound +DEVNAME=/dev/snd/hwC0D3 +SEQNUM=995 +ACL_MANAGE=1 +MAJOR=116 +MINOR=5 +DEVLINKS=/dev/char/116:5 + +UDEV [1294230194.007397] add /devices/pci0000:00/0000:00:14.2/sound/card0/dsp (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/dsp +SUBSYSTEM=sound +DEVNAME=/dev/dsp +SEQNUM=994 +ACL_MANAGE=1 +MAJOR=14 +MINOR=3 +DEVLINKS=/dev/char/14:3 + +UDEV [1294230194.007602] add /devices/pci0000:00/0000:00:14.2/sound/card0/mixer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/mixer +SUBSYSTEM=sound +DEVNAME=/dev/mixer +SEQNUM=996 +ACL_MANAGE=1 +MAJOR=14 +MINOR=0 +DEVLINKS=/dev/char/14:0 + +UDEV [1294230194.007853] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p +SUBSYSTEM=sound +DEVNAME=/dev/snd/pcmC0D0p +SEQNUM=998 +ACL_MANAGE=1 +MAJOR=116 +MINOR=3 +DEVLINKS=/dev/char/116:3 + +UDEV [1294230194.008744] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=934 + +UDEV [1294230194.009360] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 +SUBSYSTEM=bsg +DEVNAME=/dev/bsg/1:0:0:0 +SEQNUM=933 +MAJOR=253 +MINOR=1 +DEVLINKS=/dev/char/253:1 + +UDEV [1294230194.009631] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 +SUBSYSTEM=scsi_generic +DEVNAME=/dev/sg1 +SEQNUM=935 +MAJOR=21 +MINOR=1 +DEVLINKS=/dev/char/21:1 + +KERNEL[1294230194.011878] add /devices/pnp0/00:08 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08 +SUBSYSTEM=pnp +DRIVER=serial +SEQNUM=1032 + +KERNEL[1294230194.012718] add /devices/pnp0/00:08/tty/ttyS0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08/tty/ttyS0 +SUBSYSTEM=tty +DEVNAME=ttyS0 +SEQNUM=1033 +MAJOR=4 +MINOR=64 + +UDEV [1294230194.012918] add /devices/pnp0/00:08 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08 +SUBSYSTEM=pnp +DRIVER=serial +SEQNUM=1032 + +KERNEL[1294230194.014153] add /devices/pnp0/00:09 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:09 +SUBSYSTEM=pnp +SEQNUM=1034 + +KERNEL[1294230194.014273] add /devices/pnp0/00:0a (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0a +SUBSYSTEM=pnp +SEQNUM=1035 + +KERNEL[1294230194.014359] add /devices/pnp0/00:0b (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0b +SUBSYSTEM=pnp +SEQNUM=1036 + +KERNEL[1294230194.014441] add /devices/pnp0/00:0c (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0c +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1037 + +UDEV [1294230194.014702] add /devices/pnp0/00:0c (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0c +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1037 + +UDEV [1294230194.014854] add /devices/pnp0/00:09 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:09 +SUBSYSTEM=pnp +SEQNUM=1034 + +UDEV [1294230194.014996] add /devices/pnp0/00:0a (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0a +SUBSYSTEM=pnp +SEQNUM=1035 + +UDEV [1294230194.015309] add /devices/pnp0/00:08/tty/ttyS0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08/tty/ttyS0 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS0 +SEQNUM=1033 +MAJOR=4 +MINOR=64 +DEVLINKS=/dev/char/4:64 + +UDEV [1294230194.015417] add /devices/pnp0/00:0b (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0b +SUBSYSTEM=pnp +SEQNUM=1036 + +KERNEL[1294230194.016126] add /devices/pnp0/00:0d (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0d +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1038 + +KERNEL[1294230194.016942] add /devices/pnp0/00:0e (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0e +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1039 + +KERNEL[1294230194.017032] add /devices/virtual/bdi/0:17 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:17 +SUBSYSTEM=bdi +SEQNUM=1040 + +KERNEL[1294230194.017112] add /devices/virtual/bdi/0:21 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:21 +SUBSYSTEM=bdi +SEQNUM=1041 + +KERNEL[1294230194.017191] add /devices/virtual/bdi/11:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/11:0 +SUBSYSTEM=bdi +SEQNUM=1042 + +KERNEL[1294230194.017271] add /devices/virtual/bdi/1:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:0 +SUBSYSTEM=bdi +SEQNUM=1043 + +KERNEL[1294230194.017353] add /devices/virtual/bdi/1:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:1 +SUBSYSTEM=bdi +SEQNUM=1044 + +KERNEL[1294230194.017431] add /devices/virtual/bdi/1:10 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:10 +SUBSYSTEM=bdi +SEQNUM=1045 + +KERNEL[1294230194.017511] add /devices/virtual/bdi/1:11 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:11 +SUBSYSTEM=bdi +SEQNUM=1046 + +UDEV [1294230194.017666] add /devices/virtual/bdi/11:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/11:0 +SUBSYSTEM=bdi +SEQNUM=1042 + +UDEV [1294230194.017801] add /devices/virtual/bdi/1:10 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:10 +SUBSYSTEM=bdi +SEQNUM=1045 + +UDEV [1294230194.017923] add /devices/virtual/bdi/1:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:0 +SUBSYSTEM=bdi +SEQNUM=1043 + +UDEV [1294230194.018043] add /devices/virtual/bdi/1:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:1 +SUBSYSTEM=bdi +SEQNUM=1044 + +UDEV [1294230194.018199] add /devices/pnp0/00:0e (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0e +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1039 + +UDEV [1294230194.018327] add /devices/virtual/bdi/0:17 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:17 +SUBSYSTEM=bdi +SEQNUM=1040 + +UDEV [1294230194.018448] add /devices/virtual/bdi/0:21 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:21 +SUBSYSTEM=bdi +SEQNUM=1041 + +UDEV [1294230194.018655] add /devices/pnp0/00:0d (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0d +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1038 + +KERNEL[1294230194.018872] add /devices/virtual/bdi/1:12 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:12 +SUBSYSTEM=bdi +SEQNUM=1047 + +UDEV [1294230194.019084] add /devices/virtual/bdi/1:12 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:12 +SUBSYSTEM=bdi +SEQNUM=1047 + +UDEV [1294230194.019209] add /devices/virtual/bdi/1:11 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:11 +SUBSYSTEM=bdi +SEQNUM=1046 + +KERNEL[1294230194.019403] add /devices/virtual/bdi/1:13 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:13 +SUBSYSTEM=bdi +SEQNUM=1048 + +KERNEL[1294230194.019525] add /devices/virtual/bdi/1:14 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:14 +SUBSYSTEM=bdi +SEQNUM=1049 + +KERNEL[1294230194.019606] add /devices/virtual/bdi/1:15 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:15 +SUBSYSTEM=bdi +SEQNUM=1050 + +KERNEL[1294230194.019686] add /devices/virtual/bdi/1:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:2 +SUBSYSTEM=bdi +SEQNUM=1051 + +UDEV [1294230194.019863] add /devices/virtual/bdi/1:15 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:15 +SUBSYSTEM=bdi +SEQNUM=1050 + +UDEV [1294230194.019991] add /devices/virtual/bdi/1:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:2 +SUBSYSTEM=bdi +SEQNUM=1051 + +UDEV [1294230194.020114] add /devices/virtual/bdi/1:14 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:14 +SUBSYSTEM=bdi +SEQNUM=1049 + +UDEV [1294230194.020239] add /devices/virtual/bdi/1:13 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:13 +SUBSYSTEM=bdi +SEQNUM=1048 + +KERNEL[1294230194.020685] add /devices/virtual/bdi/1:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:3 +SUBSYSTEM=bdi +SEQNUM=1052 + +KERNEL[1294230194.020972] add /devices/virtual/bdi/1:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:4 +SUBSYSTEM=bdi +SEQNUM=1053 + +UDEV [1294230194.021193] add /devices/virtual/bdi/1:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:4 +SUBSYSTEM=bdi +SEQNUM=1053 + +UDEV [1294230194.021321] add /devices/virtual/bdi/1:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:3 +SUBSYSTEM=bdi +SEQNUM=1052 + +KERNEL[1294230194.021571] add /devices/virtual/bdi/1:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:5 +SUBSYSTEM=bdi +SEQNUM=1054 + +UDEV [1294230194.021799] add /devices/virtual/bdi/1:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:5 +SUBSYSTEM=bdi +SEQNUM=1054 + +KERNEL[1294230194.022489] add /devices/virtual/bdi/1:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:6 +SUBSYSTEM=bdi +SEQNUM=1055 + +UDEV [1294230194.022833] add /devices/virtual/bdi/1:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:6 +SUBSYSTEM=bdi +SEQNUM=1055 + +KERNEL[1294230194.023628] add /devices/virtual/bdi/1:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:7 +SUBSYSTEM=bdi +SEQNUM=1056 + +KERNEL[1294230194.023761] add /devices/virtual/bdi/1:8 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:8 +SUBSYSTEM=bdi +SEQNUM=1057 + +UDEV [1294230194.023968] add /devices/virtual/bdi/1:8 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:8 +SUBSYSTEM=bdi +SEQNUM=1057 + +UDEV [1294230194.024098] add /devices/virtual/bdi/1:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:7 +SUBSYSTEM=bdi +SEQNUM=1056 + +KERNEL[1294230194.024316] add /devices/virtual/bdi/1:9 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:9 +SUBSYSTEM=bdi +SEQNUM=1058 + +KERNEL[1294230194.024588] add /devices/virtual/bdi/250:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/250:0 +SUBSYSTEM=bdi +SEQNUM=1059 + +UDEV [1294230194.024800] add /devices/virtual/bdi/250:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/250:0 +SUBSYSTEM=bdi +SEQNUM=1059 + +UDEV [1294230194.024931] add /devices/virtual/bdi/1:9 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:9 +SUBSYSTEM=bdi +SEQNUM=1058 + +KERNEL[1294230194.027129] add /devices/virtual/bdi/7:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:0 +SUBSYSTEM=bdi +SEQNUM=1060 + +KERNEL[1294230194.027508] add /devices/virtual/bdi/7:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:1 +SUBSYSTEM=bdi +SEQNUM=1061 + +UDEV [1294230194.028074] add /devices/virtual/bdi/7:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:1 +SUBSYSTEM=bdi +SEQNUM=1061 + +UDEV [1294230194.028498] add /devices/virtual/bdi/7:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:0 +SUBSYSTEM=bdi +SEQNUM=1060 + +KERNEL[1294230194.029493] add /devices/virtual/bdi/7:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:2 +SUBSYSTEM=bdi +SEQNUM=1062 + +KERNEL[1294230194.029633] add /devices/virtual/bdi/7:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:3 +SUBSYSTEM=bdi +SEQNUM=1063 + +UDEV [1294230194.030097] add /devices/virtual/bdi/7:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:3 +SUBSYSTEM=bdi +SEQNUM=1063 + +UDEV [1294230194.030292] add /devices/virtual/bdi/7:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:2 +SUBSYSTEM=bdi +SEQNUM=1062 + +KERNEL[1294230194.030969] add /devices/virtual/bdi/7:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:4 +SUBSYSTEM=bdi +SEQNUM=1064 + +KERNEL[1294230194.031103] add /devices/virtual/bdi/7:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:5 +SUBSYSTEM=bdi +SEQNUM=1065 + +UDEV [1294230194.031312] add /devices/virtual/bdi/7:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:5 +SUBSYSTEM=bdi +SEQNUM=1065 + +UDEV [1294230194.031439] add /devices/virtual/bdi/7:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:4 +SUBSYSTEM=bdi +SEQNUM=1064 + +KERNEL[1294230194.032231] add /devices/virtual/bdi/7:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:6 +SUBSYSTEM=bdi +SEQNUM=1066 + +UDEV [1294230194.032566] add /devices/virtual/bdi/7:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:6 +SUBSYSTEM=bdi +SEQNUM=1066 + +UDEV [1294230194.034933] add /devices/pci0000:00/0000:00:14.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1 +SUBSYSTEM=pci +DRIVER=pata_atiixp +PCI_CLASS=1018F +PCI_ID=1002:438C +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.1 +MODALIAS=pci:v00001002d0000438Csv0000103Csd0000280Abc01sc01i8f +SEQNUM=984 +ID_VENDOR_FROM_DATABASE=ATI Technologies Inc +ID_MODEL_FROM_DATABASE=SB600 IDE + +UDEV [1294230194.035287] add /devices/pci0000:00/0000:00:14.1/host5 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=987 + +UDEV [1294230194.035301] add /devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 +SUBSYSTEM=scsi_host +SEQNUM=988 + +UDEV [1294230194.035643] add /devices/pci0000:00/0000:00:14.1/host4 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=985 + +UDEV [1294230194.035657] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=883 + +UDEV [1294230194.035668] add /devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 +SUBSYSTEM=scsi_host +SEQNUM=986 + +KERNEL[1294230194.036243] add /devices/virtual/bdi/7:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:7 +SUBSYSTEM=bdi +SEQNUM=1067 + +UDEV [1294230194.036259] add /devices/virtual/bdi/default (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/default +SUBSYSTEM=bdi +SEQNUM=1069 + +KERNEL[1294230194.036271] add /devices/virtual/bdi/8:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/8:0 +SUBSYSTEM=bdi +SEQNUM=1068 + +KERNEL[1294230194.036282] add /devices/virtual/bdi/default (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/default +SUBSYSTEM=bdi +SEQNUM=1069 + +KERNEL[1294230194.036312] add /devices/virtual/block/loop0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop0 +SUBSYSTEM=block +DEVNAME=loop0 +DEVTYPE=disk +SEQNUM=1070 +MAJOR=7 +MINOR=0 + +KERNEL[1294230194.036327] add /devices/virtual/block/loop1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop1 +SUBSYSTEM=block +DEVNAME=loop1 +DEVTYPE=disk +SEQNUM=1071 +MAJOR=7 +MINOR=1 + +KERNEL[1294230194.036342] add /devices/virtual/block/loop2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop2 +SUBSYSTEM=block +DEVNAME=loop2 +DEVTYPE=disk +SEQNUM=1072 +MAJOR=7 +MINOR=2 + +KERNEL[1294230194.036356] add /devices/virtual/block/loop3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop3 +SUBSYSTEM=block +DEVNAME=loop3 +DEVTYPE=disk +SEQNUM=1073 +MAJOR=7 +MINOR=3 + +KERNEL[1294230194.036521] add /devices/virtual/block/loop4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop4 +SUBSYSTEM=block +DEVNAME=loop4 +DEVTYPE=disk +SEQNUM=1074 +MAJOR=7 +MINOR=4 + +KERNEL[1294230194.036714] add /module/drm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm +SUBSYSTEM=module +SEQNUM=1075 + +UDEV [1294230194.036906] add /module/drm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm +SUBSYSTEM=module +SEQNUM=1075 + +UDEV [1294230194.039375] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 +SUBSYSTEM=usb +DEVTYPE=usb_interface +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=11/0/0 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic0Bisc00ip00 +SEQNUM=949 + +KERNEL[1294230194.039708] add /devices/virtual/block/loop5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop5 +SUBSYSTEM=block +DEVNAME=loop5 +DEVTYPE=disk +SEQNUM=1076 +MAJOR=7 +MINOR=5 + +KERNEL[1294230194.040460] add /class/drm (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/drm +SUBSYSTEM=class +SEQNUM=1077 + +UDEV [1294230194.040693] add /class/drm (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/drm +SUBSYSTEM=class +SEQNUM=1077 + +KERNEL[1294230194.042887] add /devices/virtual/block/loop6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop6 +SUBSYSTEM=block +DEVNAME=loop6 +DEVTYPE=disk +SEQNUM=1078 +MAJOR=7 +MINOR=6 + +KERNEL[1294230194.043510] add /devices/virtual/block/loop7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop7 +SUBSYSTEM=block +DEVNAME=loop7 +DEVTYPE=disk +SEQNUM=1079 +MAJOR=7 +MINOR=7 + +UDEV [1294230194.043599] add /devices/virtual/bdi/8:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/8:0 +SUBSYSTEM=bdi +SEQNUM=1068 + +KERNEL[1294230194.044228] add /devices/virtual/block/ram0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram0 +SUBSYSTEM=block +DEVNAME=ram0 +DEVTYPE=disk +SEQNUM=1080 +MAJOR=1 +MINOR=0 + +UDEV [1294230194.044245] add /devices/platform/eisa.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/eisa.0 +SUBSYSTEM=platform +MODALIAS=platform:eisa +SEQNUM=1011 + +KERNEL[1294230194.044258] add /devices/virtual/block/ram1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram1 +SUBSYSTEM=block +DEVNAME=ram1 +DEVTYPE=disk +SEQNUM=1081 +MAJOR=1 +MINOR=1 + +KERNEL[1294230194.044663] add /devices/virtual/block/ram10 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram10 +SUBSYSTEM=block +DEVNAME=ram10 +DEVTYPE=disk +SEQNUM=1082 +MAJOR=1 +MINOR=10 + +KERNEL[1294230194.044681] add /devices/virtual/block/ram11 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram11 +SUBSYSTEM=block +DEVNAME=ram11 +DEVTYPE=disk +SEQNUM=1083 +MAJOR=1 +MINOR=11 + +KERNEL[1294230194.045313] add /devices/virtual/block/ram12 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram12 +SUBSYSTEM=block +DEVNAME=ram12 +DEVTYPE=disk +SEQNUM=1084 +MAJOR=1 +MINOR=12 + +KERNEL[1294230194.045332] add /devices/virtual/block/ram13 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram13 +SUBSYSTEM=block +DEVNAME=ram13 +DEVTYPE=disk +SEQNUM=1085 +MAJOR=1 +MINOR=13 + +KERNEL[1294230194.045845] add /devices/virtual/block/ram14 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram14 +SUBSYSTEM=block +DEVNAME=ram14 +DEVTYPE=disk +SEQNUM=1086 +MAJOR=1 +MINOR=14 + +KERNEL[1294230194.045879] add /devices/virtual/block/ram15 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram15 +SUBSYSTEM=block +DEVNAME=ram15 +DEVTYPE=disk +SEQNUM=1087 +MAJOR=1 +MINOR=15 + +KERNEL[1294230194.046421] add /devices/virtual/block/ram2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram2 +SUBSYSTEM=block +DEVNAME=ram2 +DEVTYPE=disk +SEQNUM=1088 +MAJOR=1 +MINOR=2 + +KERNEL[1294230194.046441] add /devices/virtual/block/ram3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram3 +SUBSYSTEM=block +DEVNAME=ram3 +DEVTYPE=disk +SEQNUM=1089 +MAJOR=1 +MINOR=3 + +KERNEL[1294230194.046999] add /devices/virtual/block/ram4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram4 +SUBSYSTEM=block +DEVNAME=ram4 +DEVTYPE=disk +SEQNUM=1090 +MAJOR=1 +MINOR=4 + +KERNEL[1294230194.047019] add /devices/virtual/block/ram5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram5 +SUBSYSTEM=block +DEVNAME=ram5 +DEVTYPE=disk +SEQNUM=1091 +MAJOR=1 +MINOR=5 + +KERNEL[1294230194.054567] add /devices/virtual/block/ram6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram6 +SUBSYSTEM=block +DEVNAME=ram6 +DEVTYPE=disk +SEQNUM=1092 +MAJOR=1 +MINOR=6 + +KERNEL[1294230194.054591] add /devices/virtual/block/ram7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram7 +SUBSYSTEM=block +DEVNAME=ram7 +DEVTYPE=disk +SEQNUM=1093 +MAJOR=1 +MINOR=7 + +KERNEL[1294230194.054607] add /devices/virtual/block/ram8 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram8 +SUBSYSTEM=block +DEVNAME=ram8 +DEVTYPE=disk +SEQNUM=1094 +MAJOR=1 +MINOR=8 + +KERNEL[1294230194.054622] add /devices/virtual/block/ram9 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram9 +SUBSYSTEM=block +DEVNAME=ram9 +DEVTYPE=disk +SEQNUM=1095 +MAJOR=1 +MINOR=9 + +KERNEL[1294230194.054638] add /devices/virtual/block/ramzswap0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ramzswap0 +SUBSYSTEM=block +DEVNAME=ramzswap0 +DEVTYPE=disk +SEQNUM=1096 +MAJOR=250 +MINOR=0 + +KERNEL[1294230194.054652] add /devices/virtual/dmi/id (dmi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/dmi/id +SUBSYSTEM=dmi +MODALIAS=dmi:bvnHewlett-Packard:bvr786E3v02.22:bd04/18/2007:svnHewlett-Packard:pnHPCompaqdc5750Microtower:pvr:rvnHewlett-Packard:rn0A64h:rvr:cvnHewlett-Packard:ct6:cvr: +SEQNUM=1097 + +KERNEL[1294230194.054665] add /devices/virtual/graphics/fbcon (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/graphics/fbcon +SUBSYSTEM=graphics +SEQNUM=1098 + +KERNEL[1294230194.054681] add /devices/virtual/input/input2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2 +SUBSYSTEM=input +PRODUCT=17/1/1/100 +NAME="Macintosh mouse button emulation" +EV==7 +KEY==70000 0 0 0 0 0 0 0 0 +REL==3 +MODALIAS=input:b0017v0001p0001e0100-e0,1,2,k110,111,112,r0,1,amlsfw +SEQNUM=1099 + +KERNEL[1294230194.054697] add /devices/virtual/input/input2/event2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/event2 +SUBSYSTEM=input +DEVNAME=input/event2 +SEQNUM=1100 +MAJOR=13 +MINOR=66 + +KERNEL[1294230194.054712] add /devices/virtual/input/input2/mouse0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/mouse0 +SUBSYSTEM=input +DEVNAME=input/mouse0 +SEQNUM=1101 +MAJOR=13 +MINOR=32 + +KERNEL[1294230194.054726] add /devices/virtual/input/mice (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/mice +SUBSYSTEM=input +DEVNAME=input/mice +SEQNUM=1102 +MAJOR=13 +MINOR=63 + +KERNEL[1294230194.054741] add /devices/virtual/mem/full (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/full +SUBSYSTEM=mem +DEVNAME=full +DEVMODE=0666 +SEQNUM=1103 +MAJOR=1 +MINOR=7 + +KERNEL[1294230194.054757] add /devices/virtual/mem/kmsg (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/kmsg +SUBSYSTEM=mem +DEVNAME=kmsg +SEQNUM=1104 +MAJOR=1 +MINOR=11 + +KERNEL[1294230194.054771] add /devices/virtual/mem/mem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/mem +SUBSYSTEM=mem +DEVNAME=mem +SEQNUM=1105 +MAJOR=1 +MINOR=1 + +KERNEL[1294230194.054799] add /devices/virtual/mem/null (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/null +SUBSYSTEM=mem +DEVNAME=null +DEVMODE=0666 +SEQNUM=1106 +MAJOR=1 +MINOR=3 + +KERNEL[1294230194.054814] add /devices/virtual/mem/oldmem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/oldmem +SUBSYSTEM=mem +DEVNAME=oldmem +SEQNUM=1107 +MAJOR=1 +MINOR=12 + +KERNEL[1294230194.054829] add /devices/virtual/mem/port (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/port +SUBSYSTEM=mem +DEVNAME=port +SEQNUM=1108 +MAJOR=1 +MINOR=4 + +KERNEL[1294230194.054846] add /devices/virtual/mem/random (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/random +SUBSYSTEM=mem +DEVNAME=random +DEVMODE=0666 +SEQNUM=1109 +MAJOR=1 +MINOR=8 + +KERNEL[1294230194.054861] add /devices/virtual/mem/urandom (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/urandom +SUBSYSTEM=mem +DEVNAME=urandom +DEVMODE=0666 +SEQNUM=1110 +MAJOR=1 +MINOR=9 + +KERNEL[1294230194.054877] add /devices/virtual/mem/zero (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/zero +SUBSYSTEM=mem +DEVNAME=zero +DEVMODE=0666 +SEQNUM=1111 +MAJOR=1 +MINOR=5 + +KERNEL[1294230194.054893] add /devices/virtual/misc/cpu_dma_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/cpu_dma_latency +SUBSYSTEM=misc +DEVNAME=cpu_dma_latency +SEQNUM=1112 +MAJOR=10 +MINOR=58 + +KERNEL[1294230194.054907] add /devices/virtual/misc/device-mapper (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/device-mapper +SUBSYSTEM=misc +DEVNAME=mapper/control +SEQNUM=1113 +MAJOR=10 +MINOR=59 + +KERNEL[1294230194.054922] add /devices/virtual/misc/ecryptfs (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/ecryptfs +SUBSYSTEM=misc +DEVNAME=ecryptfs +SEQNUM=1114 +MAJOR=10 +MINOR=61 + +KERNEL[1294230194.054937] add /devices/virtual/misc/fuse (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/fuse +SUBSYSTEM=misc +DEVNAME=fuse +SEQNUM=1115 +MAJOR=10 +MINOR=229 + +KERNEL[1294230194.054951] add /devices/virtual/misc/hpet (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/hpet +SUBSYSTEM=misc +DEVNAME=hpet +SEQNUM=1116 +MAJOR=10 +MINOR=228 + +KERNEL[1294230194.054966] add /devices/virtual/misc/mcelog (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/mcelog +SUBSYSTEM=misc +DEVNAME=mcelog +SEQNUM=1117 +MAJOR=10 +MINOR=227 + +KERNEL[1294230194.054981] add /devices/virtual/misc/network_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_latency +SUBSYSTEM=misc +DEVNAME=network_latency +SEQNUM=1118 +MAJOR=10 +MINOR=57 + +KERNEL[1294230194.054995] add /devices/virtual/misc/network_throughput (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_throughput +SUBSYSTEM=misc +DEVNAME=network_throughput +SEQNUM=1119 +MAJOR=10 +MINOR=56 + +KERNEL[1294230194.055010] add /devices/virtual/misc/pktcdvd (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/pktcdvd +SUBSYSTEM=misc +DEVNAME=pktcdvd/control +SEQNUM=1120 +MAJOR=10 +MINOR=60 + +KERNEL[1294230194.055025] add /devices/virtual/misc/psaux (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/psaux +SUBSYSTEM=misc +DEVNAME=psaux +SEQNUM=1121 +MAJOR=10 +MINOR=1 + +KERNEL[1294230194.055039] add /devices/virtual/misc/rfkill (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/rfkill +SUBSYSTEM=misc +DEVNAME=rfkill +SEQNUM=1122 +MAJOR=10 +MINOR=62 + +KERNEL[1294230194.055053] add /devices/virtual/misc/snapshot (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/snapshot +SUBSYSTEM=misc +DEVNAME=snapshot +SEQNUM=1123 +MAJOR=10 +MINOR=231 + +KERNEL[1294230194.055068] add /devices/virtual/misc/tun (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/tun +SUBSYSTEM=misc +DEVNAME=net/tun +SEQNUM=1124 +MAJOR=10 +MINOR=200 + +KERNEL[1294230194.055083] add /devices/virtual/misc/vga_arbiter (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vga_arbiter +SUBSYSTEM=misc +DEVNAME=vga_arbiter +SEQNUM=1125 +MAJOR=10 +MINOR=63 + +KERNEL[1294230194.055097] add /devices/virtual/net/br0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/br0 +SUBSYSTEM=net +DEVTYPE=bridge +INTERFACE=br0 +IFINDEX=3 +SEQNUM=1126 + +KERNEL[1294230194.055119] add /devices/virtual/net/lo (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/lo +SUBSYSTEM=net +INTERFACE=lo +IFINDEX=1 +SEQNUM=1127 + +KERNEL[1294230194.055134] add /devices/virtual/ppp/ppp (ppp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/ppp/ppp +SUBSYSTEM=ppp +DEVNAME=ppp +SEQNUM=1128 +MAJOR=108 +MINOR=0 + +KERNEL[1294230194.055148] add /devices/virtual/sound/timer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/sound/timer +SUBSYSTEM=sound +DEVNAME=snd/timer +SEQNUM=1129 +MAJOR=116 +MINOR=2 + +KERNEL[1294230194.055161] add /devices/virtual/thermal/cooling_device0 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device0 +SUBSYSTEM=thermal +SEQNUM=1130 + +KERNEL[1294230194.055173] add /devices/virtual/thermal/cooling_device1 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device1 +SUBSYSTEM=thermal +SEQNUM=1131 + +KERNEL[1294230194.055186] add /devices/virtual/tty/console (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/console +SUBSYSTEM=tty +DEVNAME=console +SEQNUM=1132 +MAJOR=5 +MINOR=1 + +KERNEL[1294230194.055202] add /devices/virtual/tty/ptmx (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/ptmx +SUBSYSTEM=tty +DEVNAME=ptmx +DEVMODE=0666 +SEQNUM=1133 +MAJOR=5 +MINOR=2 + +KERNEL[1294230194.055217] add /devices/virtual/tty/tty (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty +SUBSYSTEM=tty +DEVNAME=tty +DEVMODE=0666 +SEQNUM=1134 +MAJOR=5 +MINOR=0 + +KERNEL[1294230194.055232] add /devices/virtual/tty/tty0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty0 +SUBSYSTEM=tty +DEVNAME=tty0 +SEQNUM=1135 +MAJOR=4 +MINOR=0 + +KERNEL[1294230194.055246] add /devices/virtual/tty/tty1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty1 +SUBSYSTEM=tty +DEVNAME=tty1 +SEQNUM=1136 +MAJOR=4 +MINOR=1 + +KERNEL[1294230194.055261] add /devices/virtual/tty/tty10 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty10 +SUBSYSTEM=tty +DEVNAME=tty10 +SEQNUM=1137 +MAJOR=4 +MINOR=10 + +KERNEL[1294230194.055275] add /devices/virtual/tty/tty11 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty11 +SUBSYSTEM=tty +DEVNAME=tty11 +SEQNUM=1138 +MAJOR=4 +MINOR=11 + +KERNEL[1294230194.055290] add /devices/virtual/tty/tty12 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty12 +SUBSYSTEM=tty +DEVNAME=tty12 +SEQNUM=1139 +MAJOR=4 +MINOR=12 + +KERNEL[1294230194.055304] add /devices/virtual/tty/tty13 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty13 +SUBSYSTEM=tty +DEVNAME=tty13 +SEQNUM=1140 +MAJOR=4 +MINOR=13 + +KERNEL[1294230194.055318] add /devices/virtual/tty/tty14 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty14 +SUBSYSTEM=tty +DEVNAME=tty14 +SEQNUM=1141 +MAJOR=4 +MINOR=14 + +KERNEL[1294230194.055333] add /devices/virtual/tty/tty15 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty15 +SUBSYSTEM=tty +DEVNAME=tty15 +SEQNUM=1142 +MAJOR=4 +MINOR=15 + +KERNEL[1294230194.055347] add /devices/virtual/tty/tty16 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty16 +SUBSYSTEM=tty +DEVNAME=tty16 +SEQNUM=1143 +MAJOR=4 +MINOR=16 + +KERNEL[1294230194.055361] add /devices/virtual/tty/tty17 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty17 +SUBSYSTEM=tty +DEVNAME=tty17 +SEQNUM=1144 +MAJOR=4 +MINOR=17 + +KERNEL[1294230194.055376] add /devices/virtual/tty/tty18 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty18 +SUBSYSTEM=tty +DEVNAME=tty18 +SEQNUM=1145 +MAJOR=4 +MINOR=18 + +KERNEL[1294230194.055390] add /devices/virtual/tty/tty19 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty19 +SUBSYSTEM=tty +DEVNAME=tty19 +SEQNUM=1146 +MAJOR=4 +MINOR=19 + +KERNEL[1294230194.055404] add /devices/virtual/tty/tty2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty2 +SUBSYSTEM=tty +DEVNAME=tty2 +SEQNUM=1147 +MAJOR=4 +MINOR=2 + +KERNEL[1294230194.055419] add /devices/virtual/tty/tty20 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty20 +SUBSYSTEM=tty +DEVNAME=tty20 +SEQNUM=1148 +MAJOR=4 +MINOR=20 + +KERNEL[1294230194.055441] add /devices/virtual/tty/tty21 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty21 +SUBSYSTEM=tty +DEVNAME=tty21 +SEQNUM=1149 +MAJOR=4 +MINOR=21 + +KERNEL[1294230194.055456] add /devices/virtual/tty/tty22 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty22 +SUBSYSTEM=tty +DEVNAME=tty22 +SEQNUM=1150 +MAJOR=4 +MINOR=22 + +KERNEL[1294230194.055470] add /devices/virtual/tty/tty23 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty23 +SUBSYSTEM=tty +DEVNAME=tty23 +SEQNUM=1151 +MAJOR=4 +MINOR=23 + +KERNEL[1294230194.055485] add /devices/virtual/tty/tty24 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty24 +SUBSYSTEM=tty +DEVNAME=tty24 +SEQNUM=1152 +MAJOR=4 +MINOR=24 + +KERNEL[1294230194.055499] add /devices/virtual/tty/tty25 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty25 +SUBSYSTEM=tty +DEVNAME=tty25 +SEQNUM=1153 +MAJOR=4 +MINOR=25 + +KERNEL[1294230194.055513] add /devices/virtual/tty/tty26 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty26 +SUBSYSTEM=tty +DEVNAME=tty26 +SEQNUM=1154 +MAJOR=4 +MINOR=26 + +KERNEL[1294230194.055528] add /devices/virtual/tty/tty27 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty27 +SUBSYSTEM=tty +DEVNAME=tty27 +SEQNUM=1155 +MAJOR=4 +MINOR=27 + +KERNEL[1294230194.055542] add /devices/virtual/tty/tty28 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty28 +SUBSYSTEM=tty +DEVNAME=tty28 +SEQNUM=1156 +MAJOR=4 +MINOR=28 + +KERNEL[1294230194.055556] add /devices/virtual/tty/tty29 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty29 +SUBSYSTEM=tty +DEVNAME=tty29 +SEQNUM=1157 +MAJOR=4 +MINOR=29 + +KERNEL[1294230194.055571] add /devices/virtual/tty/tty3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty3 +SUBSYSTEM=tty +DEVNAME=tty3 +SEQNUM=1158 +MAJOR=4 +MINOR=3 + +KERNEL[1294230194.055585] add /devices/virtual/tty/tty30 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty30 +SUBSYSTEM=tty +DEVNAME=tty30 +SEQNUM=1159 +MAJOR=4 +MINOR=30 + +KERNEL[1294230194.055599] add /devices/virtual/tty/tty31 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty31 +SUBSYSTEM=tty +DEVNAME=tty31 +SEQNUM=1160 +MAJOR=4 +MINOR=31 + +KERNEL[1294230194.055614] add /devices/virtual/tty/tty32 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty32 +SUBSYSTEM=tty +DEVNAME=tty32 +SEQNUM=1161 +MAJOR=4 +MINOR=32 + +KERNEL[1294230194.055628] add /devices/virtual/tty/tty33 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty33 +SUBSYSTEM=tty +DEVNAME=tty33 +SEQNUM=1162 +MAJOR=4 +MINOR=33 + +KERNEL[1294230194.055642] add /devices/virtual/tty/tty34 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty34 +SUBSYSTEM=tty +DEVNAME=tty34 +SEQNUM=1163 +MAJOR=4 +MINOR=34 + +KERNEL[1294230194.055657] add /devices/virtual/tty/tty35 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty35 +SUBSYSTEM=tty +DEVNAME=tty35 +SEQNUM=1164 +MAJOR=4 +MINOR=35 + +KERNEL[1294230194.055671] add /devices/virtual/tty/tty36 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty36 +SUBSYSTEM=tty +DEVNAME=tty36 +SEQNUM=1165 +MAJOR=4 +MINOR=36 + +KERNEL[1294230194.055686] add /devices/virtual/tty/tty37 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty37 +SUBSYSTEM=tty +DEVNAME=tty37 +SEQNUM=1166 +MAJOR=4 +MINOR=37 + +KERNEL[1294230194.055700] add /devices/virtual/tty/tty38 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty38 +SUBSYSTEM=tty +DEVNAME=tty38 +SEQNUM=1167 +MAJOR=4 +MINOR=38 + +KERNEL[1294230194.055714] add /devices/virtual/tty/tty39 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty39 +SUBSYSTEM=tty +DEVNAME=tty39 +SEQNUM=1168 +MAJOR=4 +MINOR=39 + +KERNEL[1294230194.055729] add /devices/virtual/tty/tty4 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty4 +SUBSYSTEM=tty +DEVNAME=tty4 +SEQNUM=1169 +MAJOR=4 +MINOR=4 + +KERNEL[1294230194.055743] add /devices/virtual/tty/tty40 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty40 +SUBSYSTEM=tty +DEVNAME=tty40 +SEQNUM=1170 +MAJOR=4 +MINOR=40 + +KERNEL[1294230194.055766] add /devices/virtual/tty/tty41 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty41 +SUBSYSTEM=tty +DEVNAME=tty41 +SEQNUM=1171 +MAJOR=4 +MINOR=41 + +KERNEL[1294230194.055780] add /devices/virtual/tty/tty42 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty42 +SUBSYSTEM=tty +DEVNAME=tty42 +SEQNUM=1172 +MAJOR=4 +MINOR=42 + +KERNEL[1294230194.055795] add /devices/virtual/tty/tty43 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty43 +SUBSYSTEM=tty +DEVNAME=tty43 +SEQNUM=1173 +MAJOR=4 +MINOR=43 + +KERNEL[1294230194.055809] add /devices/virtual/tty/tty44 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty44 +SUBSYSTEM=tty +DEVNAME=tty44 +SEQNUM=1174 +MAJOR=4 +MINOR=44 + +KERNEL[1294230194.055823] add /devices/virtual/tty/tty45 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty45 +SUBSYSTEM=tty +DEVNAME=tty45 +SEQNUM=1175 +MAJOR=4 +MINOR=45 + +KERNEL[1294230194.055838] add /devices/virtual/tty/tty46 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty46 +SUBSYSTEM=tty +DEVNAME=tty46 +SEQNUM=1176 +MAJOR=4 +MINOR=46 + +KERNEL[1294230194.055852] add /devices/virtual/tty/tty47 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty47 +SUBSYSTEM=tty +DEVNAME=tty47 +SEQNUM=1177 +MAJOR=4 +MINOR=47 + +KERNEL[1294230194.055866] add /devices/virtual/tty/tty48 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty48 +SUBSYSTEM=tty +DEVNAME=tty48 +SEQNUM=1178 +MAJOR=4 +MINOR=48 + +KERNEL[1294230194.055881] add /devices/virtual/tty/tty49 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty49 +SUBSYSTEM=tty +DEVNAME=tty49 +SEQNUM=1179 +MAJOR=4 +MINOR=49 + +KERNEL[1294230194.055895] add /devices/virtual/tty/tty5 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty5 +SUBSYSTEM=tty +DEVNAME=tty5 +SEQNUM=1180 +MAJOR=4 +MINOR=5 + +KERNEL[1294230194.055909] add /devices/virtual/tty/tty50 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty50 +SUBSYSTEM=tty +DEVNAME=tty50 +SEQNUM=1181 +MAJOR=4 +MINOR=50 + +KERNEL[1294230194.055924] add /devices/virtual/tty/tty51 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty51 +SUBSYSTEM=tty +DEVNAME=tty51 +SEQNUM=1182 +MAJOR=4 +MINOR=51 + +KERNEL[1294230194.055939] add /devices/virtual/tty/tty52 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty52 +SUBSYSTEM=tty +DEVNAME=tty52 +SEQNUM=1183 +MAJOR=4 +MINOR=52 + +KERNEL[1294230194.055953] add /devices/virtual/tty/tty53 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty53 +SUBSYSTEM=tty +DEVNAME=tty53 +SEQNUM=1184 +MAJOR=4 +MINOR=53 + +KERNEL[1294230194.055967] add /devices/virtual/tty/tty54 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty54 +SUBSYSTEM=tty +DEVNAME=tty54 +SEQNUM=1185 +MAJOR=4 +MINOR=54 + +KERNEL[1294230194.055982] add /devices/virtual/tty/tty55 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty55 +SUBSYSTEM=tty +DEVNAME=tty55 +SEQNUM=1186 +MAJOR=4 +MINOR=55 + +KERNEL[1294230194.055996] add /devices/virtual/tty/tty56 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty56 +SUBSYSTEM=tty +DEVNAME=tty56 +SEQNUM=1187 +MAJOR=4 +MINOR=56 + +KERNEL[1294230194.056011] add /devices/virtual/tty/tty57 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty57 +SUBSYSTEM=tty +DEVNAME=tty57 +SEQNUM=1188 +MAJOR=4 +MINOR=57 + +KERNEL[1294230194.056025] add /devices/virtual/tty/tty58 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty58 +SUBSYSTEM=tty +DEVNAME=tty58 +SEQNUM=1189 +MAJOR=4 +MINOR=58 + +KERNEL[1294230194.056039] add /devices/virtual/tty/tty59 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty59 +SUBSYSTEM=tty +DEVNAME=tty59 +SEQNUM=1190 +MAJOR=4 +MINOR=59 + +KERNEL[1294230194.056053] add /devices/virtual/tty/tty6 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty6 +SUBSYSTEM=tty +DEVNAME=tty6 +SEQNUM=1191 +MAJOR=4 +MINOR=6 + +KERNEL[1294230194.056068] add /devices/virtual/tty/tty60 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty60 +SUBSYSTEM=tty +DEVNAME=tty60 +SEQNUM=1192 +MAJOR=4 +MINOR=60 + +KERNEL[1294230194.056082] add /devices/virtual/tty/tty61 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty61 +SUBSYSTEM=tty +DEVNAME=tty61 +SEQNUM=1193 +MAJOR=4 +MINOR=61 + +KERNEL[1294230194.056104] add /devices/virtual/tty/tty62 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty62 +SUBSYSTEM=tty +DEVNAME=tty62 +SEQNUM=1194 +MAJOR=4 +MINOR=62 + +KERNEL[1294230194.056119] add /devices/virtual/tty/tty63 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty63 +SUBSYSTEM=tty +DEVNAME=tty63 +SEQNUM=1195 +MAJOR=4 +MINOR=63 + +KERNEL[1294230194.056133] add /devices/virtual/tty/tty7 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty7 +SUBSYSTEM=tty +DEVNAME=tty7 +SEQNUM=1196 +MAJOR=4 +MINOR=7 + +KERNEL[1294230194.056147] add /devices/virtual/tty/tty8 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty8 +SUBSYSTEM=tty +DEVNAME=tty8 +SEQNUM=1197 +MAJOR=4 +MINOR=8 + +KERNEL[1294230194.056162] add /devices/virtual/tty/tty9 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty9 +SUBSYSTEM=tty +DEVNAME=tty9 +SEQNUM=1198 +MAJOR=4 +MINOR=9 + +KERNEL[1294230194.056176] add /devices/virtual/usbmon/usbmon0 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/usbmon/usbmon0 +SUBSYSTEM=usbmon +DEVNAME=usbmon0 +SEQNUM=1199 +MAJOR=252 +MINOR=0 + +KERNEL[1294230194.056191] add /devices/virtual/vc/vcs (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs +SUBSYSTEM=vc +DEVNAME=vcs +SEQNUM=1200 +MAJOR=7 +MINOR=0 + +KERNEL[1294230194.056205] add /devices/virtual/vc/vcs1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs1 +SUBSYSTEM=vc +DEVNAME=vcs1 +SEQNUM=1201 +MAJOR=7 +MINOR=1 + +KERNEL[1294230194.056220] add /devices/virtual/vc/vcs10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs10 +SUBSYSTEM=vc +DEVNAME=vcs10 +SEQNUM=1202 +MAJOR=7 +MINOR=10 + +KERNEL[1294230194.056234] add /devices/virtual/vc/vcsa (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa +SUBSYSTEM=vc +DEVNAME=vcsa +SEQNUM=1203 +MAJOR=7 +MINOR=128 + +KERNEL[1294230194.056249] add /devices/virtual/vc/vcsa1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa1 +SUBSYSTEM=vc +DEVNAME=vcsa1 +SEQNUM=1204 +MAJOR=7 +MINOR=129 + +KERNEL[1294230194.056263] add /devices/virtual/vc/vcsa10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa10 +SUBSYSTEM=vc +DEVNAME=vcsa10 +SEQNUM=1205 +MAJOR=7 +MINOR=138 + +KERNEL[1294230194.056276] add /devices/virtual/vtconsole/vtcon0 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon0 +SUBSYSTEM=vtconsole +SEQNUM=1206 + +KERNEL[1294230194.056287] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1207 + +UDEV [1294230194.063927] add /devices/virtual/bdi/7:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:7 +SUBSYSTEM=bdi +SEQNUM=1067 + +UDEV [1294230194.066856] add /devices/virtual/tty/tty28 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty28 +SUBSYSTEM=tty +DEVNAME=/dev/tty28 +SEQNUM=1156 +MAJOR=4 +MINOR=28 +DEVLINKS=/dev/char/4:28 + +KERNEL[1294230194.073883] add /module/drm_kms_helper (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm_kms_helper +SUBSYSTEM=module +SEQNUM=1208 + +UDEV [1294230194.079788] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=878 + +UDEV [1294230194.079810] add /devices/virtual/tty/tty36 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty36 +SUBSYSTEM=tty +DEVNAME=/dev/tty36 +SEQNUM=1165 +MAJOR=4 +MINOR=36 +DEVLINKS=/dev/char/4:36 + +UDEV [1294230194.079826] add /devices/virtual/tty/tty34 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty34 +SUBSYSTEM=tty +DEVNAME=/dev/tty34 +SEQNUM=1163 +MAJOR=4 +MINOR=34 +DEVLINKS=/dev/char/4:34 + +UDEV [1294230194.079841] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=875 + +UDEV [1294230194.079853] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=846 + +UDEV [1294230194.079886] add /devices/virtual/tty/tty27 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty27 +SUBSYSTEM=tty +DEVNAME=/dev/tty27 +SEQNUM=1155 +MAJOR=4 +MINOR=27 +DEVLINKS=/dev/char/4:27 + +UDEV [1294230194.079901] add /devices/virtual/tty/tty31 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty31 +SUBSYSTEM=tty +DEVNAME=/dev/tty31 +SEQNUM=1160 +MAJOR=4 +MINOR=31 +DEVLINKS=/dev/char/4:31 + +UDEV [1294230194.079916] add /devices/virtual/tty/tty25 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty25 +SUBSYSTEM=tty +DEVNAME=/dev/tty25 +SEQNUM=1153 +MAJOR=4 +MINOR=25 +DEVLINKS=/dev/char/4:25 + +UDEV [1294230194.079974] add /devices/virtual/tty/tty39 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty39 +SUBSYSTEM=tty +DEVNAME=/dev/tty39 +SEQNUM=1168 +MAJOR=4 +MINOR=39 +DEVLINKS=/dev/char/4:39 + +UDEV [1294230194.080017] add /devices/pci0000:00/0000:00:18.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1100 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.0 +MODALIAS=pci:v00001022d00001100sv00000000sd00000000bc06sc00i00 +SEQNUM=1003 + +UDEV [1294230194.080065] add /devices/pci0000:00/0000:00:18.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.2 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1102 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.2 +MODALIAS=pci:v00001022d00001102sv00000000sd00000000bc06sc00i00 +SEQNUM=1005 + +UDEV [1294230194.080395] add /devices/virtual/tty/tty37 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty37 +SUBSYSTEM=tty +DEVNAME=/dev/tty37 +SEQNUM=1166 +MAJOR=4 +MINOR=37 +DEVLINKS=/dev/char/4:37 + +UDEV [1294230194.080971] add /devices/virtual/tty/tty20 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty20 +SUBSYSTEM=tty +DEVNAME=/dev/tty20 +SEQNUM=1148 +MAJOR=4 +MINOR=20 +DEVLINKS=/dev/char/4:20 + +UDEV [1294230194.081403] add /devices/virtual/tty/tty22 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty22 +SUBSYSTEM=tty +DEVNAME=/dev/tty22 +SEQNUM=1150 +MAJOR=4 +MINOR=22 +DEVLINKS=/dev/char/4:22 + +UDEV [1294230194.082070] add /devices/virtual/tty/tty19 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty19 +SUBSYSTEM=tty +DEVNAME=/dev/tty19 +SEQNUM=1146 +MAJOR=4 +MINOR=19 +DEVLINKS=/dev/char/4:19 + +UDEV [1294230194.082822] add /devices/virtual/tty/tty23 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty23 +SUBSYSTEM=tty +DEVNAME=/dev/tty23 +SEQNUM=1151 +MAJOR=4 +MINOR=23 +DEVLINKS=/dev/char/4:23 + +UDEV [1294230194.083188] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=887 + +UDEV [1294230194.084059] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=873 + +UDEV [1294230194.084076] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=881 + +UDEV [1294230194.084091] add /devices/pci0000:00/0000:00:18.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.1 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1101 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.1 +MODALIAS=pci:v00001022d00001101sv00000000sd00000000bc06sc00i00 +SEQNUM=1004 + +UDEV [1294230194.084264] add /devices/virtual/tty/tty38 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty38 +SUBSYSTEM=tty +DEVNAME=/dev/tty38 +SEQNUM=1167 +MAJOR=4 +MINOR=38 +DEVLINKS=/dev/char/4:38 + +UDEV [1294230194.084536] add /devices/virtual/tty/tty35 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty35 +SUBSYSTEM=tty +DEVNAME=/dev/tty35 +SEQNUM=1164 +MAJOR=4 +MINOR=35 +DEVLINKS=/dev/char/4:35 + +UDEV [1294230194.085206] add /devices/virtual/tty/tty33 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty33 +SUBSYSTEM=tty +DEVNAME=/dev/tty33 +SEQNUM=1162 +MAJOR=4 +MINOR=33 +DEVLINKS=/dev/char/4:33 + +UDEV [1294230194.085557] add /devices/virtual/tty/tty32 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty32 +SUBSYSTEM=tty +DEVNAME=/dev/tty32 +SEQNUM=1161 +MAJOR=4 +MINOR=32 +DEVLINKS=/dev/char/4:32 + +UDEV [1294230194.085925] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=885 + +UDEV [1294230194.086047] add /devices/virtual/tty/tty30 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty30 +SUBSYSTEM=tty +DEVNAME=/dev/tty30 +SEQNUM=1159 +MAJOR=4 +MINOR=30 +DEVLINKS=/dev/char/4:30 + +UDEV [1294230194.086252] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=884 + +UDEV [1294230194.086407] add /devices/virtual/tty/tty29 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty29 +SUBSYSTEM=tty +DEVNAME=/dev/tty29 +SEQNUM=1157 +MAJOR=4 +MINOR=29 +DEVLINKS=/dev/char/4:29 + +UDEV [1294230194.086614] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=888 + +UDEV [1294230194.086706] add /devices/virtual/tty/tty26 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty26 +SUBSYSTEM=tty +DEVNAME=/dev/tty26 +SEQNUM=1154 +MAJOR=4 +MINOR=26 +DEVLINKS=/dev/char/4:26 + +UDEV [1294230194.087120] add /devices/virtual/tty/tty24 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty24 +SUBSYSTEM=tty +DEVNAME=/dev/tty24 +SEQNUM=1152 +MAJOR=4 +MINOR=24 +DEVLINKS=/dev/char/4:24 + +UDEV [1294230194.087818] add /devices/virtual/tty/tty21 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty21 +SUBSYSTEM=tty +DEVNAME=/dev/tty21 +SEQNUM=1149 +MAJOR=4 +MINOR=21 +DEVLINKS=/dev/char/4:21 + +UDEV [1294230194.088003] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=882 + +UDEV [1294230194.088315] add /devices/pci0000:00/0000:00:14.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.3 +SUBSYSTEM=pci +PCI_CLASS=60100 +PCI_ID=1002:438D +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.3 +MODALIAS=pci:v00001002d0000438Dsv0000103Csd0000280Abc06sc01i00 +SEQNUM=1000 + +UDEV [1294230194.088337] add /devices/virtual/tty/tty18 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty18 +SUBSYSTEM=tty +DEVNAME=/dev/tty18 +SEQNUM=1145 +MAJOR=4 +MINOR=18 +DEVLINKS=/dev/char/4:18 + +UDEV [1294230194.088609] add /devices/virtual/tty/tty16 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty16 +SUBSYSTEM=tty +DEVNAME=/dev/tty16 +SEQNUM=1143 +MAJOR=4 +MINOR=16 +DEVLINKS=/dev/char/4:16 + +UDEV [1294230194.088626] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=880 + +UDEV [1294230194.088914] add /devices/virtual/tty/tty14 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty14 +SUBSYSTEM=tty +DEVNAME=/dev/tty14 +SEQNUM=1141 +MAJOR=4 +MINOR=14 +DEVLINKS=/dev/char/4:14 + +UDEV [1294230194.089262] add /devices/virtual/tty/tty12 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty12 +SUBSYSTEM=tty +DEVNAME=/dev/tty12 +SEQNUM=1139 +MAJOR=4 +MINOR=12 +DEVLINKS=/dev/char/4:12 + +UDEV [1294230194.089718] add /devices/virtual/tty/tty10 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty10 +SUBSYSTEM=tty +DEVNAME=/dev/tty10 +SEQNUM=1137 +MAJOR=4 +MINOR=10 +DEVLINKS=/dev/char/4:10 + +UDEV [1294230194.090059] add /devices/virtual/tty/tty0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty0 +SUBSYSTEM=tty +DEVNAME=/dev/tty0 +SEQNUM=1135 +MAJOR=4 +MINOR=0 +DEVLINKS=/dev/char/4:0 + +UDEV [1294230194.090362] add /devices/virtual/tty/ptmx (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/ptmx +SUBSYSTEM=tty +DEVNAME=/dev/ptmx +DEVMODE=0666 +SEQNUM=1133 +MAJOR=5 +MINOR=2 +DEVLINKS=/dev/char/5:2 + +UDEV [1294230194.090612] add /devices/virtual/net/lo (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/lo +SUBSYSTEM=net +INTERFACE=lo +IFINDEX=1 +SEQNUM=1127 + +UDEV [1294230194.090762] add /devices/virtual/thermal/cooling_device1 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device1 +SUBSYSTEM=thermal +SEQNUM=1131 + +UDEV [1294230194.091099] add /devices/virtual/misc/vga_arbiter (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vga_arbiter +SUBSYSTEM=misc +DEVNAME=/dev/vga_arbiter +SEQNUM=1125 +MAJOR=10 +MINOR=63 +DEVLINKS=/dev/char/10:63 + +UDEV [1294230194.091437] add /devices/virtual/misc/snapshot (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/snapshot +SUBSYSTEM=misc +DEVNAME=/dev/snapshot +SEQNUM=1123 +MAJOR=10 +MINOR=231 +DEVLINKS=/dev/char/10:231 + +UDEV [1294230194.091770] add /devices/virtual/misc/psaux (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/psaux +SUBSYSTEM=misc +DEVNAME=/dev/psaux +SEQNUM=1121 +MAJOR=10 +MINOR=1 +DEVLINKS=/dev/char/10:1 + +UDEV [1294230194.092040] add /devices/virtual/misc/network_throughput (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_throughput +SUBSYSTEM=misc +DEVNAME=/dev/network_throughput +SEQNUM=1119 +MAJOR=10 +MINOR=56 +DEVLINKS=/dev/char/10:56 + +UDEV [1294230194.092378] add /devices/virtual/misc/hpet (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/hpet +SUBSYSTEM=misc +DEVNAME=/dev/hpet +SEQNUM=1116 +MAJOR=10 +MINOR=228 +DEVLINKS=/dev/char/10:228 + +UDEV [1294230194.092738] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="PNP0C0C/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=896 + +UDEV [1294230194.092818] add /devices/virtual/misc/ecryptfs (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/ecryptfs +SUBSYSTEM=misc +DEVNAME=/dev/ecryptfs +SEQNUM=1114 +MAJOR=10 +MINOR=61 +DEVLINKS=/dev/char/10:61 + +UDEV [1294230194.093165] add /devices/virtual/misc/cpu_dma_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/cpu_dma_latency +SUBSYSTEM=misc +DEVNAME=/dev/cpu_dma_latency +SEQNUM=1112 +MAJOR=10 +MINOR=58 +DEVLINKS=/dev/char/10:58 + +UDEV [1294230194.093527] add /devices/virtual/mem/urandom (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/urandom +SUBSYSTEM=mem +DEVNAME=/dev/urandom +DEVMODE=0666 +SEQNUM=1110 +MAJOR=1 +MINOR=9 +DEVLINKS=/dev/char/1:9 + +UDEV [1294230194.093871] add /devices/virtual/mem/port (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/port +SUBSYSTEM=mem +DEVNAME=/dev/port +SEQNUM=1108 +MAJOR=1 +MINOR=4 +DEVLINKS=/dev/char/1:4 + +UDEV [1294230194.093983] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=876 + +UDEV [1294230194.094259] add /devices/virtual/mem/null (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/null +SUBSYSTEM=mem +DEVNAME=/dev/null +DEVMODE=0666 +SEQNUM=1106 +MAJOR=1 +MINOR=3 +DEVLINKS=/dev/char/1:3 + +UDEV [1294230194.094311] add /devices/virtual/tty/tty17 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty17 +SUBSYSTEM=tty +DEVNAME=/dev/tty17 +SEQNUM=1144 +MAJOR=4 +MINOR=17 +DEVLINKS=/dev/char/4:17 + +UDEV [1294230194.094718] add /devices/virtual/tty/tty13 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty13 +SUBSYSTEM=tty +DEVNAME=/dev/tty13 +SEQNUM=1140 +MAJOR=4 +MINOR=13 +DEVLINKS=/dev/char/4:13 + +UDEV [1294230194.095029] add /devices/virtual/tty/tty11 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty11 +SUBSYSTEM=tty +DEVNAME=/dev/tty11 +SEQNUM=1138 +MAJOR=4 +MINOR=11 +DEVLINKS=/dev/char/4:11 + +UDEV [1294230194.095750] add /devices/virtual/mem/kmsg (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/kmsg +SUBSYSTEM=mem +DEVNAME=/dev/kmsg +SEQNUM=1104 +MAJOR=1 +MINOR=11 +DEVLINKS=/dev/char/1:11 + +UDEV [1294230194.096030] add /devices/virtual/thermal/cooling_device0 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device0 +SUBSYSTEM=thermal +SEQNUM=1130 + +UDEV [1294230194.101694] add /devices/virtual/tty/tty (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty +SUBSYSTEM=tty +DEVNAME=/dev/tty +DEVMODE=0666 +SEQNUM=1134 +MAJOR=5 +MINOR=0 +DEVLINKS=/dev/char/5:0 + +UDEV [1294230194.101904] add /devices/virtual/tty/tty15 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty15 +SUBSYSTEM=tty +DEVNAME=/dev/tty15 +SEQNUM=1142 +MAJOR=4 +MINOR=15 +DEVLINKS=/dev/char/4:15 + +UDEV [1294230194.103156] add /devices/virtual/tty/console (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/console +SUBSYSTEM=tty +DEVNAME=/dev/console +SEQNUM=1132 +MAJOR=5 +MINOR=1 +DEVLINKS=/dev/char/5:1 + +UDEV [1294230194.103319] add /devices/virtual/net/br0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/br0 +SUBSYSTEM=net +DEVTYPE=bridge +INTERFACE=br0 +IFINDEX=3 +SEQNUM=1126 + +UDEV [1294230194.103588] add /devices/virtual/sound/timer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/sound/timer +SUBSYSTEM=sound +DEVNAME=/dev/snd/timer +SEQNUM=1129 +ACL_MANAGE=1 +MAJOR=116 +MINOR=2 +DEVLINKS=/dev/char/116:2 + +UDEV [1294230194.103788] add /devices/virtual/ppp/ppp (ppp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/ppp/ppp +SUBSYSTEM=ppp +DEVNAME=/dev/ppp +SEQNUM=1128 +MAJOR=108 +MINOR=0 +DEVLINKS=/dev/char/108:0 + +UDEV [1294230194.104328] add /devices/virtual/misc/tun (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/tun +SUBSYSTEM=misc +DEVNAME=/dev/net/tun +SEQNUM=1124 +MAJOR=10 +MINOR=200 +DEVLINKS=/dev/char/10:200 + +UDEV [1294230194.105004] add /devices/virtual/misc/rfkill (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/rfkill +SUBSYSTEM=misc +DEVNAME=/dev/rfkill +SEQNUM=1122 +ACL_MANAGE=1 +MAJOR=10 +MINOR=62 +DEVLINKS=/dev/char/10:62 + +UDEV [1294230194.105549] add /devices/virtual/misc/network_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_latency +SUBSYSTEM=misc +DEVNAME=/dev/network_latency +SEQNUM=1118 +MAJOR=10 +MINOR=57 +DEVLINKS=/dev/char/10:57 + +UDEV [1294230194.105741] add /devices/virtual/misc/mcelog (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/mcelog +SUBSYSTEM=misc +DEVNAME=/dev/mcelog +SEQNUM=1117 +MAJOR=10 +MINOR=227 +DEVLINKS=/dev/char/10:227 + +UDEV [1294230194.105947] add /devices/virtual/misc/fuse (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/fuse +SUBSYSTEM=misc +DEVNAME=/dev/fuse +SEQNUM=1115 +MAJOR=10 +MINOR=229 +DEVLINKS=/dev/char/10:229 + +UDEV [1294230194.106017] add /devices/virtual/misc/pktcdvd (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/pktcdvd +SUBSYSTEM=misc +DEVNAME=/dev/pktcdvd/control +SEQNUM=1120 +MAJOR=10 +MINOR=60 +DEVLINKS=/dev/char/10:60 + +UDEV [1294230194.106169] add /devices/virtual/misc/device-mapper (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/device-mapper +SUBSYSTEM=misc +DEVNAME=/dev/mapper/control +SEQNUM=1113 +MAJOR=10 +MINOR=59 +DEVLINKS=/dev/char/10:59 + +UDEV [1294230194.106361] add /devices/virtual/mem/zero (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/zero +SUBSYSTEM=mem +DEVNAME=/dev/zero +DEVMODE=0666 +SEQNUM=1111 +MAJOR=1 +MINOR=5 +DEVLINKS=/dev/char/1:5 + +UDEV [1294230194.106589] add /devices/virtual/mem/random (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/random +SUBSYSTEM=mem +DEVNAME=/dev/random +DEVMODE=0666 +SEQNUM=1109 +MAJOR=1 +MINOR=8 +DEVLINKS=/dev/char/1:8 + +UDEV [1294230194.106835] add /devices/virtual/mem/oldmem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/oldmem +SUBSYSTEM=mem +DEVNAME=/dev/oldmem +SEQNUM=1107 +MAJOR=1 +MINOR=12 +DEVLINKS=/dev/char/1:12 + +UDEV [1294230194.107033] add /devices/virtual/mem/mem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/mem +SUBSYSTEM=mem +DEVNAME=/dev/mem +SEQNUM=1105 +MAJOR=1 +MINOR=1 +DEVLINKS=/dev/char/1:1 + +UDEV [1294230194.107254] add /devices/virtual/mem/full (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/full +SUBSYSTEM=mem +DEVNAME=/dev/full +DEVMODE=0666 +SEQNUM=1103 +MAJOR=1 +MINOR=7 +DEVLINKS=/dev/char/1:7 + +KERNEL[1294230194.108625] change /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=1209 + +UDEV [1294230194.109986] add /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=/dev/fb0 +SEQNUM=1021 +PRIMARY_DEVICE_FOR_DISPLAY=1 +MAJOR=29 +MINOR=0 +DEVLINKS=/dev/char/29:0 + +UDEV [1294230194.110010] add /devices/pci0000:00/0000:00:14.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4 +SUBSYSTEM=pci +PCI_CLASS=60401 +PCI_ID=1002:4384 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:14.4 +MODALIAS=pci:v00001002d00004384sv00000000sd00000000bc06sc04i01 +SEQNUM=1001 + +UDEV [1294230194.114957] add /devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 +SUBSYSTEM=pci_bus +SEQNUM=1002 + +UDEV [1294230194.114992] add /devices/virtual/tty/tty41 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty41 +SUBSYSTEM=tty +DEVNAME=/dev/tty41 +SEQNUM=1171 +MAJOR=4 +MINOR=41 +DEVLINKS=/dev/char/4:41 + +UDEV [1294230194.115009] add /devices/virtual/tty/tty42 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty42 +SUBSYSTEM=tty +DEVNAME=/dev/tty42 +SEQNUM=1172 +MAJOR=4 +MINOR=42 +DEVLINKS=/dev/char/4:42 + +UDEV [1294230194.115024] add /devices/virtual/tty/tty43 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty43 +SUBSYSTEM=tty +DEVNAME=/dev/tty43 +SEQNUM=1173 +MAJOR=4 +MINOR=43 +DEVLINKS=/dev/char/4:43 + +UDEV [1294230194.115039] add /devices/virtual/tty/tty44 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty44 +SUBSYSTEM=tty +DEVNAME=/dev/tty44 +SEQNUM=1174 +MAJOR=4 +MINOR=44 +DEVLINKS=/dev/char/4:44 + +UDEV [1294230194.115053] add /devices/virtual/tty/tty45 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty45 +SUBSYSTEM=tty +DEVNAME=/dev/tty45 +SEQNUM=1175 +MAJOR=4 +MINOR=45 +DEVLINKS=/dev/char/4:45 + +UDEV [1294230194.115410] add /devices/virtual/tty/tty46 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty46 +SUBSYSTEM=tty +DEVNAME=/dev/tty46 +SEQNUM=1176 +MAJOR=4 +MINOR=46 +DEVLINKS=/dev/char/4:46 + +UDEV [1294230194.115632] add /devices/virtual/tty/tty47 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty47 +SUBSYSTEM=tty +DEVNAME=/dev/tty47 +SEQNUM=1177 +MAJOR=4 +MINOR=47 +DEVLINKS=/dev/char/4:47 + +UDEV [1294230194.115834] add /module/drm_kms_helper (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm_kms_helper +SUBSYSTEM=module +SEQNUM=1208 + +UDEV [1294230194.116915] add /devices/virtual/tty/tty48 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty48 +SUBSYSTEM=tty +DEVNAME=/dev/tty48 +SEQNUM=1178 +MAJOR=4 +MINOR=48 +DEVLINKS=/dev/char/4:48 + +UDEV [1294230194.117547] add /devices/virtual/tty/tty49 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty49 +SUBSYSTEM=tty +DEVNAME=/dev/tty49 +SEQNUM=1179 +MAJOR=4 +MINOR=49 +DEVLINKS=/dev/char/4:49 + +UDEV [1294230194.118703] add /devices/virtual/tty/tty50 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty50 +SUBSYSTEM=tty +DEVNAME=/dev/tty50 +SEQNUM=1181 +MAJOR=4 +MINOR=50 +DEVLINKS=/dev/char/4:50 + +UDEV [1294230194.118724] add /devices/virtual/tty/tty51 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty51 +SUBSYSTEM=tty +DEVNAME=/dev/tty51 +SEQNUM=1182 +MAJOR=4 +MINOR=51 +DEVLINKS=/dev/char/4:51 + +UDEV [1294230194.119468] add /devices/virtual/tty/tty52 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty52 +SUBSYSTEM=tty +DEVNAME=/dev/tty52 +SEQNUM=1183 +MAJOR=4 +MINOR=52 +DEVLINKS=/dev/char/4:52 + +UDEV [1294230194.119504] add /devices/virtual/tty/tty53 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty53 +SUBSYSTEM=tty +DEVNAME=/dev/tty53 +SEQNUM=1184 +MAJOR=4 +MINOR=53 +DEVLINKS=/dev/char/4:53 + +UDEV [1294230194.119519] add /devices/virtual/tty/tty54 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty54 +SUBSYSTEM=tty +DEVNAME=/dev/tty54 +SEQNUM=1185 +MAJOR=4 +MINOR=54 +DEVLINKS=/dev/char/4:54 + +UDEV [1294230194.120001] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1207 + +UDEV [1294230194.120436] add /devices/virtual/tty/tty55 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty55 +SUBSYSTEM=tty +DEVNAME=/dev/tty55 +SEQNUM=1186 +MAJOR=4 +MINOR=55 +DEVLINKS=/dev/char/4:55 + +UDEV [1294230194.120923] add /devices/virtual/tty/tty59 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty59 +SUBSYSTEM=tty +DEVNAME=/dev/tty59 +SEQNUM=1190 +MAJOR=4 +MINOR=59 +DEVLINKS=/dev/char/4:59 + +UDEV [1294230194.121385] add /devices/virtual/vc/vcs10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs10 +SUBSYSTEM=vc +DEVNAME=/dev/vcs10 +SEQNUM=1202 +MAJOR=7 +MINOR=10 +DEVLINKS=/dev/char/7:10 + +UDEV [1294230194.121727] add /devices/virtual/vc/vcsa (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa +SUBSYSTEM=vc +DEVNAME=/dev/vcsa +SEQNUM=1203 +MAJOR=7 +MINOR=128 +DEVLINKS=/dev/char/7:128 + +UDEV [1294230194.121890] add /devices/virtual/vc/vcsa1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa1 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa1 +SEQNUM=1204 +MAJOR=7 +MINOR=129 +DEVLINKS=/dev/char/7:129 + +UDEV [1294230194.122136] add /devices/virtual/vc/vcs (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs +SUBSYSTEM=vc +DEVNAME=/dev/vcs +SEQNUM=1200 +MAJOR=7 +MINOR=0 +DEVLINKS=/dev/char/7:0 + +UDEV [1294230194.122301] add /devices/platform/Fixed MDIO bus.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0 +SUBSYSTEM=platform +MODALIAS=platform:Fixed MDIO bus +SEQNUM=1009 + +UDEV [1294230194.122472] add /devices/virtual/tty/tty7 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty7 +SUBSYSTEM=tty +DEVNAME=/dev/tty7 +SEQNUM=1196 +MAJOR=4 +MINOR=7 +DEVLINKS=/dev/char/4:7 + +UDEV [1294230194.122665] add /devices/virtual/tty/tty9 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty9 +SUBSYSTEM=tty +DEVNAME=/dev/tty9 +SEQNUM=1198 +MAJOR=4 +MINOR=9 +DEVLINKS=/dev/char/4:9 + +UDEV [1294230194.122831] add /devices/virtual/tty/tty60 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty60 +SUBSYSTEM=tty +DEVNAME=/dev/tty60 +SEQNUM=1192 +MAJOR=4 +MINOR=60 +DEVLINKS=/dev/char/4:60 + +UDEV [1294230194.123001] add /devices/virtual/tty/tty58 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty58 +SUBSYSTEM=tty +DEVNAME=/dev/tty58 +SEQNUM=1189 +MAJOR=4 +MINOR=58 +DEVLINKS=/dev/char/4:58 + +UDEV [1294230194.123166] add /devices/virtual/tty/tty62 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty62 +SUBSYSTEM=tty +DEVNAME=/dev/tty62 +SEQNUM=1194 +MAJOR=4 +MINOR=62 +DEVLINKS=/dev/char/4:62 + +UDEV [1294230194.123471] add /devices/virtual/vc/vcsa10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa10 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa10 +SEQNUM=1205 +MAJOR=7 +MINOR=138 +DEVLINKS=/dev/char/7:138 + +UDEV [1294230194.123644] add /devices/virtual/usbmon/usbmon0 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/usbmon/usbmon0 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon0 +SEQNUM=1199 +MAJOR=252 +MINOR=0 +DEVLINKS=/dev/char/252:0 + +UDEV [1294230194.123821] add /devices/virtual/tty/tty8 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty8 +SUBSYSTEM=tty +DEVNAME=/dev/tty8 +SEQNUM=1197 +MAJOR=4 +MINOR=8 +DEVLINKS=/dev/char/4:8 + +UDEV [1294230194.124346] add /devices/virtual/tty/tty63 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty63 +SUBSYSTEM=tty +DEVNAME=/dev/tty63 +SEQNUM=1195 +MAJOR=4 +MINOR=63 +DEVLINKS=/dev/char/4:63 + +UDEV [1294230194.124520] add /devices/virtual/tty/tty56 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty56 +SUBSYSTEM=tty +DEVNAME=/dev/tty56 +SEQNUM=1187 +MAJOR=4 +MINOR=56 +DEVLINKS=/dev/char/4:56 + +UDEV [1294230194.124752] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +SUBSYSTEM=input +PRODUCT=3/3f0/1024/111 +NAME="Hewlett-Packard Company HP USB Smart Card Keyboard" +PHYS="usb-0000:00:13.0-1/input0" +UNIQ="0817bd66" +EV==120013 +KEY==10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe +MSC==10 +LED==7 +MODALIAS=input:b0003v03F0p1024e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw +SEQNUM=947 + +UDEV [1294230194.124770] add /devices/virtual/vc/vcs1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs1 +SUBSYSTEM=vc +DEVNAME=/dev/vcs1 +SEQNUM=1201 +MAJOR=7 +MINOR=1 +DEVLINKS=/dev/char/7:1 + +UDEV [1294230194.125348] add /devices/virtual/tty/tty61 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty61 +SUBSYSTEM=tty +DEVNAME=/dev/tty61 +SEQNUM=1193 +MAJOR=4 +MINOR=61 +DEVLINKS=/dev/char/4:61 + +UDEV [1294230194.125593] add /devices/platform/Fixed MDIO bus.0/mdio_bus/0 (mdio_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0/mdio_bus/0 +SUBSYSTEM=mdio_bus +SEQNUM=1010 + +UDEV [1294230194.127722] add /devices/pci0000:00/0000:00:13.5/usb1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/001/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +BUSNUM=001 +DEVNUM=001 +SEQNUM=979 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ehci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ehci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=EHCI_Host_Controller +ID_MODEL_ENC=EHCI\x20Host\x20Controller +ID_MODEL_ID=0002 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ehci_hcd_EHCI_Host_Controller_0000:00:13.5 +ID_SERIAL_SHORT=0000:00:13.5 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=0 +DEVLINKS=/dev/char/189:0 + +UDEV [1294230194.127751] add /devices/virtual/tty/tty57 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty57 +SUBSYSTEM=tty +DEVNAME=/dev/tty57 +SEQNUM=1188 +MAJOR=4 +MINOR=57 +DEVLINKS=/dev/char/4:57 + +UDEV [1294230194.127765] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=847 + +UDEV [1294230194.128108] add /devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=980 + +KERNEL[1294230194.130653] add /module/serio_raw (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/serio_raw +SUBSYSTEM=module +SEQNUM=1210 + +UDEV [1294230194.130674] add /devices/pci0000:00/0000:00:14.2/input/input5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5 +SUBSYSTEM=input +PRODUCT=1/10ec/260/1 +NAME="HDA Digital PCBeep" +PHYS="card0/codec#3/beep0" +EV==40001 +SND==6 +MODALIAS=input:b0001v10ECp0260e0001-e0,12,kramls1,2,fw +SEQNUM=990 + +KERNEL[1294230194.130689] add /bus/serio/drivers/serio_raw (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/serio/drivers/serio_raw +SUBSYSTEM=drivers +SEQNUM=1211 + +UDEV [1294230194.130702] add /devices/platform/i8042/serio1 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio1 +SUBSYSTEM=serio +SERIO_TYPE=01 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty01pr00id00ex00 +SEQNUM=1014 + +UDEV [1294230194.130902] add /devices/platform/i8042/serio0 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio0 +SUBSYSTEM=serio +SERIO_TYPE=06 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty06pr00id00ex00 +SEQNUM=1013 + +KERNEL[1294230194.131602] add /module/hid_quanta (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/hid_quanta +SUBSYSTEM=module +SEQNUM=1212 + +UDEV [1294230194.132515] add /module/serio_raw (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/serio_raw +SUBSYSTEM=module +SEQNUM=1210 + +UDEV [1294230194.132547] add /bus/serio/drivers/serio_raw (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/serio/drivers/serio_raw +SUBSYSTEM=drivers +SEQNUM=1211 + +UDEV [1294230194.132557] add /module/hid_quanta (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/hid_quanta +SUBSYSTEM=module +SEQNUM=1212 + +UDEV [1294230194.133898] add /devices/pci0000:00/0000:00:13.4/usb6 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/006/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=006 +DEVNUM=001 +SEQNUM=974 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.4 +ID_SERIAL_SHORT=0000:00:13.4 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=640 +DEVLINKS=/dev/char/189:640 + +UDEV [1294230194.134006] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 +SUBSYSTEM=input +DEVNAME=/dev/input/event1 +SEQNUM=843 +ID_INPUT=1 +ID_INPUT_KEY=1 +XKBMODEL=pc105 +XKBLAYOUT=de +MAJOR=13 +MINOR=65 +DEVLINKS=/dev/char/13:65 +DMI_VENDOR=Hewlett-Packard + +UDEV [1294230194.134301] add /devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=975 + +UDEV [1294230194.137230] add /devices/platform/pcspkr (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/pcspkr +SUBSYSTEM=platform +MODALIAS=platform:pcspkr +SEQNUM=1015 + +UDEV [1294230194.137347] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=859 + +UDEV [1294230194.137530] add /devices/virtual/vtconsole/vtcon0 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon0 +SUBSYSTEM=vtconsole +SEQNUM=1206 + +UDEV [1294230194.141601] add /devices/virtual/block/ram2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram2 +SUBSYSTEM=block +DEVNAME=/dev/ram2 +DEVTYPE=disk +SEQNUM=1088 +MAJOR=1 +MINOR=2 +DEVLINKS=/dev/block/1:2 + +UDEV [1294230194.145610] add /devices/virtual/block/ram10 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram10 +SUBSYSTEM=block +DEVNAME=/dev/ram10 +DEVTYPE=disk +SEQNUM=1082 +MAJOR=1 +MINOR=10 +DEVLINKS=/dev/block/1:10 + +UDEV [1294230194.147765] add /devices/virtual/block/ram1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram1 +SUBSYSTEM=block +DEVNAME=/dev/ram1 +DEVTYPE=disk +SEQNUM=1081 +MAJOR=1 +MINOR=1 +DEVLINKS=/dev/block/1:1 + +UDEV [1294230194.149658] add /devices/virtual/block/ram11 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram11 +SUBSYSTEM=block +DEVNAME=/dev/ram11 +DEVTYPE=disk +SEQNUM=1083 +MAJOR=1 +MINOR=11 +DEVLINKS=/dev/block/1:11 + +UDEV [1294230194.151084] add /devices/virtual/block/ram15 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram15 +SUBSYSTEM=block +DEVNAME=/dev/ram15 +DEVTYPE=disk +SEQNUM=1087 +MAJOR=1 +MINOR=15 +DEVLINKS=/dev/block/1:15 + +UDEV [1294230194.152576] add /devices/virtual/block/ram4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram4 +SUBSYSTEM=block +DEVNAME=/dev/ram4 +DEVTYPE=disk +SEQNUM=1090 +MAJOR=1 +MINOR=4 +DEVLINKS=/dev/block/1:4 + +UDEV [1294230194.152597] add /devices/virtual/block/ram6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram6 +SUBSYSTEM=block +DEVNAME=/dev/ram6 +DEVTYPE=disk +SEQNUM=1092 +MAJOR=1 +MINOR=6 +DEVLINKS=/dev/block/1:6 + +UDEV [1294230194.152614] add /devices/virtual/block/ram12 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram12 +SUBSYSTEM=block +DEVNAME=/dev/ram12 +DEVTYPE=disk +SEQNUM=1084 +MAJOR=1 +MINOR=12 +DEVLINKS=/dev/block/1:12 + +UDEV [1294230194.152641] add /devices/virtual/block/ram8 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram8 +SUBSYSTEM=block +DEVNAME=/dev/ram8 +DEVTYPE=disk +SEQNUM=1094 +MAJOR=1 +MINOR=8 +DEVLINKS=/dev/block/1:8 + +UDEV [1294230194.152657] add /devices/virtual/block/ram0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram0 +SUBSYSTEM=block +DEVNAME=/dev/ram0 +DEVTYPE=disk +SEQNUM=1080 +MAJOR=1 +MINOR=0 +DEVLINKS=/dev/block/1:0 + +UDEV [1294230194.153551] add /devices/virtual/block/ram5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram5 +SUBSYSTEM=block +DEVNAME=/dev/ram5 +DEVTYPE=disk +SEQNUM=1091 +MAJOR=1 +MINOR=5 +DEVLINKS=/dev/block/1:5 + +UDEV [1294230194.154236] add /devices/virtual/block/ram3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram3 +SUBSYSTEM=block +DEVNAME=/dev/ram3 +DEVTYPE=disk +SEQNUM=1089 +MAJOR=1 +MINOR=3 +DEVLINKS=/dev/block/1:3 + +UDEV [1294230194.155044] add /devices/virtual/block/ram7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram7 +SUBSYSTEM=block +DEVNAME=/dev/ram7 +DEVTYPE=disk +SEQNUM=1093 +MAJOR=1 +MINOR=7 +DEVLINKS=/dev/block/1:7 + +UDEV [1294230194.155920] add /devices/virtual/block/ram13 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram13 +SUBSYSTEM=block +DEVNAME=/dev/ram13 +DEVTYPE=disk +SEQNUM=1085 +MAJOR=1 +MINOR=13 +DEVLINKS=/dev/block/1:13 + +UDEV [1294230194.158874] add /devices/virtual/block/ram14 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram14 +SUBSYSTEM=block +DEVNAME=/dev/ram14 +DEVTYPE=disk +SEQNUM=1086 +MAJOR=1 +MINOR=14 +DEVLINKS=/dev/block/1:14 + +KERNEL[1294230194.159052] add /class/usb (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/usb +SUBSYSTEM=class +SEQNUM=1213 + +KERNEL[1294230194.159067] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 +SUBSYSTEM=usb +DEVNAME=usb/hiddev0 +SEQNUM=1214 +MAJOR=180 +MINOR=96 + +KERNEL[1294230194.159082] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 +SUBSYSTEM=hidraw +DEVNAME=hidraw2 +SEQNUM=1215 +MAJOR=251 +MINOR=2 + +KERNEL[1294230194.159094] add /bus/hid/drivers/quanta-touch (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/hid/drivers/quanta-touch +SUBSYSTEM=drivers +SEQNUM=1216 + +UDEV [1294230194.160417] add /class/usb (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/usb +SUBSYSTEM=class +SEQNUM=1213 + +UDEV [1294230194.160987] add /devices/pci0000:00/0000:00:13.2/usb4/4-2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/004/003 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=461/4d20/200 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=003 +SEQNUM=961 +ID_VENDOR=0461 +ID_VENDOR_ENC=0461 +ID_VENDOR_ID=0461 +ID_MODEL=USB_Optical_Mouse +ID_MODEL_ENC=USB\x20Optical\x20Mouse +ID_MODEL_ID=4d20 +ID_REVISION=0200 +ID_SERIAL=0461_USB_Optical_Mouse +ID_BUS=usb +ID_USB_INTERFACES=:030102: +MAJOR=189 +MINOR=386 +DEVLINKS=/dev/char/189:386 + +UDEV [1294230194.161010] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 +SUBSYSTEM=usb +DEVNAME=/dev/usb/hiddev0 +SEQNUM=1214 +MAJOR=180 +MINOR=96 +DEVLINKS=/dev/char/180:96 + +UDEV [1294230194.161344] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=461/4d20/200 +TYPE=0/0/0 +INTERFACE=3/1/2 +MODALIAS=usb:v0461p4D20d0200dc00dsc00dp00ic03isc01ip02 +SEQNUM=962 + +UDEV [1294230194.161745] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:00000461:00004D20 +HID_NAME=USB Optical Mouse +HID_PHYS=usb-0000:00:13.2-2/input0 +MODALIAS=hid:b0003v00000461p00004D20 +SEQNUM=963 + +UDEV [1294230194.162197] add /bus/hid/drivers/quanta-touch (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/hid/drivers/quanta-touch +SUBSYSTEM=drivers +SEQNUM=1216 + +UDEV [1294230194.162818] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 +SUBSYSTEM=hidraw +DEVNAME=/dev/hidraw1 +SEQNUM=964 +MAJOR=251 +MINOR=1 +DEVLINKS=/dev/char/251:1 + +UDEV [1294230194.163653] add /devices/virtual/tty/tty40 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty40 +SUBSYSTEM=tty +DEVNAME=/dev/tty40 +SEQNUM=1170 +MAJOR=4 +MINOR=40 +DEVLINKS=/dev/char/4:40 + +KERNEL[1294230194.170046] add /module/ttm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ttm +SUBSYSTEM=module +SEQNUM=1217 + +UDEV [1294230194.170425] add /module/ttm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ttm +SUBSYSTEM=module +SEQNUM=1217 + +UDEV [1294230194.171793] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 +SUBSYSTEM=hid +HID_ID=0003:00000408:00003000 +HID_NAME=Quanta Computer Inc. Optical Touch Screen +HID_PHYS=usb-0000:00:13.2-1/input0 +MODALIAS=hid:b0003v00000408p00003000 +SEQNUM=960 + +UDEV [1294230194.171817] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 +SUBSYSTEM=hidraw +DEVNAME=/dev/hidraw2 +SEQNUM=1215 +MAJOR=251 +MINOR=2 +DEVLINKS=/dev/char/251:2 + +KERNEL[1294230194.172693] add /devices/virtual/drm/ttm (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/drm/ttm +SUBSYSTEM=drm +DEVTYPE=ttm +SEQNUM=1218 + +UDEV [1294230194.172956] add /devices/virtual/drm/ttm (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/drm/ttm +SUBSYSTEM=drm +DEVTYPE=ttm +SEQNUM=1218 + +UDEV [1294230194.185017] add /devices/virtual/dmi/id (dmi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/dmi/id +SUBSYSTEM=dmi +MODALIAS=dmi:bvnHewlett-Packard:bvr786E3v02.22:bd04/18/2007:svnHewlett-Packard:pnHPCompaqdc5750Microtower:pvr:rvnHewlett-Packard:rn0A64h:rvr:cvnHewlett-Packard:ct6:cvr: +SEQNUM=1097 + +UDEV [1294230194.187869] add /devices/virtual/input/mice (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/mice +SUBSYSTEM=input +DEVNAME=/dev/input/mice +SEQNUM=1102 +MAJOR=13 +MINOR=63 +DEVLINKS=/dev/char/13:63 + +UDEV [1294230194.196027] add /devices/virtual/block/ram9 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram9 +SUBSYSTEM=block +DEVNAME=/dev/ram9 +DEVTYPE=disk +SEQNUM=1095 +MAJOR=1 +MINOR=9 +DEVLINKS=/dev/block/1:9 + +UDEV [1294230194.200183] add /devices/pci0000:00/0000:00:14.2/input/input5/event5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5/event5 +SUBSYSTEM=input +DEVNAME=/dev/input/event5 +SEQNUM=991 +ID_INPUT=1 +DMI_VENDOR=Hewlett-Packard +MAJOR=13 +MINOR=69 +DEVLINKS=/dev/char/13:69 + +UDEV [1294230194.204053] add /devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 +SUBSYSTEM=sound +DEVNAME=/dev/snd/controlC0 +SEQNUM=999 +ID_PATH=pci-0000:00:14.2 +ACL_MANAGE=1 +MAJOR=116 +MINOR=6 +DEVLINKS=/dev/char/116:6 /dev/snd/by-path/pci-0000:00:14.2 + +KERNEL[1294230194.242647] add /module/radeon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/radeon +SUBSYSTEM=module +SEQNUM=1219 + +KERNEL[1294230194.245147] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 +SUBSYSTEM=drm +DEVNAME=dri/controlD64 +DEVTYPE=drm_minor +SEQNUM=1220 +MAJOR=226 +MINOR=64 + +KERNEL[1294230194.245312] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1221 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.295493] add /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1222 + +KERNEL[1294230194.295514] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1223 + +UDEV [1294230194.298755] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0501:PNP0500: +SEQNUM=867 + +UDEV [1294230194.298774] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=889 + +UDEV [1294230194.298786] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=879 + +UDEV [1294230194.298798] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0F13:PNP0F0E: +SEQNUM=872 + +UDEV [1294230194.301934] add /devices/virtual/tty/tty5 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty5 +SUBSYSTEM=tty +DEVNAME=/dev/tty5 +SEQNUM=1180 +MAJOR=4 +MINOR=5 +DEVLINKS=/dev/char/4:5 + +UDEV [1294230194.302826] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0000: +SEQNUM=860 + +UDEV [1294230194.302847] add /devices/virtual/tty/tty3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty3 +SUBSYSTEM=tty +DEVNAME=/dev/tty3 +SEQNUM=1158 +MAJOR=4 +MINOR=3 +DEVLINKS=/dev/char/4:3 + +UDEV [1294230194.302863] add /devices/virtual/tty/tty4 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty4 +SUBSYSTEM=tty +DEVNAME=/dev/tty4 +SEQNUM=1169 +MAJOR=4 +MINOR=4 +DEVLINKS=/dev/char/4:4 + +UDEV [1294230194.307757] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0200: +SEQNUM=864 + +UDEV [1294230194.313051] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C04: +SEQNUM=871 + +UDEV [1294230194.313167] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 +SUBSYSTEM=input +DEVNAME=/dev/input/event0 +SEQNUM=897 +ID_INPUT=1 +ID_INPUT_KEY=1 +XKBMODEL=pc105 +XKBLAYOUT=de +MAJOR=13 +MINOR=64 +DEVLINKS=/dev/char/13:64 +DMI_VENDOR=Hewlett-Packard + +UDEV [1294230194.313186] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=874 + +UDEV [1294230194.316178] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0401: +SEQNUM=866 + +UDEV [1294230194.327835] add /devices/virtual/input/input2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2 +SUBSYSTEM=input +PRODUCT=17/1/1/100 +NAME="Macintosh mouse button emulation" +EV==7 +KEY==70000 0 0 0 0 0 0 0 0 +REL==3 +MODALIAS=input:b0017v0001p0001e0100-e0,1,2,k110,111,112,r0,1,amlsfw +SEQNUM=1099 + +UDEV [1294230194.337009] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +SUBSYSTEM=input +PRODUCT=3/461/4d20/111 +NAME="USB Optical Mouse" +PHYS="usb-0000:00:13.2-2/input0" +UNIQ="" +EV==17 +KEY==70000 0 0 0 0 0 0 0 0 +REL==103 +MSC==10 +MODALIAS=input:b0003v0461p4D20e0111-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw +SEQNUM=965 + +UDEV [1294230194.340076] add /devices/virtual/tty/tty2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty2 +SUBSYSTEM=tty +DEVNAME=/dev/tty2 +SEQNUM=1147 +MAJOR=4 +MINOR=2 +DEVLINKS=/dev/char/4:2 + +UDEV [1294230194.340097] add /devices/virtual/tty/tty1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty1 +SUBSYSTEM=tty +DEVNAME=/dev/tty1 +SEQNUM=1136 +MAJOR=4 +MINOR=1 +DEVLINKS=/dev/char/4:1 + +UDEV [1294230194.341847] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0100: +SEQNUM=862 + +UDEV [1294230194.343270] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0103: +SEQNUM=863 + +UDEV [1294230194.343290] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0003: +SEQNUM=861 + +UDEV [1294230194.343303] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=877 + +UDEV [1294230194.343316] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0B00: +SEQNUM=870 + +UDEV [1294230194.343328] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0800: +SEQNUM=869 + +UDEV [1294230194.343516] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0303: +SEQNUM=865 + +UDEV [1294230194.343953] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=891 + +KERNEL[1294230194.348047] add /module/floppy (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1224 + +KERNEL[1294230194.348278] add /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1225 + +UDEV [1294230194.350217] add /devices/virtual/block/ramzswap0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ramzswap0 +SUBSYSTEM=block +DEVNAME=/dev/ramzswap0 +DEVTYPE=disk +SEQNUM=1096 +ID_FS_VERSION=2 +ID_FS_TYPE=swap +ID_FS_USAGE=other +MAJOR=250 +MINOR=0 +DEVLINKS=/dev/block/250:0 + +UDEV [1294230194.350849] add /devices/virtual/tty/tty6 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty6 +SUBSYSTEM=tty +DEVNAME=/dev/tty6 +SEQNUM=1191 +MAJOR=4 +MINOR=6 +DEVLINKS=/dev/char/4:6 + +UDEV [1294230194.356565] change /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=1209 +SOUND_INITIALIZED=1 +ID_VENDOR_FROM_DATABASE=ATI Technologies Inc +ID_MODEL_FROM_DATABASE=SBx00 Azalia (Intel HDA) +ID_BUS=pci +ID_VENDOR_ID=0x1002 +ID_MODEL_ID=0x4383 +ID_PATH=pci-0000:00:14.2 +SOUND_FORM_FACTOR=internal + +UDEV [1294230194.360460] add /devices/virtual/block/loop7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop7 +SUBSYSTEM=block +DEVNAME=/dev/loop7 +DEVTYPE=disk +SEQNUM=1079 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=7 +DEVLINKS=/dev/block/7:7 + +UDEV [1294230194.360612] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 +SUBSYSTEM=input +DEVNAME=/dev/input/event3 +SEQNUM=948 +ID_INPUT=1 +ID_INPUT_KEY=1 +ID_INPUT_KEYBOARD=1 +ID_VENDOR=Hewlett-Packard_Company +ID_VENDOR_ENC=Hewlett-Packard\x20Company +ID_VENDOR_ID=03f0 +ID_MODEL=HP_USB_Smart_Card_Keyboard +ID_MODEL_ENC=HP\x20USB\x20Smart\x20Card\x20Keyboard +ID_MODEL_ID=1024 +ID_REVISION=0535 +ID_SERIAL=Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66 +ID_SERIAL_SHORT=0817bd66 +ID_TYPE=hid +ID_BUS=usb +ID_USB_INTERFACES=:030101:0b0000: +ID_USB_INTERFACE_NUM=00 +ID_USB_DRIVER=usbhid +ID_PATH=pci-0000:00:13.0-usb-0:1:1.0 +XKBMODEL=pc105 +XKBLAYOUT=de +MAJOR=13 +MINOR=67 +DEVLINKS=/dev/char/13:67 /dev/input/by-id/usb-Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66-event-kbd /dev/input/by-path/pci-0000:00:13.0-usb-0:1:1.0-event-kbd + +UDEV [1294230194.362286] add /devices/virtual/block/loop1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop1 +SUBSYSTEM=block +DEVNAME=/dev/loop1 +DEVTYPE=disk +SEQNUM=1071 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=1 +DEVLINKS=/dev/block/7:1 + +UDEV [1294230194.363753] add /devices/virtual/block/loop4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop4 +SUBSYSTEM=block +DEVNAME=/dev/loop4 +DEVTYPE=disk +SEQNUM=1074 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=4 +DEVLINKS=/dev/block/7:4 + +UDEV [1294230194.364487] add /devices/virtual/block/loop6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop6 +SUBSYSTEM=block +DEVNAME=/dev/loop6 +DEVTYPE=disk +SEQNUM=1078 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=6 +DEVLINKS=/dev/block/7:6 + +UDEV [1294230194.365254] add /devices/virtual/block/loop5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop5 +SUBSYSTEM=block +DEVNAME=/dev/loop5 +DEVTYPE=disk +SEQNUM=1076 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=5 +DEVLINKS=/dev/block/7:5 + +UDEV [1294230194.365995] add /devices/virtual/block/loop3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop3 +SUBSYSTEM=block +DEVNAME=/dev/loop3 +DEVTYPE=disk +SEQNUM=1073 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=3 +DEVLINKS=/dev/block/7:3 + +UDEV [1294230194.366724] add /devices/virtual/block/loop0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop0 +SUBSYSTEM=block +DEVNAME=/dev/loop0 +DEVTYPE=disk +SEQNUM=1070 +ID_FS_UUID=4D24-62FE +ID_FS_UUID_ENC=4D24-62FE +ID_FS_VERSION=FAT32 +ID_FS_TYPE=vfat +ID_FS_USAGE=filesystem +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=0 +DEVLINKS=/dev/block/7:0 /dev/disk/by-uuid/4D24-62FE + +UDEV [1294230194.368292] add /devices/virtual/block/loop2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop2 +SUBSYSTEM=block +DEVNAME=/dev/loop2 +DEVTYPE=disk +SEQNUM=1072 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=2 +DEVLINKS=/dev/block/7:2 + +UDEV [1294230194.377054] add /module/radeon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/radeon +SUBSYSTEM=module +SEQNUM=1219 + +UDEV [1294230194.377243] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 +SUBSYSTEM=net +INTERFACE=eth0 +IFINDEX=2 +SEQNUM=910 +ID_VENDOR_FROM_DATABASE=Broadcom Corporation +ID_MODEL_FROM_DATABASE=NetXtreme BCM5755 Gigabit Ethernet PCI Express +ID_BUS=pci +ID_VENDOR_ID=0x14e4 +ID_MODEL_ID=0x167b +MATCHADDR=00:1e:0b:27:f4:99 +MATCHIFTYPE=1 +MATCHDEVID=0x0 +COMMENT=PCI device 0x14e4:0x167b (tg3) + +UDEV [1294230194.391169] add /devices/virtual/input/input2/event2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/event2 +SUBSYSTEM=input +DEVNAME=/dev/input/event2 +SEQNUM=1100 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_SERIAL=noserial +DMI_VENDOR=Hewlett-Packard +MAJOR=13 +MINOR=66 +DEVLINKS=/dev/char/13:66 + +UDEV [1294230194.393053] add /devices/virtual/input/input2/mouse0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/mouse0 +SUBSYSTEM=input +DEVNAME=/dev/input/mouse0 +SEQNUM=1101 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_SERIAL=noserial +MAJOR=13 +MINOR=32 +DEVLINKS=/dev/char/13:32 + +UDEV [1294230194.395611] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=890 + +UDEV [1294230194.399356] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=893 + +UDEV [1294230194.410102] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 +SUBSYSTEM=input +DEVNAME=/dev/input/mouse1 +SEQNUM=967 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_VENDOR=0461 +ID_VENDOR_ENC=0461 +ID_VENDOR_ID=0461 +ID_MODEL=USB_Optical_Mouse +ID_MODEL_ENC=USB\x20Optical\x20Mouse +ID_MODEL_ID=4d20 +ID_REVISION=0200 +ID_SERIAL=0461_USB_Optical_Mouse +ID_TYPE=hid +ID_BUS=usb +ID_USB_INTERFACES=:030102: +ID_USB_INTERFACE_NUM=00 +ID_USB_DRIVER=usbhid +ID_PATH=pci-0000:00:13.2-usb-0:2:1.0 +MAJOR=13 +MINOR=33 +DEVLINKS=/dev/char/13:33 /dev/input/by-id/usb-0461_USB_Optical_Mouse-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:2:1.0-mouse + +UDEV [1294230194.412973] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 +SUBSYSTEM=input +DEVNAME=/dev/input/event4 +SEQNUM=966 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_VENDOR=0461 +ID_VENDOR_ENC=0461 +ID_VENDOR_ID=0461 +ID_MODEL=USB_Optical_Mouse +ID_MODEL_ENC=USB\x20Optical\x20Mouse +ID_MODEL_ID=4d20 +ID_REVISION=0200 +ID_SERIAL=0461_USB_Optical_Mouse +ID_TYPE=hid +ID_BUS=usb +ID_USB_INTERFACES=:030102: +ID_USB_INTERFACE_NUM=00 +ID_USB_DRIVER=usbhid +ID_PATH=pci-0000:00:13.2-usb-0:2:1.0 +MAJOR=13 +MINOR=68 +DEVLINKS=/dev/char/13:68 /dev/input/by-id/usb-0461_USB_Optical_Mouse-event-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:2:1.0-event-mouse + +UDEV [1294230194.416066] add /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1225 + +UDEV [1294230194.416488] add /module/floppy (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1224 + +UDEV [1294230194.422570] add /devices/virtual/graphics/fbcon (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/graphics/fbcon +SUBSYSTEM=graphics +SEQNUM=1098 + +UDEV [1294230194.431850] add /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1222 + +KERNEL[1294230194.437573] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1226 + +KERNEL[1294230194.437591] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1227 + +UDEV [1294230194.438535] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1223 + +UDEV [1294230194.444521] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1226 + +KERNEL[1294230194.445484] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1228 + +KERNEL[1294230194.445505] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1229 + +UDEV [1294230194.445994] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1227 + +UDEV [1294230194.451766] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1228 + +KERNEL[1294230194.479150] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1230 + +UDEV [1294230194.479167] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1230 + +KERNEL[1294230194.479180] remove /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1231 + +UDEV [1294230194.479785] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1229 + +UDEV [1294230194.480755] remove /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1231 + +KERNEL[1294230194.503725] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 +SUBSYSTEM=drm +SEQNUM=1232 + +KERNEL[1294230194.503882] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1233 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.504013] add /devices/i2c-1 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-1 +SUBSYSTEM=i2c +SEQNUM=1234 + +UDEV [1294230194.504556] add /devices/i2c-1 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-1 +SUBSYSTEM=i2c +SEQNUM=1234 + +KERNEL[1294230194.504716] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 +SUBSYSTEM=drm +SEQNUM=1235 + +KERNEL[1294230194.504802] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1236 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.504961] add /devices/i2c-2 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-2 +SUBSYSTEM=i2c +SEQNUM=1237 + +UDEV [1294230194.505134] add /devices/i2c-2 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-2 +SUBSYSTEM=i2c +SEQNUM=1237 + +KERNEL[1294230194.505928] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 +SUBSYSTEM=drm +SEQNUM=1238 + +KERNEL[1294230194.506043] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1239 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.528521] add /module/vboxdrv (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxdrv +SUBSYSTEM=module +SEQNUM=1240 + +KERNEL[1294230194.528909] add /devices/virtual/misc/vboxdrv (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxdrv +SUBSYSTEM=misc +DEVNAME=vboxdrv +SEQNUM=1241 +MAJOR=10 +MINOR=55 + +KERNEL[1294230194.529015] add /bus/platform/drivers/vboxdrv (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vboxdrv +SUBSYSTEM=drivers +SEQNUM=1242 + +KERNEL[1294230194.529051] add /devices/platform/vboxdrv.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vboxdrv.0 +SUBSYSTEM=platform +MODALIAS=platform:vboxdrv +SEQNUM=1243 + +UDEV [1294230194.531422] add /module/vboxdrv (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxdrv +SUBSYSTEM=module +SEQNUM=1240 + +UDEV [1294230194.532655] add /bus/platform/drivers/vboxdrv (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vboxdrv +SUBSYSTEM=drivers +SEQNUM=1242 + +UDEV [1294230194.533083] add /devices/virtual/misc/vboxdrv (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxdrv +SUBSYSTEM=misc +DEVNAME=/dev/vboxdrv +SEQNUM=1241 +MAJOR=10 +MINOR=55 +DEVLINKS=/dev/char/10:55 + +UDEV [1294230194.536691] add /devices/platform/vboxdrv.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vboxdrv.0 +SUBSYSTEM=platform +MODALIAS=platform:vboxdrv +SEQNUM=1243 + +KERNEL[1294230194.538814] add /module/rpcsec_gss_krb5 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/rpcsec_gss_krb5 +SUBSYSTEM=module +SEQNUM=1244 + +UDEV [1294230194.538830] add /module/rpcsec_gss_krb5 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/rpcsec_gss_krb5 +SUBSYSTEM=module +SEQNUM=1244 + +KERNEL[1294230194.545812] add /module/vboxnetflt (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetflt +SUBSYSTEM=module +SEQNUM=1245 + +UDEV [1294230194.546317] add /module/vboxnetflt (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetflt +SUBSYSTEM=module +SEQNUM=1245 + +KERNEL[1294230194.564522] add /module/vboxnetadp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetadp +SUBSYSTEM=module +SEQNUM=1246 + +UDEV [1294230194.565271] add /module/vboxnetadp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetadp +SUBSYSTEM=module +SEQNUM=1246 + +KERNEL[1294230194.568066] add /devices/virtual/net/vboxnet0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vboxnet0 +SUBSYSTEM=net +INTERFACE=vboxnet0 +IFINDEX=4 +SEQNUM=1247 + +UDEV [1294230194.568731] add /devices/virtual/net/vboxnet0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vboxnet0 +SUBSYSTEM=net +INTERFACE=vboxnet0 +IFINDEX=4 +SEQNUM=1247 + +KERNEL[1294230194.569888] add /devices/virtual/misc/vboxnetctl (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxnetctl +SUBSYSTEM=misc +DEVNAME=vboxnetctl +SEQNUM=1248 +MAJOR=10 +MINOR=54 + +UDEV [1294230194.570859] add /devices/virtual/misc/vboxnetctl (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxnetctl +SUBSYSTEM=misc +DEVNAME=/dev/vboxnetctl +SEQNUM=1248 +MAJOR=10 +MINOR=54 +DEVLINKS=/dev/char/10:54 + +KERNEL[1294230194.616724] add /module/vmmon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmmon +SUBSYSTEM=module +SEQNUM=1249 + +KERNEL[1294230194.616997] add /devices/virtual/misc/vmmon (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmmon +SUBSYSTEM=misc +DEVNAME=vmmon +SEQNUM=1250 +MAJOR=10 +MINOR=165 + +UDEV [1294230194.617827] add /module/vmmon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmmon +SUBSYSTEM=module +SEQNUM=1249 + +UDEV [1294230194.617847] add /devices/virtual/misc/vmmon (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmmon +SUBSYSTEM=misc +DEVNAME=/dev/vmmon +SEQNUM=1250 +MAJOR=10 +MINOR=165 +DEVLINKS=/dev/char/10:165 + +KERNEL[1294230194.638268] add /module/vmnet (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmnet +SUBSYSTEM=module +SEQNUM=1251 + +UDEV [1294230194.638879] add /module/vmnet (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmnet +SUBSYSTEM=module +SEQNUM=1251 + +KERNEL[1294230194.652737] add /module/vmci (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmci +SUBSYSTEM=module +SEQNUM=1252 + +UDEV [1294230194.653330] add /module/vmci (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmci +SUBSYSTEM=module +SEQNUM=1252 + +KERNEL[1294230194.653714] add /devices/virtual/misc/vmci (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmci +SUBSYSTEM=misc +DEVNAME=vmci +SEQNUM=1253 +MAJOR=10 +MINOR=53 + +UDEV [1294230194.654075] add /devices/virtual/misc/vmci (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmci +SUBSYSTEM=misc +DEVNAME=/dev/vmci +SEQNUM=1253 +MAJOR=10 +MINOR=53 +DEVLINKS=/dev/char/10:53 + +KERNEL[1294230194.669917] add /module/vmblock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmblock +SUBSYSTEM=module +SEQNUM=1254 + +KERNEL[1294230194.670335] add /kernel/slab/:t-0004160 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0004160 +SUBSYSTEM=slab +SEQNUM=1255 + +UDEV [1294230194.670353] add /module/vmblock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmblock +SUBSYSTEM=module +SEQNUM=1254 + +KERNEL[1294230194.670366] add /kernel/slab/VMBlockInodeCache (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/VMBlockInodeCache +SUBSYSTEM=slab +SEQNUM=1256 + +UDEV [1294230194.670376] add /kernel/slab/VMBlockInodeCache (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/VMBlockInodeCache +SUBSYSTEM=slab +SEQNUM=1256 + +UDEV [1294230194.670387] add /kernel/slab/:t-0004160 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0004160 +SUBSYSTEM=slab +SEQNUM=1255 + +KERNEL[1294230194.677479] add /module/vsock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vsock +SUBSYSTEM=module +SEQNUM=1257 + +UDEV [1294230194.678113] add /module/vsock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vsock +SUBSYSTEM=module +SEQNUM=1257 + +KERNEL[1294230194.693320] add /devices/virtual/misc/vsock (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vsock +SUBSYSTEM=misc +DEVNAME=vsock +SEQNUM=1258 +MAJOR=10 +MINOR=52 + +UDEV [1294230194.694253] add /devices/virtual/misc/vsock (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vsock +SUBSYSTEM=misc +DEVNAME=/dev/vsock +SEQNUM=1258 +MAJOR=10 +MINOR=52 +DEVLINKS=/dev/char/10:52 + +KERNEL[1294230194.723676] add /devices/virtual/net/vmnet1 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet1 +SUBSYSTEM=net +INTERFACE=vmnet1 +IFINDEX=5 +SEQNUM=1259 + +UDEV [1294230194.724313] add /devices/virtual/net/vmnet1 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet1 +SUBSYSTEM=net +INTERFACE=vmnet1 +IFINDEX=5 +SEQNUM=1259 + +KERNEL[1294230194.758324] add /devices/virtual/net/vmnet8 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet8 +SUBSYSTEM=net +INTERFACE=vmnet8 +IFINDEX=6 +SEQNUM=1260 + +UDEV [1294230194.760239] add /devices/virtual/net/vmnet8 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet8 +SUBSYSTEM=net +INTERFACE=vmnet8 +IFINDEX=6 +SEQNUM=1260 + +UDEV [1294230194.788037] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +SUBSYSTEM=block +DEVNAME=/dev/sda +DEVTYPE=disk +SEQNUM=917 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION_TABLE=1 +UDISKS_PARTITION_TABLE_SCHEME=mbr +UDISKS_PARTITION_TABLE_COUNT=4 +UDISKS_ATA_SMART_IS_AVAILABLE=1 +MAJOR=8 +MINOR=0 +DEVLINKS=/dev/block/8:0 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0 + +KERNEL[1294230194.816156] remove /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=fb0 +SEQNUM=1261 +MAJOR=29 +MINOR=0 + +KERNEL[1294230194.816570] remove /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1262 + +KERNEL[1294230194.817059] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=fb0 +SEQNUM=1263 +MAJOR=29 +MINOR=0 + +UDEV [1294230194.817683] remove /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=/dev/fb0 +SEQNUM=1261 +PRIMARY_DEVICE_FOR_DISPLAY=1 +MAJOR=29 +MINOR=0 +DEVLINKS=/dev/char/29:0 + +KERNEL[1294230194.817706] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1264 + +UDEV [1294230194.818728] remove /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1262 + +UDEV [1294230194.820011] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1264 + +KERNEL[1294230194.830213] add /module/x_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/x_tables +SUBSYSTEM=module +SEQNUM=1265 + +UDEV [1294230194.830647] add /module/x_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/x_tables +SUBSYSTEM=module +SEQNUM=1265 + +KERNEL[1294230194.835089] add /module/ip_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ip_tables +SUBSYSTEM=module +SEQNUM=1266 + +UDEV [1294230194.835333] add /module/ip_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ip_tables +SUBSYSTEM=module +SEQNUM=1266 + +KERNEL[1294230194.852366] add /bus/pci/drivers/radeon (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/pci/drivers/radeon +SUBSYSTEM=drivers +SEQNUM=1267 + +UDEV [1294230194.852884] add /bus/pci/drivers/radeon (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/pci/drivers/radeon +SUBSYSTEM=drivers +SEQNUM=1267 + +KERNEL[1294230194.855311] add /module/nf_defrag_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_defrag_ipv4 +SUBSYSTEM=module +SEQNUM=1268 + +UDEV [1294230194.855563] add /module/nf_defrag_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_defrag_ipv4 +SUBSYSTEM=module +SEQNUM=1268 + +KERNEL[1294230194.856411] add /module/vgastate (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vgastate +SUBSYSTEM=module +SEQNUM=1269 + +UDEV [1294230194.856638] add /module/vgastate (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vgastate +SUBSYSTEM=module +SEQNUM=1269 + +KERNEL[1294230194.859825] add /module/vga16fb (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vga16fb +SUBSYSTEM=module +SEQNUM=1270 + +KERNEL[1294230194.860010] add /bus/platform/drivers/vga16fb (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vga16fb +SUBSYSTEM=drivers +SEQNUM=1271 + +UDEV [1294230194.860093] add /module/vga16fb (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vga16fb +SUBSYSTEM=module +SEQNUM=1270 + +UDEV [1294230194.860363] add /bus/platform/drivers/vga16fb (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vga16fb +SUBSYSTEM=drivers +SEQNUM=1271 + +KERNEL[1294230194.860517] add /devices/platform/vga16fb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vga16fb.0 +SUBSYSTEM=platform +MODALIAS=platform:vga16fb +SEQNUM=1272 + +UDEV [1294230194.861254] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0 +SUBSYSTEM=pci +PCI_CLASS=30000 +PCI_ID=1002:94C1 +PCI_SUBSYS_ID=1028:0D02 +PCI_SLOT_NAME=0000:02:00.0 +MODALIAS=pci:v00001002d000094C1sv00001028sd00000D02bc03sc00i00 +SEQNUM=905 + +UDEV [1294230194.861273] add /devices/platform/vga16fb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vga16fb.0 +SUBSYSTEM=platform +MODALIAS=platform:vga16fb +SEQNUM=1272 + +UDEV [1294230194.861845] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1221 +ACL_MANAGE=1 +PRIMARY_DEVICE_FOR_DISPLAY=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.862111] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 +SUBSYSTEM=drm +DEVNAME=/dev/dri/controlD64 +DEVTYPE=drm_minor +SEQNUM=1220 +MAJOR=226 +MINOR=64 +DEVLINKS=/dev/char/226:64 + +UDEV [1294230194.862327] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 +SUBSYSTEM=drm +SEQNUM=1232 + +UDEV [1294230194.862683] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1233 +ACL_MANAGE=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.862867] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 +SUBSYSTEM=drm +SEQNUM=1235 + +UDEV [1294230194.863161] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1236 +ACL_MANAGE=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.863335] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 +SUBSYSTEM=drm +SEQNUM=1238 + +UDEV [1294230194.863616] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1239 +ACL_MANAGE=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.868901] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=/dev/fb0 +SEQNUM=1263 +MAJOR=29 +MINOR=0 +DEVLINKS=/dev/char/29:0 + +KERNEL[1294230194.875337] add /module/nf_conntrack (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack +SUBSYSTEM=module +SEQNUM=1273 + +UDEV [1294230194.875582] add /module/nf_conntrack (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack +SUBSYSTEM=module +SEQNUM=1273 + +KERNEL[1294230194.875812] add /kernel/slab/nf_conntrack_c0932380 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/nf_conntrack_c0932380 +SUBSYSTEM=slab +SEQNUM=1274 + +UDEV [1294230194.875976] add /kernel/slab/nf_conntrack_c0932380 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/nf_conntrack_c0932380 +SUBSYSTEM=slab +SEQNUM=1274 + +KERNEL[1294230194.876091] add /kernel/slab/:t-0000168 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0000168 +SUBSYSTEM=slab +SEQNUM=1275 + +UDEV [1294230194.876266] add /kernel/slab/:t-0000168 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0000168 +SUBSYSTEM=slab +SEQNUM=1275 + +KERNEL[1294230194.881395] add /module/nf_conntrack_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack_ipv4 +SUBSYSTEM=module +SEQNUM=1276 + +UDEV [1294230194.881645] add /module/nf_conntrack_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack_ipv4 +SUBSYSTEM=module +SEQNUM=1276 + +KERNEL[1294230194.887184] add /module/nf_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_nat +SUBSYSTEM=module +SEQNUM=1277 + +UDEV [1294230194.888088] add /module/nf_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_nat +SUBSYSTEM=module +SEQNUM=1277 + +KERNEL[1294230194.893958] add /module/iptable_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/iptable_nat +SUBSYSTEM=module +SEQNUM=1278 + +UDEV [1294230194.894249] add /module/iptable_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/iptable_nat +SUBSYSTEM=module +SEQNUM=1278 + +UDEV [1294230194.898348] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 +SUBSYSTEM=block +DEVNAME=/dev/sda3 +DEVTYPE=partition +SEQNUM=920 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d +ID_FS_UUID_ENC=b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d +ID_FS_VERSION=1.0 +ID_FS_TYPE=ext4 +ID_FS_USAGE=filesystem +FSTAB_NAME=/dev/sda3 +FSTAB_DIR=/media/sda3 +FSTAB_TYPE=auto +FSTAB_OPTS=noauto,noexec +FSTAB_FREQ=0 +FSTAB_PASSNO=0 +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=3 +UDISKS_PARTITION_TYPE=0x83 +UDISKS_PARTITION_SIZE=140002490880 +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=104000440320 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=3 +DEVLINKS=/dev/block/8:3 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part3 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part3 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part3 /dev/disk/by-uuid/b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d + +KERNEL[1294230194.902123] add /module/ipt_MASQUERADE (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ipt_MASQUERADE +SUBSYSTEM=module +SEQNUM=1279 + +UDEV [1294230194.902764] add /module/ipt_MASQUERADE (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ipt_MASQUERADE +SUBSYSTEM=module +SEQNUM=1279 + +UDEV [1294230194.972170] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 +SUBSYSTEM=block +DEVNAME=/dev/sda2 +DEVTYPE=partition +SEQNUM=919 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=1c8dda07-d0ae-4ced-b276-62d499df3b21 +ID_FS_UUID_ENC=1c8dda07-d0ae-4ced-b276-62d499df3b21 +ID_FS_VERSION=1.0 +ID_FS_TYPE=ext4 +ID_FS_USAGE=filesystem +FSTAB_NAME=/dev/sda2 +FSTAB_DIR=/media/sda2 +FSTAB_TYPE=auto +FSTAB_OPTS=noauto,noexec +FSTAB_FREQ=0 +FSTAB_PASSNO=0 +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=2 +UDISKS_PARTITION_TYPE=0x83 +UDISKS_PARTITION_SIZE=100002954240 +UDISKS_PARTITION_FLAGS=boot +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=3997486080 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=2 +DEVLINKS=/dev/block/8:2 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part2 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part2 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part2 /dev/disk/by-uuid/1c8dda07-d0ae-4ced-b276-62d499df3b21 + +UDEV [1294230195.028287] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 +SUBSYSTEM=block +DEVNAME=/dev/sda4 +DEVTYPE=partition +SEQNUM=921 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=51c1376a-926f-4687-879a-22bb137f843c +ID_FS_UUID_ENC=51c1376a-926f-4687-879a-22bb137f843c +ID_FS_VERSION=1.0 +ID_FS_TYPE=ext2 +ID_FS_USAGE=filesystem +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=4 +UDISKS_PARTITION_TYPE=0x44 +UDISKS_PARTITION_SIZE=5996229120 +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=244002931200 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=4 +DEVLINKS=/dev/block/8:4 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part4 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part4 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part4 /dev/disk/by-uuid/51c1376a-926f-4687-879a-22bb137f843c + +UDEV [1294230195.074068] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 +SUBSYSTEM=block +DEVNAME=/dev/sda1 +DEVTYPE=partition +SEQNUM=918 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=a1baed6c-2b7d-452b-b894-1d1b8edf321a +ID_FS_UUID_ENC=a1baed6c-2b7d-452b-b894-1d1b8edf321a +ID_FS_VERSION=2 +ID_FS_TYPE=swap +ID_FS_USAGE=other +FSTAB_NAME=/dev/sda1 +FSTAB_DIR=swap +FSTAB_TYPE=swap +FSTAB_OPTS=defaults +FSTAB_FREQ=0 +FSTAB_PASSNO=0 +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=1 +UDISKS_PARTITION_TYPE=0x82 +UDISKS_PARTITION_SIZE=3997453824 +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=32256 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=1 +DEVLINKS=/dev/block/8:1 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part1 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part1 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part1 /dev/disk/by-uuid/a1baed6c-2b7d-452b-b894-1d1b8edf321a + +UDEV [1294230195.240447] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 +SUBSYSTEM=block +DEVNAME=/dev/sr0 +DEVTYPE=disk +SEQNUM=932 +ID_CDROM=1 +ID_CDROM_CD_R=1 +ID_CDROM_CD_RW=1 +ID_CDROM_DVD=1 +ID_CDROM_DVD_R=1 +ID_CDROM_DVD_RW=1 +ID_CDROM_DVD_RAM=1 +ID_CDROM_DVD_PLUS_R=1 +ID_CDROM_DVD_PLUS_RW=1 +ID_CDROM_DVD_PLUS_R_DL=1 +ID_CDROM_MRW=1 +ID_CDROM_MRW_W=1 +ID_SCSI=1 +ID_VENDOR=HL-DT-ST +ID_VENDOR_ENC=HL-DT-ST +ID_MODEL=DVD-RAM_GSA-H60L +ID_MODEL_ENC=DVD-RAM\x20GSA-H60L +ID_REVISION=R90C +ID_TYPE=cd +ID_BUS=scsi +ID_PATH=pci-0000:00:12.0-scsi-1:0:0:0 +ACL_MANAGE=1 +UDISKS_PRESENTATION_NOPOLICY=0 +MAJOR=11 +MINOR=0 +DEVLINKS=/dev/block/11:0 /dev/scd0 /dev/disk/by-path/pci-0000:00:12.0-scsi-1:0:0:0 /dev/cdrom /dev/cdrw /dev/dvd /dev/dvdrw + +KERNEL[1294230197.361633] remove /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1280 + +UDEV [1294230197.362085] remove /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1280 + +KERNEL[1294230197.378024] remove /module/floppy (module) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1281 + +UDEV [1294230197.378043] remove /module/floppy (module) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1281 + +UDEV [1294230197.378558] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0700: +SEQNUM=868 + diff --git a/resources/config/1/uniontmp/var/log/ufw.log b/resources/config/1/uniontmp/var/log/ufw.log new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/log/user.log b/resources/config/1/uniontmp/var/log/user.log new file mode 100755 index 0000000..0da47ed --- /dev/null +++ b/resources/config/1/uniontmp/var/log/user.log @@ -0,0 +1,3 @@ +Jan 5 13:28:54 lsfks20 pulseaudio[3791]: pid.c: Daemon already running. +Jan 5 13:35:46 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) +Jan 5 13:35:59 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) diff --git a/resources/config/1/uniontmp/var/log/wtmp b/resources/config/1/uniontmp/var/log/wtmp new file mode 100755 index 0000000..a1666e3 Binary files /dev/null and b/resources/config/1/uniontmp/var/log/wtmp differ diff --git a/resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer b/resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer new file mode 100755 index 0000000..c9b57a6 --- /dev/null +++ b/resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer @@ -0,0 +1,8 @@ +#!/bin/sh +# written by OpenSLX-plugin 'vmware' in Stage1 +# radically simplified version of the original script vmplayer by VMware Inc. +PREFIX=/usr/lib/vmware # depends on the vmware location +exec "$PREFIX"'/lib/wrapper-gtk24.sh' \ + "$PREFIX"'/lib' \ + "$PREFIX"'/bin/vmplayer' \ + "$PREFIX"'/libconf' "$@" diff --git a/resources/config/1/uniontmp/var/opt/openslx/bin/vmware b/resources/config/1/uniontmp/var/opt/openslx/bin/vmware new file mode 100755 index 0000000..8b568f5 --- /dev/null +++ b/resources/config/1/uniontmp/var/opt/openslx/bin/vmware @@ -0,0 +1,8 @@ +#!/bin/sh +# written by OpenSLX-plugin 'vmware' in Stage1 +# radically simplified version of the original script vmware by VMware Inc. +PREFIX=/usr/lib/vmware # depends on the vmware location +exec "$PREFIX"'/lib/wrapper-gtk24.sh' \ + "$PREFIX"'/lib' \ + "$PREFIX"'/bin/vmware' \ + "$PREFIX"'/libconf' "$@" diff --git a/resources/config/1/uniontmp/var/run/utmp b/resources/config/1/uniontmp/var/run/utmp new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet1.leases b/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet1.leases new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet8.leases b/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet8.leases new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/uniontmp/var/tmp/host_0 b/resources/config/1/uniontmp/var/tmp/host_0 new file mode 100755 index 0000000..5743e64 Binary files /dev/null and b/resources/config/1/uniontmp/var/tmp/host_0 differ diff --git a/resources/config/1/uniontmp/whitelist.sh b/resources/config/1/uniontmp/whitelist.sh new file mode 100755 index 0000000..d75410e --- /dev/null +++ b/resources/config/1/uniontmp/whitelist.sh @@ -0,0 +1,306 @@ +#!/bin/sh +chmod 644 blacklist.txt +chmod 755 etc +chmod 755 etc/rc0.d +chmod 755 etc/rc6.d +chmod 755 etc/rc3.d +chmod 777 etc/rc3.d/K002nscd +chmod 777 etc/rc3.d/K02vmware-env +chmod 777 etc/rc3.d/S20vbox-slx +chmod 777 etc/rc3.d/S20vmware-env +chmod 777 etc/rc3.d/S20nscd +chmod 777 etc/rc3.d/K02vbox-slx +chmod 644 etc/logfile +chmod 644 etc/profile +chmod 755 etc/udev +chmod 755 etc/udev/rules.d +chmod 644 etc/udev/rules.d/70-persistent-cd.rules +chmod 644 etc/udev/rules.d/70-persistent-net.rules +chmod 644 etc/udev/rules.d/90-vboxusb.rules +chmod 755 etc/opt +chmod 755 etc/opt/openslx +chmod 755 etc/opt/openslx/plugins +chmod 755 etc/opt/openslx/plugins/virtualbox +chmod 644 etc/opt/openslx/plugins/virtualbox/virtualbox.include +chmod 644 etc/opt/openslx/plugins/virtualbox/run-virt.include +chmod 644 etc/opt/openslx/plugins/virtualbox/virtualbox.conf +chmod 644 etc/opt/openslx/plugins/virtualbox/machine.include +chmod 755 etc/opt/openslx/plugins/sysrqshutdown +chmod 644 etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf +chmod 755 etc/opt/openslx/plugins/vmchooser +chmod 644 etc/opt/openslx/plugins/vmchooser/vmchooser.conf +chmod 755 etc/opt/openslx/plugins/vmchooser/loopimg +chmod 1777 etc/opt/openslx/plugins/vmchooser/fd-loop +chmod 755 etc/opt/openslx/plugins/vmware +chmod 644 etc/opt/openslx/plugins/vmware/run-virt.include +chmod 644 etc/opt/openslx/plugins/vmware/vmware.conf +chmod 755 etc/opt/openslx/plugins/virtualization +chmod 644 etc/opt/openslx/plugins/virtualization/virtualization.conf +chmod 644 etc/opt/openslx/udhcpd.conf +chmod 755 etc/alternatives +chmod 777 etc/alternatives/x-session-manager.1.gz +chmod 777 etc/alternatives/x-session-manager +chmod 777 etc/alternatives/x-window-manager +chmod 755 etc/rc4.d +chmod 644 etc/fstab +chmod 777 etc/ldap.conf +chmod 755 etc/rc1.d +chmod 755 etc/pam.d +chmod 644 etc/pam.d/common-account +chmod 644 etc/pam.d/common-auth +chmod 644 etc/pam.d/common-session +chmod 755 etc/kde4 +chmod 755 etc/kde4/kdm +chmod 644 etc/kde4/kdm/kdmrc +chmod 755 etc/kde4/kdm/Xreset +chmod 755 etc/kde4/kdm/Xreset.system +chmod 755 etc/dbus-1 +chmod 755 etc/dbus-1/system.d +chmod 644 etc/dbus-1/system.d/hal.conf +chmod 755 etc/rc5.d +chmod 600 etc/krb5.keytab +chmod 644 etc/auto.misc +chmod 755 etc/default +chmod 644 etc/default/nfs-common +chmod 644 etc/default/locale +chmod 644 etc/default/autofs +chmod 755 etc/init.d +chmod 777 etc/init.d/vmware-env +chmod 777 etc/init.d/vbox-slx +chmod 744 etc/init.d/boot.slx +chmod 755 etc/security +chmod 644 etc/security/group.conf +chmod 755 etc/X11 +chmod 755 etc/X11/xorg.conf.d +chmod 644 etc/X11/default-display-manager +chmod 777 etc/X11/X +chmod 644 etc/X11/xorg.conf +chmod 644 etc/machine-setup +chmod 644 etc/krb5.conf +chmod 640 etc/shadow +chmod 644 etc/idmapd.conf +chmod 755 etc/modprobe.d +chmod 644 etc/modprobe.d/aliases.conf +chmod 644 etc/modprobe.d/blacklist-pcspkr.conf +chmod 755 etc/vmware +chmod 644 etc/vmware/vmnet-natd-8.mac +chmod 644 etc/vmware/config +chmod 644 etc/vmware/nat.conf +chmod 755 etc/vmware/udhcpd +chmod 644 etc/vmware/udhcpd/udhcpd-vmnet1.conf +chmod 644 etc/vmware/udhcpd/udhcpd-vmnet8.conf +chmod 755 etc/ldap +chmod 644 etc/ldap/ldap.conf +chmod 644 etc/nsswitch.conf +chmod 644 etc/mtab +chmod 644 etc/auto.master +chmod 644 etc/issue +chmod 644 etc/hosts +chmod 755 etc/init.inactive +chmod 644 etc/init.inactive/ufw.conf +chmod 644 etc/init.inactive/mountall-shell.conf +chmod 644 etc/init.inactive/network-manager.conf +chmod 644 etc/init.inactive/anacron.conf +chmod 644 etc/init.inactive/mountall-net.conf +chmod 644 etc/init.inactive/avahi-daemon.conf +chmod 644 etc/init.inactive/network-interface-security.conf +chmod 644 etc/init.inactive/ureadahead.conf +chmod 644 etc/init.inactive/network-interface.conf +chmod 644 etc/init.inactive/cryptdisks-udev.conf +chmod 644 etc/init.inactive/atd.conf +chmod 644 etc/init.inactive/apport.conf +chmod 644 etc/init.inactive/bridge-network-interface.conf +chmod 644 etc/init.inactive/plymouth-log.conf +chmod 644 etc/init.inactive/gdm.conf +chmod 644 etc/init.inactive/qemu-kvm.conf +chmod 644 etc/init.inactive/cryptdisks-enable.conf +chmod 644 etc/init.inactive/cron.conf +chmod 644 etc/init.inactive/screen-cleanup.conf +chmod 644 etc/init.inactive/README +chmod 644 etc/init.inactive/plymouth-stop.conf +chmod 644 etc/init.inactive/mountall-reboot.conf +chmod 644 etc/init.inactive/plymouth-splash.conf +chmod 644 etc/init.inactive/ureadahead-other.conf +chmod 644 etc/init.inactive/hostname.conf +chmod 644 etc/init.inactive/plymouth.conf +chmod 644 etc/init.inactive/failsafe-x.conf +chmod 755 etc/rcS.d +chmod 755 etc/init +chmod 644 etc/init/hwclock.conf +chmod 644 etc/init/dmesg.conf +chmod 644 etc/init/rcS.conf +chmod 644 etc/init/udevmonitor.conf +chmod 644 etc/init/upstart-udev-bridge.conf +chmod 644 etc/init/udev-finish.conf +chmod 644 etc/init/rsyslog.conf +chmod 644 etc/init/tty5.conf +chmod 644 etc/init/rpc_pipefs.conf +chmod 644 etc/init/tty6.conf +chmod 644 etc/init/tty1.conf +chmod 644 etc/init/mounted-dev.conf +chmod 644 etc/init/tty4.conf +chmod 644 etc/init/procps.conf +chmod 644 etc/init/gssd.conf +chmod 644 etc/init/tty2.conf +chmod 644 etc/init/hwclock-save.conf +chmod 644 etc/init/module-init-tools.conf +chmod 644 etc/init/networking.conf +chmod 644 etc/init/udev.conf +chmod 644 etc/init/udevtrigger.conf +chmod 644 etc/init/console-setup.conf +chmod 644 etc/init/rc-sysinit.conf +chmod 644 etc/init/rc.conf +chmod 644 etc/init/ssh.conf +chmod 644 etc/init/irqbalance.conf +chmod 644 etc/init/alsa-mixer-save.conf +chmod 644 etc/init/idmapd.conf +chmod 644 etc/init/acpid.conf +chmod 644 etc/init/mounted-tmp.conf +chmod 644 etc/init/mounted-varrun.conf +chmod 644 etc/init/control-alt-delete.conf +chmod 644 etc/init/mountall.conf +chmod 644 etc/init/portmap.conf +chmod 644 etc/init/tty3.conf +chmod 644 etc/init/dbus.conf +chmod 644 etc/init/statd.conf +chmod 644 etc/init/autofs.conf +chmod 644 etc/init/kdm.conf +chmod 777 etc/localtime +chmod 755 etc/rc2.d +chmod 777 etc/rc2.d/K002nscd +chmod 777 etc/rc2.d/K02vmware-env +chmod 777 etc/rc2.d/S20vbox-slx +chmod 777 etc/rc2.d/S20vmware-env +chmod 777 etc/rc2.d/S20nscd +chmod 777 etc/rc2.d/K02vbox-slx +chmod 644 etc/passwd +chmod 644 etc/resolv.conf +chmod 755 lib +chmod 755 lib/init +chmod 755 lib/init/rw +chmod 755 media +chmod 755 media/sda2 +chmod 755 media/sda3 +chmod 555 misc +chmod 755 root +chmod 700 root/.kde +chmod 777 root/.kde/tmp-lsfks20 +chmod 777 root/.kde/cache-lsfks20 +chmod 755 root/.ssh +chmod 644 root/.ssh/authorized_keys +chmod 1777 tmp +chmod 700 tmp/orbit-mp57 +chmod 700 tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock +chmod 644 tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior +chmod 700 tmp/vmware-root +chmod 644 tmp/vmware-root/usbarb-3200.log +chmod 600 tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE +chmod 700 tmp/kde-root +chmod 600 tmp/krb5cc_14620_43Qjbp +chmod 644 tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile +chmod 700 tmp/pulse-b9qYDvw8bJls +chmod 600 tmp/pulse-b9qYDvw8bJls/pid +chmod 1777 tmp/.ICE-unix +chmod 700 tmp/.esd-14620 +chmod 700 tmp/plugtmp +chmod 600 tmp/plugtmp/plugin-all_V25_spec_160_600.xml +chmod 644 tmp/whitelist +chmod 700 tmp/ssh-vKkIiL3434 +chmod 1777 tmp/.X11-unix +chmod 700 tmp/keyring-tEWVbP +chmod 700 tmp/virtual-mp57.s0ExfM +chmod 444 tmp/.X0-lock +chmod 755 uniontmp +chmod 755 uniontmp/uniontmp +chmod 755 usr +chmod 755 usr/share +chmod 755 usr/share/xsessions +chmod 755 usr/share/man +chmod 755 usr/share/man/man1 +chmod 777 usr/share/man/man1/x-session-manager.1.gz +chmod 755 usr/bin +chmod 777 usr/bin/x-session-manager +chmod 777 usr/bin/x-window-manager +chmod 755 var +chmod 755 var/opt +chmod 755 var/opt/openslx +chmod 755 var/opt/openslx/bin +chmod 755 var/opt/openslx/bin/vmplayer +chmod 777 var/opt/openslx/bin/vmchooser +chmod 755 var/opt/openslx/bin/vmware +chmod 777 var/opt/openslx/bin/run-virt.sh +chmod 755 var/cache +chmod 755 var/cache/nscd +chmod 600 var/cache/nscd/services +chmod 600 var/cache/nscd/group +chmod 600 var/cache/nscd/passwd +chmod 755 var/cache/apt +chmod 755 var/cache/apt/archives +chmod 755 var/cache/apt/archives/partial +chmod 755 var/spool +chmod 755 var/spool/cron +chmod 1777 var/tmp +chmod 700 var/tmp/kdecache-root +chmod 600 var/tmp/host_0 +chmod 755 var/log +chmod 640 var/log/daemon.log +chmod 640 var/log/mail.log +chmod 640 var/log/mail.warn +chmod 640 var/log/mail.info +chmod 644 var/log/dmesg.0 +chmod 644 var/log/udev +chmod 640 var/log/user.log +chmod 644 var/log/lastlog +chmod 755 var/log/ConsoleKit +chmod 644 var/log/ConsoleKit/history +chmod 640 var/log/kern.log +chmod 640 var/log/debug +chmod 640 var/log/syslog +chmod 640 var/log/messages +chmod 755 var/log/news +chmod 640 var/log/news/news.err +chmod 640 var/log/news/news.crit +chmod 640 var/log/news/news.notice +chmod 644 var/log/kdm.log +chmod 640 var/log/mail.err +chmod 644 var/log/dmesg +chmod 644 var/log/Xorg.0.log +chmod 640 var/log/ufw.log +chmod 644 var/log/wtmp +chmod 640 var/log/lpr.log +chmod 1777 var/log/openslx +chmod 644 var/log/pm-powersave.log +chmod 640 var/log/auth.log +chmod 755 var/run +chmod 755 var/run/rsyslog +chmod 755 var/run/kdm +chmod 755 var/run/xauth +chmod 644 var/run/utmp +chmod 1777 var/run/vmware +chmod 644 var/run/vmware/udhcpd-vmnet8.leases +chmod 644 var/run/vmware/udhcpd-vmnet1.leases +chmod 777 var/run/screen +chmod 755 var/run/sysconfig +chmod 755 var/run/sysconfig/tmp +chmod 755 var/run/sshd +chmod 755 var/X11R6 +chmod 755 var/X11R6/lib +chmod 755 var/lib +chmod 755 var/lib/bluetooth +chmod 755 var/lib/acpi_support +chmod 755 var/lib/dpkg +chmod 755 var/lib/dpkg/alternatives +chmod 644 var/lib/dpkg/alternatives/x-session-manager +chmod 644 var/lib/dpkg/alternatives/x-window-manager +chmod 755 var/lib/xkb +chmod 644 var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm +chmod 644 var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm +chmod 755 var/lib/virt +chmod 755 var/lib/virt/vmware +chmod 755 var/lib/nobody +chmod 755 var/lib/openslx +chmod 755 var/lib/openslx/bin +chmod 755 var/lib/openslx/bin/automount-home.pl +chmod 755 var/lib/openslx/bin/krb5_mount_mode.pl +chmod 755 var/lib/openslx/bin/sslconnect +chmod 644 whitelist.sh diff --git a/tests/application/controllers/RessourceControllerTest.php b/tests/application/controllers/RessourceControllerTest.php new file mode 100644 index 0000000..593a2c6 --- /dev/null +++ b/tests/application/controllers/RessourceControllerTest.php @@ -0,0 +1,20 @@ +view->configmapper = $configmapper; $bootmenuID = $this->_request->getParam('bootmenuid'); + $preboot = $this->_request->getParam('preboot'); - if($bootmenuID == "") - { - $this->view->bootmenulist = $bootmenumapper->fetchAll(); - $bootmenuentries = array(); - foreach ($this->view->bootmenulist as $bootmenu){ - $bootmenuentries[$bootmenu->getID()] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenu->getID()); - $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); - $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); - } - }else{ - $bootmenu = new Application_Model_BootMenu(); - $bootmenumapper->find($bootmenuID, $bootmenu); - - $bootmenuentries = array(); - $bootmenuentries[$bootmenuID] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID); - $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); - $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + if($preboot=="") + { + if($bootmenuID == "") + { + $this->view->bootmenulist = $bootmenumapper->fetchAll(); + $bootmenuentries = array(); + foreach ($this->view->bootmenulist as $bootmenu){ + $bootmenuentries[$bootmenu->getID()] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenu->getID()); + $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); + $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + } + }else{ + $bootmenu = new Application_Model_BootMenu(); + $bootmenumapper->find($bootmenuID, $bootmenu); + + $bootmenuentries = array(); + $bootmenuentries[$bootmenuID] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID); + $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); + $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + + $this->view->bootmenulist = array($bootmenu); + + } + + $this->view->bootmenuentrylist = $bootmenuentries; + + }else{ + $this->_helper->layout->disableLayout(); + $this->_helper->viewRenderer->setNoRender(); + + if($bootmenuID == "") + { + $this->view->bootmenulist = $bootmenumapper->fetchAll(); + $bootmenuentries = array(); + foreach ($this->view->bootmenulist as $bootmenu){ + $bootmenuentries[$bootmenu->getID()] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenu->getID()); + $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); + $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + } + }else{ + $bootmenu = new Application_Model_BootMenu(); + $bootmenumapper->find($bootmenuID, $bootmenu); + + $bootmenuentries = array(); + $bootmenuentries[$bootmenuID] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID); + $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); + $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); + + $this->view->bootmenulist = array($bootmenu); - $this->view->bootmenulist = array($bootmenu); - - } + } + + $this->view->bootmenuentrylist = $bootmenuentries; + - - $this->view->bootmenuentrylist = $bootmenuentries; - + echo json_encode( + array( + 'bootosmapper' => $this->view->bootosmapper, + 'configmapper' => $this->view->configmapper, + 'bootmenulist' => $this->view->bootmenulist, + 'bootmenuentrylist' => $this->view->bootmenuentrylist + ) + ); + } } public function addbootmenuentryAction() -- cgit v1.2.3-55-g7522 From 0992e4ad515617e8fc5f1aaf87bc71c56247b494 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 10 Mar 2011 16:16:40 +0100 Subject: layout angepasst --- application/layouts/main.phtml | 1 - 1 file changed, 1 deletion(-) (limited to 'application') diff --git a/application/layouts/main.phtml b/application/layouts/main.phtml index ca09e42..57d09c7 100644 --- a/application/layouts/main.phtml +++ b/application/layouts/main.phtml @@ -25,7 +25,6 @@ echo $this->headScript()."\n";
  • BootMenu
  • Config
  • BootOs
  • -
  • Resource
  • Client
  • Filter
  • Pool
  • -- cgit v1.2.3-55-g7522 From 6af55d49f3984d086872860832d0d296a2591647 Mon Sep 17 00:00:00 2001 From: michael pereira Date: Thu, 10 Mar 2011 16:40:22 +0100 Subject: Bootmenu auf preboot JSON --- application/controllers/BootmenuController.php | 32 ++++++++++++-------------- application/models/BootMenuEntriesMapper.php | 18 +++++++++++++++ 2 files changed, 33 insertions(+), 17 deletions(-) (limited to 'application') diff --git a/application/controllers/BootmenuController.php b/application/controllers/BootmenuController.php index 8cda756..9a212d6 100644 --- a/application/controllers/BootmenuController.php +++ b/application/controllers/BootmenuController.php @@ -66,27 +66,25 @@ class BootmenuController extends Zend_Controller_Action }else{ $bootmenu = new Application_Model_BootMenu(); $bootmenumapper->find($bootmenuID, $bootmenu); + + $cc['title'] = $bootmenu->getTitle(); $bootmenuentries = array(); - $bootmenuentries[$bootmenuID] = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID); - $bootmenu->setGroupID("[".$bootmenu->getGroupID()."] ".$groupmapper->find($bootmenu->getGroupID())->getTitle()); - $bootmenu->setMembershipID("[".$bootmenu->getMembershipID()."] ".$personmapper->find($membershipmapper->find($bootmenu->getMembershipID())->getPersonID())->getFirstname()); - - $this->view->bootmenulist = array($bootmenu); - + $bootmenuentries = $bootmenuentriesmapper->findBy('bootmenuID',$bootmenuID); + + foreach($bootmenuentries as $bootmenuentry){ + $ar = array(); + $ar['title'] = $bootmenu->getTitle(); + $ar['id'] = $bootmenu->getID(); + $cc['data'][] = $ar; + } + + echo json_encode($cc); + + // print_a($cc); + } - $this->view->bootmenuentrylist = $bootmenuentries; - - - echo json_encode( - array( - 'bootosmapper' => $this->view->bootosmapper, - 'configmapper' => $this->view->configmapper, - 'bootmenulist' => $this->view->bootmenulist, - 'bootmenuentrylist' => $this->view->bootmenuentrylist - ) - ); } } diff --git a/application/models/BootMenuEntriesMapper.php b/application/models/BootMenuEntriesMapper.php index 7a2da59..a0a5309 100644 --- a/application/models/BootMenuEntriesMapper.php +++ b/application/models/BootMenuEntriesMapper.php @@ -30,6 +30,24 @@ class Application_Model_BootMenuEntriesMapper echo "Error message 2: " . $e->getMessage() . "\n"; } } + + public function findByArray($criteria, $value) + { + try{ + $db = Zend_Db_Table::getDefaultAdapter(); + $select = $this->getDbTable()->select() + ->from($this->_dbTable) + ->where($criteria . ' = ?', $value) + ->order('order'); + $stmt = $select->query(); + $result = $stmt->fetchAll(); + + return $result; + + }catch (Zend_Exception $e) { + echo "Error message 2: " . $e->getMessage() . "\n"; + } + } public function setDbTable($dbTable) { -- cgit v1.2.3-55-g7522 From fa86fafd4bb81d921f418f100b5097c63ffce490 Mon Sep 17 00:00:00 2001 From: michael pereira Date: Thu, 10 Mar 2011 16:51:45 +0100 Subject: Bootmenu auf preboot JSON --- application/controllers/BootmenuController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'application') diff --git a/application/controllers/BootmenuController.php b/application/controllers/BootmenuController.php index 9a212d6..abb046e 100644 --- a/application/controllers/BootmenuController.php +++ b/application/controllers/BootmenuController.php @@ -74,14 +74,14 @@ class BootmenuController extends Zend_Controller_Action foreach($bootmenuentries as $bootmenuentry){ $ar = array(); - $ar['title'] = $bootmenu->getTitle(); - $ar['id'] = $bootmenu->getID(); + $ar['title'] = $bootmenuentry->getTitle(); + $ar['id'] = $bootmenuentry->getID(); $cc['data'][] = $ar; } echo json_encode($cc); - // print_a($cc); + print_a($cc); } -- cgit v1.2.3-55-g7522 From d34e6d303cb5c5d9b16de1c7076be38ef1feb6e8 Mon Sep 17 00:00:00 2001 From: michael pereira Date: Thu, 10 Mar 2011 16:52:36 +0100 Subject: Bootmenu auf preboot JSON --- application/controllers/BootmenuController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'application') diff --git a/application/controllers/BootmenuController.php b/application/controllers/BootmenuController.php index abb046e..641b547 100644 --- a/application/controllers/BootmenuController.php +++ b/application/controllers/BootmenuController.php @@ -81,7 +81,7 @@ class BootmenuController extends Zend_Controller_Action echo json_encode($cc); - print_a($cc); + //print_a($cc); } -- cgit v1.2.3-55-g7522 From d8f220602135e144ef9cde05676d5bf09226cb4b Mon Sep 17 00:00:00 2001 From: michael pereira Date: Thu, 10 Mar 2011 17:06:50 +0100 Subject: Resources für Preboot --- application/controllers/ResourceController.php | 12 +- resources/bootos/1/initramfs/initramfs | Bin 0 -> 6973927 bytes resources/bootos/1/kernel/kernel | Bin 0 -> 4167200 bytes resources/config/1/config/blacklist.txt | 265 + .../1/config/etc/X11/default-display-manager | 1 + resources/config/1/config/etc/X11/xorg.conf | 66 + resources/config/1/config/etc/auto.master | 3 + resources/config/1/config/etc/auto.misc | 3 + .../config/1/config/etc/dbus-1/system.d/hal.conf | 125 + resources/config/1/config/etc/default/autofs | 128 + resources/config/1/config/etc/default/locale | 2 + resources/config/1/config/etc/default/nfs-common | 19 + resources/config/1/config/etc/fstab | 8 + resources/config/1/config/etc/hosts | 13 + resources/config/1/config/etc/idmapd.conf | 11 + resources/config/1/config/etc/init.d/boot.slx | 19 + resources/config/1/config/etc/init.d/vbox-slx | 89 + resources/config/1/config/etc/init.d/vmware-env | 125 + resources/config/1/config/etc/init.inactive/README | 2 + .../config/1/config/etc/init.inactive/anacron.conf | 14 + .../config/1/config/etc/init.inactive/apport.conf | 50 + .../config/1/config/etc/init.inactive/atd.conf | 14 + .../1/config/etc/init.inactive/avahi-daemon.conf | 25 + .../init.inactive/bridge-network-interface.conf | 30 + .../config/1/config/etc/init.inactive/cron.conf | 14 + .../etc/init.inactive/cryptdisks-enable.conf | 35 + .../config/etc/init.inactive/cryptdisks-udev.conf | 23 + .../1/config/etc/init.inactive/failsafe-x.conf | 13 + .../config/1/config/etc/init.inactive/gdm.conf | 36 + .../1/config/etc/init.inactive/hostname.conf | 12 + .../1/config/etc/init.inactive/mountall-net.conf | 15 + .../config/etc/init.inactive/mountall-reboot.conf | 11 + .../1/config/etc/init.inactive/mountall-shell.conf | 49 + .../init.inactive/network-interface-security.conf | 26 + .../etc/init.inactive/network-interface.conf | 25 + .../config/etc/init.inactive/network-manager.conf | 15 + .../1/config/etc/init.inactive/plymouth-log.conf | 13 + .../config/etc/init.inactive/plymouth-splash.conf | 20 + .../1/config/etc/init.inactive/plymouth-stop.conf | 28 + .../1/config/etc/init.inactive/plymouth.conf | 34 + .../1/config/etc/init.inactive/qemu-kvm.conf | 36 + .../1/config/etc/init.inactive/screen-cleanup.conf | 29 + .../config/1/config/etc/init.inactive/ufw.conf | 18 + .../config/etc/init.inactive/ureadahead-other.conf | 19 + .../1/config/etc/init.inactive/ureadahead.conf | 28 + resources/config/1/config/etc/init/acpid.conf | 14 + .../config/1/config/etc/init/alsa-mixer-save.conf | 14 + resources/config/1/config/etc/init/autofs.conf | 76 + .../config/1/config/etc/init/console-setup.conf | 16 + .../1/config/etc/init/control-alt-delete.conf | 12 + resources/config/1/config/etc/init/dbus.conf | 23 + resources/config/1/config/etc/init/dmesg.conf | 14 + resources/config/1/config/etc/init/gssd.conf | 70 + .../config/1/config/etc/init/hwclock-save.conf | 17 + resources/config/1/config/etc/init/hwclock.conf | 19 + resources/config/1/config/etc/init/idmapd.conf | 79 + resources/config/1/config/etc/init/irqbalance.conf | 23 + resources/config/1/config/etc/init/kdm.conf | 38 + .../1/config/etc/init/module-init-tools.conf | 18 + resources/config/1/config/etc/init/mountall.conf | 45 + .../config/1/config/etc/init/mounted-dev.conf | 21 + .../config/1/config/etc/init/mounted-tmp.conf | 47 + .../config/1/config/etc/init/mounted-varrun.conf | 20 + resources/config/1/config/etc/init/networking.conf | 15 + resources/config/1/config/etc/init/portmap.conf | 42 + resources/config/1/config/etc/init/procps.conf | 13 + resources/config/1/config/etc/init/rc-sysinit.conf | 60 + resources/config/1/config/etc/init/rc.conf | 20 + resources/config/1/config/etc/init/rcS.conf | 32 + resources/config/1/config/etc/init/rpc_pipefs.conf | 87 + resources/config/1/config/etc/init/rsyslog.conf | 14 + resources/config/1/config/etc/init/ssh.conf | 27 + resources/config/1/config/etc/init/statd.conf | 34 + resources/config/1/config/etc/init/tty1.conf | 10 + resources/config/1/config/etc/init/tty2.conf | 10 + resources/config/1/config/etc/init/tty3.conf | 10 + resources/config/1/config/etc/init/tty4.conf | 10 + resources/config/1/config/etc/init/tty5.conf | 10 + resources/config/1/config/etc/init/tty6.conf | 10 + .../config/1/config/etc/init/udev-finish.conf | 30 + resources/config/1/config/etc/init/udev.conf | 14 + .../config/1/config/etc/init/udevmonitor.conf | 13 + .../config/1/config/etc/init/udevtrigger.conf | 15 + .../1/config/etc/init/upstart-udev-bridge.conf | 14 + resources/config/1/config/etc/issue | 11 + resources/config/1/config/etc/kde4/kdm/Xreset | 10 + .../config/1/config/etc/kde4/kdm/Xreset.system | 10 + resources/config/1/config/etc/kde4/kdm/kdmrc | 35 + resources/config/1/config/etc/krb5.conf | 28 + resources/config/1/config/etc/krb5.keytab | Bin 0 -> 100 bytes resources/config/1/config/etc/ldap.conf | 6 + resources/config/1/config/etc/ldap/ldap.conf | 6 + resources/config/1/config/etc/localtime | Bin 0 -> 2309 bytes resources/config/1/config/etc/logfile | 7 + resources/config/1/config/etc/machine-setup | 69 + .../config/1/config/etc/modprobe.d/aliases.conf | 1 + .../1/config/etc/modprobe.d/blacklist-pcspkr.conf | 1 + resources/config/1/config/etc/mtab | 19 + resources/config/1/config/etc/nsswitch.conf | 22 + .../plugins/sysrqshutdown/sysrqshutdown.conf | 1 + .../opt/openslx/plugins/virtualbox/machine.include | 132 + .../openslx/plugins/virtualbox/run-virt.include | 375 + .../opt/openslx/plugins/virtualbox/virtualbox.conf | 6 + .../openslx/plugins/virtualbox/virtualbox.include | 47 + .../plugins/virtualization/virtualization.conf | 8 + .../opt/openslx/plugins/vmchooser/vmchooser.conf | 3 + .../opt/openslx/plugins/vmware/run-virt.include | 448 + .../etc/opt/openslx/plugins/vmware/vmware.conf | 8 + .../config/1/config/etc/opt/openslx/udhcpd.conf | 37 + resources/config/1/config/etc/pam.d/common-account | 5 + resources/config/1/config/etc/pam.d/common-auth | 15 + resources/config/1/config/etc/pam.d/common-session | 5 + resources/config/1/config/etc/passwd | 39 + resources/config/1/config/etc/profile | 30 + resources/config/1/config/etc/rc2.d/K02vbox-slx | 89 + resources/config/1/config/etc/rc2.d/K02vmware-env | 125 + resources/config/1/config/etc/rc2.d/S20vbox-slx | 89 + resources/config/1/config/etc/rc2.d/S20vmware-env | 125 + resources/config/1/config/etc/rc3.d/K02vbox-slx | 89 + resources/config/1/config/etc/rc3.d/K02vmware-env | 125 + resources/config/1/config/etc/rc3.d/S20vbox-slx | 89 + resources/config/1/config/etc/rc3.d/S20vmware-env | 125 + resources/config/1/config/etc/resolv.conf | 7 + resources/config/1/config/etc/security/group.conf | 105 + resources/config/1/config/etc/shadow | 39 + .../config/etc/udev/rules.d/70-persistent-cd.rules | 12 + .../etc/udev/rules.d/70-persistent-net.rules | 8 + .../1/config/etc/udev/rules.d/90-vboxusb.rules | 2 + resources/config/1/config/etc/vmware/config | 4 + resources/config/1/config/etc/vmware/nat.conf | 9 + .../1/config/etc/vmware/udhcpd/udhcpd-vmnet1.conf | 37 + .../1/config/etc/vmware/udhcpd/udhcpd-vmnet8.conf | 37 + .../config/1/config/etc/vmware/vmnet-natd-8.mac | 1 + .../config/1/config/root/.ssh/authorized_keys | 2 + resources/config/1/config/tmp/.X0-lock | 1 + resources/config/1/config/tmp/krb5cc_14620_43Qjbp | Bin 0 -> 2748 bytes .../tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE | Bin 0 -> 2583 bytes ...-register-7f78e485512b489eeed8a3f14d2462c6.lock | 0 ...ion-server-7f78e485512b489eeed8a3f14d2462c6-ior | 1 + .../tmp/plugtmp/plugin-all_V25_spec_160_600.xml | 85 + .../config/1/config/tmp/pulse-b9qYDvw8bJls/pid | 1 + .../tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile | 0 .../1/config/tmp/vmware-root/usbarb-3200.log | 30 + resources/config/1/config/tmp/whitelist | 0 resources/config/1/config/var/cache/nscd/group | Bin 0 -> 217016 bytes resources/config/1/config/var/cache/nscd/passwd | Bin 0 -> 217016 bytes resources/config/1/config/var/cache/nscd/services | Bin 0 -> 217016 bytes .../var/lib/dpkg/alternatives/x-session-manager | 24 + .../var/lib/dpkg/alternatives/x-window-manager | 18 + .../1/config/var/lib/openslx/bin/automount-home.pl | 39 + .../config/var/lib/openslx/bin/krb5_mount_mode.pl | 69 + .../config/1/config/var/lib/openslx/bin/sslconnect | 97 + ...er-02D8252E59564A234380F1E5417646A9DB3B7452.xkm | Bin 0 -> 10692 bytes ...er-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm | Bin 0 -> 9812 bytes .../config/1/config/var/log/ConsoleKit/history | 3 + resources/config/1/config/var/log/Xorg.0.log | 787 ++ resources/config/1/config/var/log/auth.log | 35 + resources/config/1/config/var/log/daemon.log | 45 + resources/config/1/config/var/log/debug | 159 + resources/config/1/config/var/log/dmesg | 673 ++ resources/config/1/config/var/log/dmesg.0 | 0 resources/config/1/config/var/log/kdm.log | 77 + resources/config/1/config/var/log/kern.log | 725 ++ resources/config/1/config/var/log/lastlog | 0 resources/config/1/config/var/log/lpr.log | 4 + resources/config/1/config/var/log/mail.err | 0 resources/config/1/config/var/log/mail.info | 0 resources/config/1/config/var/log/mail.log | 0 resources/config/1/config/var/log/mail.warn | 0 resources/config/1/config/var/log/messages | 574 ++ resources/config/1/config/var/log/news/news.crit | 0 resources/config/1/config/var/log/news/news.err | 0 resources/config/1/config/var/log/news/news.notice | 0 resources/config/1/config/var/log/pm-powersave.log | 7 + resources/config/1/config/var/log/syslog | 781 ++ resources/config/1/config/var/log/udev | 9121 ++++++++++++++++++++ resources/config/1/config/var/log/ufw.log | 0 resources/config/1/config/var/log/user.log | 3 + resources/config/1/config/var/log/wtmp | Bin 0 -> 3072 bytes .../config/1/config/var/opt/openslx/bin/vmplayer | 8 + .../config/1/config/var/opt/openslx/bin/vmware | 8 + resources/config/1/config/var/run/utmp | 0 .../1/config/var/run/vmware/udhcpd-vmnet1.leases | 0 .../1/config/var/run/vmware/udhcpd-vmnet8.leases | 0 resources/config/1/config/var/tmp/host_0 | Bin 0 -> 267 bytes resources/config/1/config/whitelist.sh | 306 + resources/config/1/uniontmp/blacklist.txt | 265 - .../1/uniontmp/etc/X11/default-display-manager | 1 - resources/config/1/uniontmp/etc/X11/xorg.conf | 66 - resources/config/1/uniontmp/etc/auto.master | 3 - resources/config/1/uniontmp/etc/auto.misc | 3 - .../config/1/uniontmp/etc/dbus-1/system.d/hal.conf | 125 - resources/config/1/uniontmp/etc/default/autofs | 128 - resources/config/1/uniontmp/etc/default/locale | 2 - resources/config/1/uniontmp/etc/default/nfs-common | 19 - resources/config/1/uniontmp/etc/fstab | 8 - resources/config/1/uniontmp/etc/hosts | 13 - resources/config/1/uniontmp/etc/idmapd.conf | 11 - resources/config/1/uniontmp/etc/init.d/boot.slx | 19 - resources/config/1/uniontmp/etc/init.d/vbox-slx | 89 - resources/config/1/uniontmp/etc/init.d/vmware-env | 125 - .../config/1/uniontmp/etc/init.inactive/README | 2 - .../1/uniontmp/etc/init.inactive/anacron.conf | 14 - .../1/uniontmp/etc/init.inactive/apport.conf | 50 - .../config/1/uniontmp/etc/init.inactive/atd.conf | 14 - .../1/uniontmp/etc/init.inactive/avahi-daemon.conf | 25 - .../init.inactive/bridge-network-interface.conf | 30 - .../config/1/uniontmp/etc/init.inactive/cron.conf | 14 - .../etc/init.inactive/cryptdisks-enable.conf | 35 - .../etc/init.inactive/cryptdisks-udev.conf | 23 - .../1/uniontmp/etc/init.inactive/failsafe-x.conf | 13 - .../config/1/uniontmp/etc/init.inactive/gdm.conf | 36 - .../1/uniontmp/etc/init.inactive/hostname.conf | 12 - .../1/uniontmp/etc/init.inactive/mountall-net.conf | 15 - .../etc/init.inactive/mountall-reboot.conf | 11 - .../uniontmp/etc/init.inactive/mountall-shell.conf | 49 - .../init.inactive/network-interface-security.conf | 26 - .../etc/init.inactive/network-interface.conf | 25 - .../etc/init.inactive/network-manager.conf | 15 - .../1/uniontmp/etc/init.inactive/plymouth-log.conf | 13 - .../etc/init.inactive/plymouth-splash.conf | 20 - .../uniontmp/etc/init.inactive/plymouth-stop.conf | 28 - .../1/uniontmp/etc/init.inactive/plymouth.conf | 34 - .../1/uniontmp/etc/init.inactive/qemu-kvm.conf | 36 - .../uniontmp/etc/init.inactive/screen-cleanup.conf | 29 - .../config/1/uniontmp/etc/init.inactive/ufw.conf | 18 - .../etc/init.inactive/ureadahead-other.conf | 19 - .../1/uniontmp/etc/init.inactive/ureadahead.conf | 28 - resources/config/1/uniontmp/etc/init/acpid.conf | 14 - .../1/uniontmp/etc/init/alsa-mixer-save.conf | 14 - resources/config/1/uniontmp/etc/init/autofs.conf | 76 - .../config/1/uniontmp/etc/init/console-setup.conf | 16 - .../1/uniontmp/etc/init/control-alt-delete.conf | 12 - resources/config/1/uniontmp/etc/init/dbus.conf | 23 - resources/config/1/uniontmp/etc/init/dmesg.conf | 14 - resources/config/1/uniontmp/etc/init/gssd.conf | 70 - .../config/1/uniontmp/etc/init/hwclock-save.conf | 17 - resources/config/1/uniontmp/etc/init/hwclock.conf | 19 - resources/config/1/uniontmp/etc/init/idmapd.conf | 79 - .../config/1/uniontmp/etc/init/irqbalance.conf | 23 - resources/config/1/uniontmp/etc/init/kdm.conf | 38 - .../1/uniontmp/etc/init/module-init-tools.conf | 18 - resources/config/1/uniontmp/etc/init/mountall.conf | 45 - .../config/1/uniontmp/etc/init/mounted-dev.conf | 21 - .../config/1/uniontmp/etc/init/mounted-tmp.conf | 47 - .../config/1/uniontmp/etc/init/mounted-varrun.conf | 20 - .../config/1/uniontmp/etc/init/networking.conf | 15 - resources/config/1/uniontmp/etc/init/portmap.conf | 42 - resources/config/1/uniontmp/etc/init/procps.conf | 13 - .../config/1/uniontmp/etc/init/rc-sysinit.conf | 60 - resources/config/1/uniontmp/etc/init/rc.conf | 20 - resources/config/1/uniontmp/etc/init/rcS.conf | 32 - .../config/1/uniontmp/etc/init/rpc_pipefs.conf | 87 - resources/config/1/uniontmp/etc/init/rsyslog.conf | 14 - resources/config/1/uniontmp/etc/init/ssh.conf | 27 - resources/config/1/uniontmp/etc/init/statd.conf | 34 - resources/config/1/uniontmp/etc/init/tty1.conf | 10 - resources/config/1/uniontmp/etc/init/tty2.conf | 10 - resources/config/1/uniontmp/etc/init/tty3.conf | 10 - resources/config/1/uniontmp/etc/init/tty4.conf | 10 - resources/config/1/uniontmp/etc/init/tty5.conf | 10 - resources/config/1/uniontmp/etc/init/tty6.conf | 10 - .../config/1/uniontmp/etc/init/udev-finish.conf | 30 - resources/config/1/uniontmp/etc/init/udev.conf | 14 - .../config/1/uniontmp/etc/init/udevmonitor.conf | 13 - .../config/1/uniontmp/etc/init/udevtrigger.conf | 15 - .../1/uniontmp/etc/init/upstart-udev-bridge.conf | 14 - resources/config/1/uniontmp/etc/issue | 11 - resources/config/1/uniontmp/etc/kde4/kdm/Xreset | 10 - .../config/1/uniontmp/etc/kde4/kdm/Xreset.system | 10 - resources/config/1/uniontmp/etc/kde4/kdm/kdmrc | 35 - resources/config/1/uniontmp/etc/krb5.conf | 28 - resources/config/1/uniontmp/etc/krb5.keytab | Bin 100 -> 0 bytes resources/config/1/uniontmp/etc/ldap.conf | 6 - resources/config/1/uniontmp/etc/ldap/ldap.conf | 6 - resources/config/1/uniontmp/etc/localtime | Bin 2309 -> 0 bytes resources/config/1/uniontmp/etc/logfile | 7 - resources/config/1/uniontmp/etc/machine-setup | 69 - .../config/1/uniontmp/etc/modprobe.d/aliases.conf | 1 - .../uniontmp/etc/modprobe.d/blacklist-pcspkr.conf | 1 - resources/config/1/uniontmp/etc/mtab | 19 - resources/config/1/uniontmp/etc/nsswitch.conf | 22 - .../plugins/sysrqshutdown/sysrqshutdown.conf | 1 - .../opt/openslx/plugins/virtualbox/machine.include | 132 - .../openslx/plugins/virtualbox/run-virt.include | 375 - .../opt/openslx/plugins/virtualbox/virtualbox.conf | 6 - .../openslx/plugins/virtualbox/virtualbox.include | 47 - .../plugins/virtualization/virtualization.conf | 8 - .../opt/openslx/plugins/vmchooser/vmchooser.conf | 3 - .../opt/openslx/plugins/vmware/run-virt.include | 448 - .../etc/opt/openslx/plugins/vmware/vmware.conf | 8 - .../config/1/uniontmp/etc/opt/openslx/udhcpd.conf | 37 - .../config/1/uniontmp/etc/pam.d/common-account | 5 - resources/config/1/uniontmp/etc/pam.d/common-auth | 15 - .../config/1/uniontmp/etc/pam.d/common-session | 5 - resources/config/1/uniontmp/etc/passwd | 39 - resources/config/1/uniontmp/etc/profile | 30 - resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx | 89 - .../config/1/uniontmp/etc/rc2.d/K02vmware-env | 125 - resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx | 89 - .../config/1/uniontmp/etc/rc2.d/S20vmware-env | 125 - resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx | 89 - .../config/1/uniontmp/etc/rc3.d/K02vmware-env | 125 - resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx | 89 - .../config/1/uniontmp/etc/rc3.d/S20vmware-env | 125 - resources/config/1/uniontmp/etc/resolv.conf | 7 - .../config/1/uniontmp/etc/security/group.conf | 105 - resources/config/1/uniontmp/etc/shadow | 39 - .../etc/udev/rules.d/70-persistent-cd.rules | 12 - .../etc/udev/rules.d/70-persistent-net.rules | 8 - .../1/uniontmp/etc/udev/rules.d/90-vboxusb.rules | 2 - resources/config/1/uniontmp/etc/vmware/config | 4 - resources/config/1/uniontmp/etc/vmware/nat.conf | 9 - .../uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf | 37 - .../uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf | 37 - .../config/1/uniontmp/etc/vmware/vmnet-natd-8.mac | 1 - .../config/1/uniontmp/root/.ssh/authorized_keys | 2 - resources/config/1/uniontmp/tmp/.X0-lock | 1 - .../config/1/uniontmp/tmp/krb5cc_14620_43Qjbp | Bin 2748 -> 0 bytes .../tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE | Bin 2583 -> 0 bytes ...-register-7f78e485512b489eeed8a3f14d2462c6.lock | 0 ...ion-server-7f78e485512b489eeed8a3f14d2462c6-ior | 1 - .../tmp/plugtmp/plugin-all_V25_spec_160_600.xml | 85 - .../config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid | 1 - .../tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile | 0 .../1/uniontmp/tmp/vmware-root/usbarb-3200.log | 30 - resources/config/1/uniontmp/tmp/whitelist | 0 resources/config/1/uniontmp/var/cache/nscd/group | Bin 217016 -> 0 bytes resources/config/1/uniontmp/var/cache/nscd/passwd | Bin 217016 -> 0 bytes .../config/1/uniontmp/var/cache/nscd/services | Bin 217016 -> 0 bytes .../var/lib/dpkg/alternatives/x-session-manager | 24 - .../var/lib/dpkg/alternatives/x-window-manager | 18 - .../uniontmp/var/lib/openslx/bin/automount-home.pl | 39 - .../var/lib/openslx/bin/krb5_mount_mode.pl | 69 - .../1/uniontmp/var/lib/openslx/bin/sslconnect | 97 - ...er-02D8252E59564A234380F1E5417646A9DB3B7452.xkm | Bin 10692 -> 0 bytes ...er-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm | Bin 9812 -> 0 bytes .../config/1/uniontmp/var/log/ConsoleKit/history | 3 - resources/config/1/uniontmp/var/log/Xorg.0.log | 787 -- resources/config/1/uniontmp/var/log/auth.log | 35 - resources/config/1/uniontmp/var/log/daemon.log | 45 - resources/config/1/uniontmp/var/log/debug | 159 - resources/config/1/uniontmp/var/log/dmesg | 673 -- resources/config/1/uniontmp/var/log/dmesg.0 | 0 resources/config/1/uniontmp/var/log/kdm.log | 77 - resources/config/1/uniontmp/var/log/kern.log | 725 -- resources/config/1/uniontmp/var/log/lastlog | 0 resources/config/1/uniontmp/var/log/lpr.log | 4 - resources/config/1/uniontmp/var/log/mail.err | 0 resources/config/1/uniontmp/var/log/mail.info | 0 resources/config/1/uniontmp/var/log/mail.log | 0 resources/config/1/uniontmp/var/log/mail.warn | 0 resources/config/1/uniontmp/var/log/messages | 574 -- resources/config/1/uniontmp/var/log/news/news.crit | 0 resources/config/1/uniontmp/var/log/news/news.err | 0 .../config/1/uniontmp/var/log/news/news.notice | 0 .../config/1/uniontmp/var/log/pm-powersave.log | 7 - resources/config/1/uniontmp/var/log/syslog | 781 -- resources/config/1/uniontmp/var/log/udev | 9121 -------------------- resources/config/1/uniontmp/var/log/ufw.log | 0 resources/config/1/uniontmp/var/log/user.log | 3 - resources/config/1/uniontmp/var/log/wtmp | Bin 3072 -> 0 bytes .../config/1/uniontmp/var/opt/openslx/bin/vmplayer | 8 - .../config/1/uniontmp/var/opt/openslx/bin/vmware | 8 - resources/config/1/uniontmp/var/run/utmp | 0 .../1/uniontmp/var/run/vmware/udhcpd-vmnet1.leases | 0 .../1/uniontmp/var/run/vmware/udhcpd-vmnet8.leases | 0 resources/config/1/uniontmp/var/tmp/host_0 | Bin 267 -> 0 bytes resources/config/1/uniontmp/whitelist.sh | 306 - 369 files changed, 18756 insertions(+), 18758 deletions(-) create mode 100644 resources/bootos/1/initramfs/initramfs create mode 100644 resources/bootos/1/kernel/kernel create mode 100755 resources/config/1/config/blacklist.txt create mode 100755 resources/config/1/config/etc/X11/default-display-manager create mode 100755 resources/config/1/config/etc/X11/xorg.conf create mode 100755 resources/config/1/config/etc/auto.master create mode 100755 resources/config/1/config/etc/auto.misc create mode 100755 resources/config/1/config/etc/dbus-1/system.d/hal.conf create mode 100755 resources/config/1/config/etc/default/autofs create mode 100755 resources/config/1/config/etc/default/locale create mode 100755 resources/config/1/config/etc/default/nfs-common create mode 100755 resources/config/1/config/etc/fstab create mode 100755 resources/config/1/config/etc/hosts create mode 100755 resources/config/1/config/etc/idmapd.conf create mode 100755 resources/config/1/config/etc/init.d/boot.slx create mode 100755 resources/config/1/config/etc/init.d/vbox-slx create mode 100755 resources/config/1/config/etc/init.d/vmware-env create mode 100755 resources/config/1/config/etc/init.inactive/README create mode 100755 resources/config/1/config/etc/init.inactive/anacron.conf create mode 100755 resources/config/1/config/etc/init.inactive/apport.conf create mode 100755 resources/config/1/config/etc/init.inactive/atd.conf create mode 100755 resources/config/1/config/etc/init.inactive/avahi-daemon.conf create mode 100755 resources/config/1/config/etc/init.inactive/bridge-network-interface.conf create mode 100755 resources/config/1/config/etc/init.inactive/cron.conf create mode 100755 resources/config/1/config/etc/init.inactive/cryptdisks-enable.conf create mode 100755 resources/config/1/config/etc/init.inactive/cryptdisks-udev.conf create mode 100755 resources/config/1/config/etc/init.inactive/failsafe-x.conf create mode 100755 resources/config/1/config/etc/init.inactive/gdm.conf create mode 100755 resources/config/1/config/etc/init.inactive/hostname.conf create mode 100755 resources/config/1/config/etc/init.inactive/mountall-net.conf create mode 100755 resources/config/1/config/etc/init.inactive/mountall-reboot.conf create mode 100755 resources/config/1/config/etc/init.inactive/mountall-shell.conf create mode 100755 resources/config/1/config/etc/init.inactive/network-interface-security.conf create mode 100755 resources/config/1/config/etc/init.inactive/network-interface.conf create mode 100755 resources/config/1/config/etc/init.inactive/network-manager.conf create mode 100755 resources/config/1/config/etc/init.inactive/plymouth-log.conf create mode 100755 resources/config/1/config/etc/init.inactive/plymouth-splash.conf create mode 100755 resources/config/1/config/etc/init.inactive/plymouth-stop.conf create mode 100755 resources/config/1/config/etc/init.inactive/plymouth.conf create mode 100755 resources/config/1/config/etc/init.inactive/qemu-kvm.conf create mode 100755 resources/config/1/config/etc/init.inactive/screen-cleanup.conf create mode 100755 resources/config/1/config/etc/init.inactive/ufw.conf create mode 100755 resources/config/1/config/etc/init.inactive/ureadahead-other.conf create mode 100755 resources/config/1/config/etc/init.inactive/ureadahead.conf create mode 100755 resources/config/1/config/etc/init/acpid.conf create mode 100755 resources/config/1/config/etc/init/alsa-mixer-save.conf create mode 100755 resources/config/1/config/etc/init/autofs.conf create mode 100755 resources/config/1/config/etc/init/console-setup.conf create mode 100755 resources/config/1/config/etc/init/control-alt-delete.conf create mode 100755 resources/config/1/config/etc/init/dbus.conf create mode 100755 resources/config/1/config/etc/init/dmesg.conf create mode 100755 resources/config/1/config/etc/init/gssd.conf create mode 100755 resources/config/1/config/etc/init/hwclock-save.conf create mode 100755 resources/config/1/config/etc/init/hwclock.conf create mode 100755 resources/config/1/config/etc/init/idmapd.conf create mode 100755 resources/config/1/config/etc/init/irqbalance.conf create mode 100755 resources/config/1/config/etc/init/kdm.conf create mode 100755 resources/config/1/config/etc/init/module-init-tools.conf create mode 100755 resources/config/1/config/etc/init/mountall.conf create mode 100755 resources/config/1/config/etc/init/mounted-dev.conf create mode 100755 resources/config/1/config/etc/init/mounted-tmp.conf create mode 100755 resources/config/1/config/etc/init/mounted-varrun.conf create mode 100755 resources/config/1/config/etc/init/networking.conf create mode 100755 resources/config/1/config/etc/init/portmap.conf create mode 100755 resources/config/1/config/etc/init/procps.conf create mode 100755 resources/config/1/config/etc/init/rc-sysinit.conf create mode 100755 resources/config/1/config/etc/init/rc.conf create mode 100755 resources/config/1/config/etc/init/rcS.conf create mode 100755 resources/config/1/config/etc/init/rpc_pipefs.conf create mode 100755 resources/config/1/config/etc/init/rsyslog.conf create mode 100755 resources/config/1/config/etc/init/ssh.conf create mode 100755 resources/config/1/config/etc/init/statd.conf create mode 100755 resources/config/1/config/etc/init/tty1.conf create mode 100755 resources/config/1/config/etc/init/tty2.conf create mode 100755 resources/config/1/config/etc/init/tty3.conf create mode 100755 resources/config/1/config/etc/init/tty4.conf create mode 100755 resources/config/1/config/etc/init/tty5.conf create mode 100755 resources/config/1/config/etc/init/tty6.conf create mode 100755 resources/config/1/config/etc/init/udev-finish.conf create mode 100755 resources/config/1/config/etc/init/udev.conf create mode 100755 resources/config/1/config/etc/init/udevmonitor.conf create mode 100755 resources/config/1/config/etc/init/udevtrigger.conf create mode 100755 resources/config/1/config/etc/init/upstart-udev-bridge.conf create mode 100755 resources/config/1/config/etc/issue create mode 100755 resources/config/1/config/etc/kde4/kdm/Xreset create mode 100755 resources/config/1/config/etc/kde4/kdm/Xreset.system create mode 100755 resources/config/1/config/etc/kde4/kdm/kdmrc create mode 100755 resources/config/1/config/etc/krb5.conf create mode 100755 resources/config/1/config/etc/krb5.keytab create mode 100755 resources/config/1/config/etc/ldap.conf create mode 100755 resources/config/1/config/etc/ldap/ldap.conf create mode 100755 resources/config/1/config/etc/localtime create mode 100755 resources/config/1/config/etc/logfile create mode 100755 resources/config/1/config/etc/machine-setup create mode 100755 resources/config/1/config/etc/modprobe.d/aliases.conf create mode 100755 resources/config/1/config/etc/modprobe.d/blacklist-pcspkr.conf create mode 100755 resources/config/1/config/etc/mtab create mode 100755 resources/config/1/config/etc/nsswitch.conf create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/virtualbox/machine.include create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/virtualbox/run-virt.include create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.conf create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.include create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/virtualization/virtualization.conf create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/vmchooser/vmchooser.conf create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/vmware/run-virt.include create mode 100755 resources/config/1/config/etc/opt/openslx/plugins/vmware/vmware.conf create mode 100755 resources/config/1/config/etc/opt/openslx/udhcpd.conf create mode 100755 resources/config/1/config/etc/pam.d/common-account create mode 100755 resources/config/1/config/etc/pam.d/common-auth create mode 100755 resources/config/1/config/etc/pam.d/common-session create mode 100755 resources/config/1/config/etc/passwd create mode 100755 resources/config/1/config/etc/profile create mode 100755 resources/config/1/config/etc/rc2.d/K02vbox-slx create mode 100755 resources/config/1/config/etc/rc2.d/K02vmware-env create mode 100755 resources/config/1/config/etc/rc2.d/S20vbox-slx create mode 100755 resources/config/1/config/etc/rc2.d/S20vmware-env create mode 100755 resources/config/1/config/etc/rc3.d/K02vbox-slx create mode 100755 resources/config/1/config/etc/rc3.d/K02vmware-env create mode 100755 resources/config/1/config/etc/rc3.d/S20vbox-slx create mode 100755 resources/config/1/config/etc/rc3.d/S20vmware-env create mode 100755 resources/config/1/config/etc/resolv.conf create mode 100755 resources/config/1/config/etc/security/group.conf create mode 100755 resources/config/1/config/etc/shadow create mode 100755 resources/config/1/config/etc/udev/rules.d/70-persistent-cd.rules create mode 100755 resources/config/1/config/etc/udev/rules.d/70-persistent-net.rules create mode 100755 resources/config/1/config/etc/udev/rules.d/90-vboxusb.rules create mode 100755 resources/config/1/config/etc/vmware/config create mode 100755 resources/config/1/config/etc/vmware/nat.conf create mode 100755 resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet1.conf create mode 100755 resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet8.conf create mode 100755 resources/config/1/config/etc/vmware/vmnet-natd-8.mac create mode 100755 resources/config/1/config/root/.ssh/authorized_keys create mode 100755 resources/config/1/config/tmp/.X0-lock create mode 100755 resources/config/1/config/tmp/krb5cc_14620_43Qjbp create mode 100755 resources/config/1/config/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE create mode 100755 resources/config/1/config/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock create mode 100755 resources/config/1/config/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior create mode 100755 resources/config/1/config/tmp/plugtmp/plugin-all_V25_spec_160_600.xml create mode 100755 resources/config/1/config/tmp/pulse-b9qYDvw8bJls/pid create mode 100755 resources/config/1/config/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile create mode 100755 resources/config/1/config/tmp/vmware-root/usbarb-3200.log create mode 100755 resources/config/1/config/tmp/whitelist create mode 100755 resources/config/1/config/var/cache/nscd/group create mode 100755 resources/config/1/config/var/cache/nscd/passwd create mode 100755 resources/config/1/config/var/cache/nscd/services create mode 100755 resources/config/1/config/var/lib/dpkg/alternatives/x-session-manager create mode 100755 resources/config/1/config/var/lib/dpkg/alternatives/x-window-manager create mode 100755 resources/config/1/config/var/lib/openslx/bin/automount-home.pl create mode 100755 resources/config/1/config/var/lib/openslx/bin/krb5_mount_mode.pl create mode 100755 resources/config/1/config/var/lib/openslx/bin/sslconnect create mode 100755 resources/config/1/config/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm create mode 100755 resources/config/1/config/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm create mode 100755 resources/config/1/config/var/log/ConsoleKit/history create mode 100755 resources/config/1/config/var/log/Xorg.0.log create mode 100755 resources/config/1/config/var/log/auth.log create mode 100755 resources/config/1/config/var/log/daemon.log create mode 100755 resources/config/1/config/var/log/debug create mode 100755 resources/config/1/config/var/log/dmesg create mode 100755 resources/config/1/config/var/log/dmesg.0 create mode 100755 resources/config/1/config/var/log/kdm.log create mode 100755 resources/config/1/config/var/log/kern.log create mode 100755 resources/config/1/config/var/log/lastlog create mode 100755 resources/config/1/config/var/log/lpr.log create mode 100755 resources/config/1/config/var/log/mail.err create mode 100755 resources/config/1/config/var/log/mail.info create mode 100755 resources/config/1/config/var/log/mail.log create mode 100755 resources/config/1/config/var/log/mail.warn create mode 100755 resources/config/1/config/var/log/messages create mode 100755 resources/config/1/config/var/log/news/news.crit create mode 100755 resources/config/1/config/var/log/news/news.err create mode 100755 resources/config/1/config/var/log/news/news.notice create mode 100755 resources/config/1/config/var/log/pm-powersave.log create mode 100755 resources/config/1/config/var/log/syslog create mode 100755 resources/config/1/config/var/log/udev create mode 100755 resources/config/1/config/var/log/ufw.log create mode 100755 resources/config/1/config/var/log/user.log create mode 100755 resources/config/1/config/var/log/wtmp create mode 100755 resources/config/1/config/var/opt/openslx/bin/vmplayer create mode 100755 resources/config/1/config/var/opt/openslx/bin/vmware create mode 100755 resources/config/1/config/var/run/utmp create mode 100755 resources/config/1/config/var/run/vmware/udhcpd-vmnet1.leases create mode 100755 resources/config/1/config/var/run/vmware/udhcpd-vmnet8.leases create mode 100755 resources/config/1/config/var/tmp/host_0 create mode 100755 resources/config/1/config/whitelist.sh delete mode 100755 resources/config/1/uniontmp/blacklist.txt delete mode 100755 resources/config/1/uniontmp/etc/X11/default-display-manager delete mode 100755 resources/config/1/uniontmp/etc/X11/xorg.conf delete mode 100755 resources/config/1/uniontmp/etc/auto.master delete mode 100755 resources/config/1/uniontmp/etc/auto.misc delete mode 100755 resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf delete mode 100755 resources/config/1/uniontmp/etc/default/autofs delete mode 100755 resources/config/1/uniontmp/etc/default/locale delete mode 100755 resources/config/1/uniontmp/etc/default/nfs-common delete mode 100755 resources/config/1/uniontmp/etc/fstab delete mode 100755 resources/config/1/uniontmp/etc/hosts delete mode 100755 resources/config/1/uniontmp/etc/idmapd.conf delete mode 100755 resources/config/1/uniontmp/etc/init.d/boot.slx delete mode 100755 resources/config/1/uniontmp/etc/init.d/vbox-slx delete mode 100755 resources/config/1/uniontmp/etc/init.d/vmware-env delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/README delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/anacron.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/apport.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/atd.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/cron.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/gdm.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/hostname.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/network-interface.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/network-manager.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/plymouth.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/ufw.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf delete mode 100755 resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf delete mode 100755 resources/config/1/uniontmp/etc/init/acpid.conf delete mode 100755 resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf delete mode 100755 resources/config/1/uniontmp/etc/init/autofs.conf delete mode 100755 resources/config/1/uniontmp/etc/init/console-setup.conf delete mode 100755 resources/config/1/uniontmp/etc/init/control-alt-delete.conf delete mode 100755 resources/config/1/uniontmp/etc/init/dbus.conf delete mode 100755 resources/config/1/uniontmp/etc/init/dmesg.conf delete mode 100755 resources/config/1/uniontmp/etc/init/gssd.conf delete mode 100755 resources/config/1/uniontmp/etc/init/hwclock-save.conf delete mode 100755 resources/config/1/uniontmp/etc/init/hwclock.conf delete mode 100755 resources/config/1/uniontmp/etc/init/idmapd.conf delete mode 100755 resources/config/1/uniontmp/etc/init/irqbalance.conf delete mode 100755 resources/config/1/uniontmp/etc/init/kdm.conf delete mode 100755 resources/config/1/uniontmp/etc/init/module-init-tools.conf delete mode 100755 resources/config/1/uniontmp/etc/init/mountall.conf delete mode 100755 resources/config/1/uniontmp/etc/init/mounted-dev.conf delete mode 100755 resources/config/1/uniontmp/etc/init/mounted-tmp.conf delete mode 100755 resources/config/1/uniontmp/etc/init/mounted-varrun.conf delete mode 100755 resources/config/1/uniontmp/etc/init/networking.conf delete mode 100755 resources/config/1/uniontmp/etc/init/portmap.conf delete mode 100755 resources/config/1/uniontmp/etc/init/procps.conf delete mode 100755 resources/config/1/uniontmp/etc/init/rc-sysinit.conf delete mode 100755 resources/config/1/uniontmp/etc/init/rc.conf delete mode 100755 resources/config/1/uniontmp/etc/init/rcS.conf delete mode 100755 resources/config/1/uniontmp/etc/init/rpc_pipefs.conf delete mode 100755 resources/config/1/uniontmp/etc/init/rsyslog.conf delete mode 100755 resources/config/1/uniontmp/etc/init/ssh.conf delete mode 100755 resources/config/1/uniontmp/etc/init/statd.conf delete mode 100755 resources/config/1/uniontmp/etc/init/tty1.conf delete mode 100755 resources/config/1/uniontmp/etc/init/tty2.conf delete mode 100755 resources/config/1/uniontmp/etc/init/tty3.conf delete mode 100755 resources/config/1/uniontmp/etc/init/tty4.conf delete mode 100755 resources/config/1/uniontmp/etc/init/tty5.conf delete mode 100755 resources/config/1/uniontmp/etc/init/tty6.conf delete mode 100755 resources/config/1/uniontmp/etc/init/udev-finish.conf delete mode 100755 resources/config/1/uniontmp/etc/init/udev.conf delete mode 100755 resources/config/1/uniontmp/etc/init/udevmonitor.conf delete mode 100755 resources/config/1/uniontmp/etc/init/udevtrigger.conf delete mode 100755 resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf delete mode 100755 resources/config/1/uniontmp/etc/issue delete mode 100755 resources/config/1/uniontmp/etc/kde4/kdm/Xreset delete mode 100755 resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system delete mode 100755 resources/config/1/uniontmp/etc/kde4/kdm/kdmrc delete mode 100755 resources/config/1/uniontmp/etc/krb5.conf delete mode 100755 resources/config/1/uniontmp/etc/krb5.keytab delete mode 100755 resources/config/1/uniontmp/etc/ldap.conf delete mode 100755 resources/config/1/uniontmp/etc/ldap/ldap.conf delete mode 100755 resources/config/1/uniontmp/etc/localtime delete mode 100755 resources/config/1/uniontmp/etc/logfile delete mode 100755 resources/config/1/uniontmp/etc/machine-setup delete mode 100755 resources/config/1/uniontmp/etc/modprobe.d/aliases.conf delete mode 100755 resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf delete mode 100755 resources/config/1/uniontmp/etc/mtab delete mode 100755 resources/config/1/uniontmp/etc/nsswitch.conf delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf delete mode 100755 resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf delete mode 100755 resources/config/1/uniontmp/etc/pam.d/common-account delete mode 100755 resources/config/1/uniontmp/etc/pam.d/common-auth delete mode 100755 resources/config/1/uniontmp/etc/pam.d/common-session delete mode 100755 resources/config/1/uniontmp/etc/passwd delete mode 100755 resources/config/1/uniontmp/etc/profile delete mode 100755 resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx delete mode 100755 resources/config/1/uniontmp/etc/rc2.d/K02vmware-env delete mode 100755 resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx delete mode 100755 resources/config/1/uniontmp/etc/rc2.d/S20vmware-env delete mode 100755 resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx delete mode 100755 resources/config/1/uniontmp/etc/rc3.d/K02vmware-env delete mode 100755 resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx delete mode 100755 resources/config/1/uniontmp/etc/rc3.d/S20vmware-env delete mode 100755 resources/config/1/uniontmp/etc/resolv.conf delete mode 100755 resources/config/1/uniontmp/etc/security/group.conf delete mode 100755 resources/config/1/uniontmp/etc/shadow delete mode 100755 resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules delete mode 100755 resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules delete mode 100755 resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules delete mode 100755 resources/config/1/uniontmp/etc/vmware/config delete mode 100755 resources/config/1/uniontmp/etc/vmware/nat.conf delete mode 100755 resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf delete mode 100755 resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf delete mode 100755 resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac delete mode 100755 resources/config/1/uniontmp/root/.ssh/authorized_keys delete mode 100755 resources/config/1/uniontmp/tmp/.X0-lock delete mode 100755 resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp delete mode 100755 resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE delete mode 100755 resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock delete mode 100755 resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior delete mode 100755 resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml delete mode 100755 resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid delete mode 100755 resources/config/1/uniontmp/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile delete mode 100755 resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log delete mode 100755 resources/config/1/uniontmp/tmp/whitelist delete mode 100755 resources/config/1/uniontmp/var/cache/nscd/group delete mode 100755 resources/config/1/uniontmp/var/cache/nscd/passwd delete mode 100755 resources/config/1/uniontmp/var/cache/nscd/services delete mode 100755 resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager delete mode 100755 resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager delete mode 100755 resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl delete mode 100755 resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl delete mode 100755 resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect delete mode 100755 resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm delete mode 100755 resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm delete mode 100755 resources/config/1/uniontmp/var/log/ConsoleKit/history delete mode 100755 resources/config/1/uniontmp/var/log/Xorg.0.log delete mode 100755 resources/config/1/uniontmp/var/log/auth.log delete mode 100755 resources/config/1/uniontmp/var/log/daemon.log delete mode 100755 resources/config/1/uniontmp/var/log/debug delete mode 100755 resources/config/1/uniontmp/var/log/dmesg delete mode 100755 resources/config/1/uniontmp/var/log/dmesg.0 delete mode 100755 resources/config/1/uniontmp/var/log/kdm.log delete mode 100755 resources/config/1/uniontmp/var/log/kern.log delete mode 100755 resources/config/1/uniontmp/var/log/lastlog delete mode 100755 resources/config/1/uniontmp/var/log/lpr.log delete mode 100755 resources/config/1/uniontmp/var/log/mail.err delete mode 100755 resources/config/1/uniontmp/var/log/mail.info delete mode 100755 resources/config/1/uniontmp/var/log/mail.log delete mode 100755 resources/config/1/uniontmp/var/log/mail.warn delete mode 100755 resources/config/1/uniontmp/var/log/messages delete mode 100755 resources/config/1/uniontmp/var/log/news/news.crit delete mode 100755 resources/config/1/uniontmp/var/log/news/news.err delete mode 100755 resources/config/1/uniontmp/var/log/news/news.notice delete mode 100755 resources/config/1/uniontmp/var/log/pm-powersave.log delete mode 100755 resources/config/1/uniontmp/var/log/syslog delete mode 100755 resources/config/1/uniontmp/var/log/udev delete mode 100755 resources/config/1/uniontmp/var/log/ufw.log delete mode 100755 resources/config/1/uniontmp/var/log/user.log delete mode 100755 resources/config/1/uniontmp/var/log/wtmp delete mode 100755 resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer delete mode 100755 resources/config/1/uniontmp/var/opt/openslx/bin/vmware delete mode 100755 resources/config/1/uniontmp/var/run/utmp delete mode 100755 resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet1.leases delete mode 100755 resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet8.leases delete mode 100755 resources/config/1/uniontmp/var/tmp/host_0 delete mode 100755 resources/config/1/uniontmp/whitelist.sh (limited to 'application') diff --git a/application/controllers/ResourceController.php b/application/controllers/ResourceController.php index a430a27..2cf0565 100644 --- a/application/controllers/ResourceController.php +++ b/application/controllers/ResourceController.php @@ -30,7 +30,7 @@ class ResourceController extends Zend_Controller_Action header('Content-Type: application/x-gzip'); $content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $HTTP_USER_AGENT) == 'IE') ? 'inline' : 'attachment'; - header('Content-Disposition: ' . $content_disp . '; filename="file.tar.gz"'); + header('Content-Disposition: ' . $content_disp . '; filename="initramfs.tar.gz"'); header('Pragma: no-cache'); header('Expires: 0'); @@ -54,12 +54,12 @@ class ResourceController extends Zend_Controller_Action header('Content-Type: application/x-gzip'); $content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $HTTP_USER_AGENT) == 'IE') ? 'inline' : 'attachment'; - header('Content-Disposition: ' . $content_disp . '; filename="file.tar.gz"'); + header('Content-Disposition: ' . $content_disp . '; filename="config.tar.gz"'); header('Pragma: no-cache'); header('Expires: 0'); // create the gzipped tarfile. - chdir("../resources/config/$configID/uniontmp/"); + chdir("../resources/config/$configID/config/"); passthru( "tar cz ./"); } } @@ -77,7 +77,7 @@ class ResourceController extends Zend_Controller_Action header('Content-Type: application/x-gzip'); $content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $HTTP_USER_AGENT) == 'IE') ? 'inline' : 'attachment'; - header('Content-Disposition: ' . $content_disp . '; filename="file.tar.gz"'); + header('Content-Disposition: ' . $content_disp . '; filename="kernel.tar.gz"'); header('Pragma: no-cache'); header('Expires: 0'); @@ -100,7 +100,7 @@ class ResourceController extends Zend_Controller_Action $bmemapper->find($bmeID,$bme); if($bme->getKcl() != null){ - echo json_encode(array('kcl' => $bme->getKcl())); + echo $bme->getKcl(); } } @@ -135,8 +135,6 @@ class ResourceController extends Zend_Controller_Action 'kcl' => $this->generateURL('getkcl', 'bootmenuentryID', $bmeID), 'config' => $this->generateURL('getconfig', 'configID', $alpha_config) ); - - print_a($return_val); echo json_encode($return_val); } diff --git a/resources/bootos/1/initramfs/initramfs b/resources/bootos/1/initramfs/initramfs new file mode 100644 index 0000000..f8a19b4 Binary files /dev/null and b/resources/bootos/1/initramfs/initramfs differ diff --git a/resources/bootos/1/kernel/kernel b/resources/bootos/1/kernel/kernel new file mode 100644 index 0000000..960d26a Binary files /dev/null and b/resources/bootos/1/kernel/kernel differ diff --git a/resources/config/1/config/blacklist.txt b/resources/config/1/config/blacklist.txt new file mode 100755 index 0000000..18bc411 --- /dev/null +++ b/resources/config/1/config/blacklist.txt @@ -0,0 +1,265 @@ +/usr/share/xsessions/.xterm.desktop +/usr/share/xsessions/.guest-restricted.desktop +/usr/share/xsessions/.gnome-failsafe.desktop +/usr/share/xsessions/.xubuntu.desktop +/usr/share/xsessions/.openbox-kde.desktop +/usr/share/xsessions/.openbox-gnome.desktop +/usr/share/man/man1/.x-window-manager.1.gz +/etc/alternatives/.x-window-manager.1.gz +/etc/dbus-1/system.d/.nm-vpnc-service.conf +/etc/dbus-1/system.d/.nm-pptp-service.conf +/etc/dbus-1/system.d/.nm-openvpn-service.conf +/etc/dbus-1/system.d/.nm-dispatcher.conf +/etc/dbus-1/system.d/.nm-dhcp-client.conf +/etc/dbus-1/system.d/.nm-avahi-autoipd.conf +/etc/dbus-1/system.d/.nm-applet.conf +/etc/dbus-1/system.d/.NetworkManager.conf +/etc/init/.ureadahead.conf +/etc/init/.ureadahead-other.conf +/etc/init/.ufw.conf +/etc/init/.screen-cleanup.conf +/etc/init/.qemu-kvm.conf +/etc/init/.plymouth.conf +/etc/init/.plymouth-stop.conf +/etc/init/.plymouth-splash.conf +/etc/init/.plymouth-log.conf +/etc/init/.network-manager.conf +/etc/init/.network-interface.conf +/etc/init/.network-interface-security.conf +/etc/init/.mountall-shell.conf +/etc/init/.mountall-reboot.conf +/etc/init/.mountall-net.conf +/etc/init/.hostname.conf +/etc/init/.gdm.conf +/etc/init/.failsafe-x.conf +/etc/init/.cryptdisks-udev.conf +/etc/init/.cryptdisks-enable.conf +/etc/init/.cron.conf +/etc/init/.bridge-network-interface.conf +/etc/init/.avahi-daemon.conf +/etc/init/.atd.conf +/etc/init/.apport.conf +/etc/init/.anacron.conf +/etc/rcS.d/.S75policykit +/etc/rcS.d/.S70x11-common +/etc/rcS.d/.S55urandom +/etc/rcS.d/.S47lm-sensors +/etc/rcS.d/.S46setserial +/etc/rcS.d/.S41nbd-client +/etc/rcS.d/.S37setkey +/etc/rcS.d/.S37apparmor +/etc/rcS.d/.S30etc-setserial +/etc/rcS.d/.S25brltty +/etc/rcS.d/.S13pcmciautils +/etc/rcS.d/.S07resolvconf +/etc/rcS.d/.S05keymap.sh +/etc/rcS.d/.README +/etc/rc6.d/.S90reboot +/etc/rc6.d/.S85kexec +/etc/rc6.d/.S60umountroot +/etc/rc6.d/.S59cryptdisks-early +/etc/rc6.d/.S48cryptdisks +/etc/rc6.d/.S40umountfs +/etc/rc6.d/.S35networking +/etc/rc6.d/.S34nbd-client +/etc/rc6.d/.S31umountnfs.sh +/etc/rc6.d/.S30urandom +/etc/rc6.d/.S20sendsigs +/etc/rc6.d/.S15wpa-ifupdown +/etc/rc6.d/.S10unattended-upgrades +/etc/rc6.d/.README +/etc/rc6.d/.K80openvpn +/etc/rc6.d/.K74bluetooth +/etc/rc6.d/.K30etc-setserial +/etc/rc6.d/.K20winbind +/etc/rc6.d/.K20virtuoso-opensource-6.0 +/etc/rc6.d/.K20vboxweb-service +/etc/rc6.d/.K20vboxdrv +/etc/rc6.d/.K20postfix +/etc/rc6.d/.K20nscd +/etc/rc6.d/.K20libnss-ldap +/etc/rc6.d/.K20kerneloops +/etc/rc6.d/.K20jetty +/etc/rc6.d/.K20darkstat +/etc/rc6.d/.K19setserial +/etc/rc6.d/.K19aumix +/etc/rc6.d/.K18kexec-load +/etc/rc6.d/.K01slim +/etc/rc5.d/.S99slim +/etc/rc5.d/.S99rc.local +/etc/rc5.d/.S99ondemand +/etc/rc5.d/.S99grub-common +/etc/rc5.d/.S99acpi-support +/etc/rc5.d/.S90binfmt-support +/etc/rc5.d/.S70pppd-dns +/etc/rc5.d/.S70dns-clean +/etc/rc5.d/.S50saned +/etc/rc5.d/.S50rsync +/etc/rc5.d/.S50pulseaudio +/etc/rc5.d/.S50cups +/etc/rc5.d/.S25bluetooth +/etc/rc5.d/.S21aumix +/etc/rc5.d/.S20winbind +/etc/rc5.d/.S20virtuoso-opensource-6.0 +/etc/rc5.d/.S20vboxweb-service +/etc/rc5.d/.S20vboxdrv +/etc/rc5.d/.S20sysstat +/etc/rc5.d/.S20speech-dispatcher +/etc/rc5.d/.S20postfix +/etc/rc5.d/.S20nscd +/etc/rc5.d/.S20libnss-ldap +/etc/rc5.d/.S20kerneloops +/etc/rc5.d/.S20jetty +/etc/rc5.d/.S20fancontrol +/etc/rc5.d/.S20darkstat +/etc/rc5.d/.S19vmware +/etc/rc5.d/.S16openvpn +/etc/rc5.d/.README +/etc/rc5.d/.K08vmware +/etc/rc4.d/.S99slim +/etc/rc4.d/.S99rc.local +/etc/rc4.d/.S99ondemand +/etc/rc4.d/.S99grub-common +/etc/rc4.d/.S99acpi-support +/etc/rc4.d/.S90binfmt-support +/etc/rc4.d/.S70pppd-dns +/etc/rc4.d/.S70dns-clean +/etc/rc4.d/.S50saned +/etc/rc4.d/.S50rsync +/etc/rc4.d/.S50pulseaudio +/etc/rc4.d/.S50cups +/etc/rc4.d/.S25bluetooth +/etc/rc4.d/.S21aumix +/etc/rc4.d/.S20winbind +/etc/rc4.d/.S20virtuoso-opensource-6.0 +/etc/rc4.d/.S20vboxweb-service +/etc/rc4.d/.S20vboxdrv +/etc/rc4.d/.S20sysstat +/etc/rc4.d/.S20speech-dispatcher +/etc/rc4.d/.S20postfix +/etc/rc4.d/.S20nscd +/etc/rc4.d/.S20libnss-ldap +/etc/rc4.d/.S20kerneloops +/etc/rc4.d/.S20jetty +/etc/rc4.d/.S20fancontrol +/etc/rc4.d/.S20darkstat +/etc/rc4.d/.S16openvpn +/etc/rc4.d/.README +/etc/rc3.d/.S99slim +/etc/rc3.d/.S99rc.local +/etc/rc3.d/.S99ondemand +/etc/rc3.d/.S99grub-common +/etc/rc3.d/.S99acpi-support +/etc/rc3.d/.S90binfmt-support +/etc/rc3.d/.S70pppd-dns +/etc/rc3.d/.S70dns-clean +/etc/rc3.d/.S50saned +/etc/rc3.d/.S50rsync +/etc/rc3.d/.S50pulseaudio +/etc/rc3.d/.S50cups +/etc/rc3.d/.S25bluetooth +/etc/rc3.d/.S21aumix +/etc/rc3.d/.S20winbind +/etc/rc3.d/.S20virtuoso-opensource-6.0 +/etc/rc3.d/.S20vboxweb-service +/etc/rc3.d/.S20vboxdrv +/etc/rc3.d/.S20sysstat +/etc/rc3.d/.S20speech-dispatcher +/etc/rc3.d/.S20postfix +/etc/rc3.d/.S20libnss-ldap +/etc/rc3.d/.S20kerneloops +/etc/rc3.d/.S20jetty +/etc/rc3.d/.S20fancontrol +/etc/rc3.d/.S20darkstat +/etc/rc3.d/.S19vmware +/etc/rc3.d/.S16openvpn +/etc/rc3.d/.README +/etc/rc3.d/.K08vmware +/etc/rc2.d/.S99slim +/etc/rc2.d/.S99rc.local +/etc/rc2.d/.S99ondemand +/etc/rc2.d/.S99grub-common +/etc/rc2.d/.S99acpi-support +/etc/rc2.d/.S90binfmt-support +/etc/rc2.d/.S70pppd-dns +/etc/rc2.d/.S70dns-clean +/etc/rc2.d/.S50saned +/etc/rc2.d/.S50rsync +/etc/rc2.d/.S50pulseaudio +/etc/rc2.d/.S50cups +/etc/rc2.d/.S25bluetooth +/etc/rc2.d/.S21aumix +/etc/rc2.d/.S20winbind +/etc/rc2.d/.S20virtuoso-opensource-6.0 +/etc/rc2.d/.S20vboxweb-service +/etc/rc2.d/.S20vboxdrv +/etc/rc2.d/.S20sysstat +/etc/rc2.d/.S20speech-dispatcher +/etc/rc2.d/.S20postfix +/etc/rc2.d/.S20libnss-ldap +/etc/rc2.d/.S20kerneloops +/etc/rc2.d/.S20jetty +/etc/rc2.d/.S20fancontrol +/etc/rc2.d/.S20darkstat +/etc/rc2.d/.S19vmware +/etc/rc2.d/.S16openvpn +/etc/rc2.d/.S00kdump +/etc/rc2.d/.README +/etc/rc2.d/.K08vmware +/etc/rc1.d/.S90single +/etc/rc1.d/.S70pppd-dns +/etc/rc1.d/.S70dns-clean +/etc/rc1.d/.S30killprocs +/etc/rc1.d/.README +/etc/rc1.d/.K80openvpn +/etc/rc1.d/.K80cups +/etc/rc1.d/.K74bluetooth +/etc/rc1.d/.K20winbind +/etc/rc1.d/.K20virtuoso-opensource-6.0 +/etc/rc1.d/.K20vboxweb-service +/etc/rc1.d/.K20vboxdrv +/etc/rc1.d/.K20speech-dispatcher +/etc/rc1.d/.K20saned +/etc/rc1.d/.K20rsync +/etc/rc1.d/.K20postfix +/etc/rc1.d/.K20nscd +/etc/rc1.d/.K20libnss-ldap +/etc/rc1.d/.K20kerneloops +/etc/rc1.d/.K20jetty +/etc/rc1.d/.K20darkstat +/etc/rc1.d/.K20acpi-support +/etc/rc1.d/.K19aumix +/etc/rc1.d/.K15pulseaudio +/etc/rc1.d/.K01slim +/etc/rc0.d/.S90halt +/etc/rc0.d/.S60umountroot +/etc/rc0.d/.S59cryptdisks-early +/etc/rc0.d/.S48cryptdisks +/etc/rc0.d/.S40umountfs +/etc/rc0.d/.S35networking +/etc/rc0.d/.S34nbd-client +/etc/rc0.d/.S31umountnfs.sh +/etc/rc0.d/.S30urandom +/etc/rc0.d/.S20sendsigs +/etc/rc0.d/.S15wpa-ifupdown +/etc/rc0.d/.S10unattended-upgrades +/etc/rc0.d/.README +/etc/rc0.d/.K80openvpn +/etc/rc0.d/.K74bluetooth +/etc/rc0.d/.K30etc-setserial +/etc/rc0.d/.K20winbind +/etc/rc0.d/.K20virtuoso-opensource-6.0 +/etc/rc0.d/.K20vboxweb-service +/etc/rc0.d/.K20vboxdrv +/etc/rc0.d/.K20postfix +/etc/rc0.d/.K20nscd +/etc/rc0.d/.K20libnss-ldap +/etc/rc0.d/.K20kerneloops +/etc/rc0.d/.K20jetty +/etc/rc0.d/.K20darkstat +/etc/rc0.d/.K19setserial +/etc/rc0.d/.K19aumix +/etc/rc0.d/.K01slim +/.orph +/.plnk +/.aufs diff --git a/resources/config/1/config/etc/X11/default-display-manager b/resources/config/1/config/etc/X11/default-display-manager new file mode 100755 index 0000000..7d6c14c --- /dev/null +++ b/resources/config/1/config/etc/X11/default-display-manager @@ -0,0 +1 @@ +/usr/bin/kdm diff --git a/resources/config/1/config/etc/X11/xorg.conf b/resources/config/1/config/etc/X11/xorg.conf new file mode 100755 index 0000000..d120cdf --- /dev/null +++ b/resources/config/1/config/etc/X11/xorg.conf @@ -0,0 +1,66 @@ +# /etc/X11/xorg.conf +# autogenerated X hardware configuration by the xserver plugin in OpenSLX stage3 +# DO NOT EDIT THIS FILE BUT THE PLUGIN INSTEAD +Section "Files" +# ModulePath "/usr/lib/xorg/modules/,/usr/lib64/xorg/modules/" +EndSection +Section "ServerFlags" + Option "AllowMouseOpenFail" + Option "AllowEmptyInput" "false" + Option "blank time" "5" + Option "standby time" "10" + Option "suspend time" "15" + Option "off time" "20" +EndSection +Section "Module" + Load "i2c" + Load "bitmap" + Load "ddc" + Load "extmod" + Load "freetype" + Load "int10" + Load "vbe" + Load "glx" + Load "dri" +EndSection +Section "InputDevice" + Identifier "Generic Keyboard" + Driver "evdev" + Option "CoreKeyboard" + Option "XkbRules" "xorg" + Option "XkbModel" "pc105" + Option "XkbLayout" "us" + Option "XkbVariant" "nodeadkeys" +EndSection +Section "InputDevice" + Identifier "Generic Mouse" + Driver "mouse" +# Option "Device" "/dev/input/mice" +# Option "Protocol" "ImPS/2" +# Option "ZAxisMapping" "4 5" +# Option "Emulate3Buttons" "true" + Option "CorePointer" +EndSection +Section "Monitor" + Identifier "Generic Display" + Option "DPMS" +# Modelname "could be enabled via xserver::ddcinfo attribute" +# Vertrefresh ... +# Horizsync ... +# DisplaySize ... +EndSection +Section "Screen" + Identifier "Default Screen" + Device "Generic Video Card" + Monitor "Generic Display" + DefaultDepth 24 +# SubSection "Display" +# Depth 24 +# Modes "1024x768" "800x600" +# EndSubSection +EndSection +Section "ServerLayout" + Identifier "Default Layout" + InputDevice "Generic Keyboard" + InputDevice "Generic Mouse" +EndSection diff --git a/resources/config/1/config/etc/auto.master b/resources/config/1/config/etc/auto.master new file mode 100755 index 0000000..d33958d --- /dev/null +++ b/resources/config/1/config/etc/auto.master @@ -0,0 +1,3 @@ +# /etc/auto.master - file generated by /bin/servconfig: +/misc #/etc/auto.misc +/home program:/var/lib/openslx/bin/automount-home.pl diff --git a/resources/config/1/config/etc/auto.misc b/resources/config/1/config/etc/auto.misc new file mode 100755 index 0000000..b2ae0a9 --- /dev/null +++ b/resources/config/1/config/etc/auto.misc @@ -0,0 +1,3 @@ +# /etc/auto.misc - file generated by /bin/servconfig: +automount for removable devices is mostly deprecated, so /misc is not +activated in auto.master. diff --git a/resources/config/1/config/etc/dbus-1/system.d/hal.conf b/resources/config/1/config/etc/dbus-1/system.d/hal.conf new file mode 100755 index 0000000..e40c5af --- /dev/null +++ b/resources/config/1/config/etc/dbus-1/system.d/hal.conf @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/config/1/config/etc/default/autofs b/resources/config/1/config/etc/default/autofs new file mode 100755 index 0000000..40ebba1 --- /dev/null +++ b/resources/config/1/config/etc/default/autofs @@ -0,0 +1,128 @@ +# /etc/default/autofs - file modified byn#t/bin/servconfig:n# +# +# Define default options for autofs. +# +# MASTER_MAP_NAME - default map name for the master map. +# +MASTER_MAP_NAME="/etc/auto.master" +# +# TIMEOUT=60 +# +TIMEOUT=60 +# +# NEGATIVE_TIMEOUT=60 +# failed mount attempts (default 60). +# +#NEGATIVE_TIMEOUT=60 +# +# UMOUNT_WAIT - time to wait for a response from umount(8). +# +#UMOUNT_WAIT=12 +# +# BROWSE_MODE - maps are browsable by default. +# +BROWSE_MODE="no" +# +# MOUNT_NFS_DEFAULT_PROTOCOL - specify the default protocol used by +# mount.nfs(8). Since we can't identify +# the default automatically we need to +# set it in our configuration. This will +# only make a difference for replicated +# map entries as availability probing isn't +# used for single host map entries. +# +#MOUNT_NFS_DEFAULT_PROTOCOL=3 +# +# APPEND_OPTIONS - append to global options instead of replace. +# +#APPEND_OPTIONS="yes" +# +# LOGGING - set default log level "none", "verbose" or "debug" +# +#LOGGING="none" +# +# Define server URIs +# +# LDAP_URI - space seperated list of server uris of the form +# ://[/] where can be ldap +# or ldaps. The option can be given multiple times. +# Map entries that include a server name override +# this option. +# +# This configuration option can also be used to +# request autofs lookup SRV RRs for a domain of +# the form :///[]. Note that a +# trailing "/" is not allowed when using this form. +# If the domain dn is not specified the dns domain +# name (if any) is used to construct the domain dn +# for the SRV RR lookup. The server list returned +# from an SRV RR lookup is refreshed according to +# the minimum ttl found in the SRV RR records or +# after one hour, whichever is less. +# +#LDAP_URI="" +# +# LDAP__TIMEOUT=60 +# (default is LDAP library default). +# +#LDAP_TIMEOUT=60 +# +# LDAP_NETWORK_TIMEOUT=60 +# +#LDAP_NETWORK_TIMEOUT=60 +# +# Define base dn for map dn lookup. +# +# SEARCH_BASE - base dn to use for searching for map search dn. +# Multiple entries can be given and they are checked +# in the order they occur here. +# +#SEARCH_BASE="" +# +# Define the LDAP schema to used for lookups +# +# If no schema is set autofs will check each of the schemas +# below in the order given to try and locate an appropriate +# basdn for lookups. If you want to minimize the number of +# queries to the server set the values here. +# +#MAP_OBJECT_CLASS="nisMap" +#ENTRY_OBJECT_CLASS="nisObject" +#MAP_ATTRIBUTE="nisMapName" +#ENTRY_ATTRIBUTE="cn" +#VALUE_ATTRIBUTE="nisMapEntry" +# +# Other common LDAP nameing +# +#MAP_OBJECT_CLASS="automountMap" +#ENTRY_OBJECT_CLASS="automount" +#MAP_ATTRIBUTE="ou" +#ENTRY_ATTRIBUTE="cn" +#VALUE_ATTRIBUTE="automountInformation" +# +#MAP_OBJECT_CLASS="automountMap" +#ENTRY_OBJECT_CLASS="automount" +#MAP_ATTRIBUTE="automountMapName" +#ENTRY_ATTRIBUTE="automountKey" +#VALUE_ATTRIBUTE="automountInformation" +# +# AUTH_CONF_FILE - set the default location for the SASL +# authentication configuration file. +# +#AUTH_CONF_FILE="/etc/autofs_ldap_auth.conf" +# +# MAP_HASH_TABLE_SIZE - set the map cache hash table size. +# Should be a power of 2 with a ratio roughly +# between 1:10 and 1:20 for each map. +# +#MAP_HASH_TABLE_SIZE=1024 +# +# General global options +# +# If the kernel supports using the autofs miscellanous device +# and you wish to use it you must set this configuration option +# to "yes" otherwise it will not be used. +USE_MISC_DEVICE="yes" +# +#OPTIONS="" +# diff --git a/resources/config/1/config/etc/default/locale b/resources/config/1/config/etc/default/locale new file mode 100755 index 0000000..7a102c6 --- /dev/null +++ b/resources/config/1/config/etc/default/locale @@ -0,0 +1,2 @@ +# File modified during SLX stage3 bootup (config_distro) +LANG="de_DE.UTF-8" diff --git a/resources/config/1/config/etc/default/nfs-common b/resources/config/1/config/etc/default/nfs-common new file mode 100755 index 0000000..6345bba --- /dev/null +++ b/resources/config/1/config/etc/default/nfs-common @@ -0,0 +1,19 @@ +# If you do not set values for the NEED_ options, they will be attempted +# autodetected; this should be sufficient for most people. Valid alternatives +# for the NEED_ options are "yes" and "no". + +# Do you want to start the statd daemon? It is not needed for NFSv4. +NEED_STATD= + +# Options for rpc.statd. +# Should rpc.statd listen on a specific port? This is especially useful +# when you have a port-based firewall. To use a fixed port, set this +# this variable to a statd argument like: "--port 4000 --outgoing-port 4001". +# For more information, see rpc.statd(8) or http://wiki.debian.org/?SecuringNFS +STATDOPTS= + +# Do you want to start the idmapd daemon? It is only needed for NFSv4. +NEED_IDMAPD=yes + +# Do you want to start the gssd daemon? It is required for Kerberos mounts. +NEED_GSSD=yes diff --git a/resources/config/1/config/etc/fstab b/resources/config/1/config/etc/fstab new file mode 100755 index 0000000..4f1b5b7 --- /dev/null +++ b/resources/config/1/config/etc/fstab @@ -0,0 +1,8 @@ +# OpenSLX Project, info@openslx.com + +rootfs / rootfs ro 0 0 +/dev/sda1 swap swap defaults 0 0 +/dev/sda2 /media/sda2 auto noauto,noexec 0 0 +/dev/sda3 /media/sda3 auto noauto,noexec 0 0 +rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs defaults 0 0 +nfsd /proc/fs/nfsd nfsd defaults 0 0 diff --git a/resources/config/1/config/etc/hosts b/resources/config/1/config/etc/hosts new file mode 100755 index 0000000..ff31061 --- /dev/null +++ b/resources/config/1/config/etc/hosts @@ -0,0 +1,13 @@ +# /etc/hosts - file generated by /bin/servconfig during OpenSLX stage3 +# +# IP-Address Full-Qualified-Hostname Short-Hostname +# +127.0.0.1 localhost +::1 localhost ipv6-localhost ipv6-loopback +fe00::0 ipv6-localnet +ff00::0 ipv6-mcastprefix +ff02::1 ipv6-allnodes +ff02::2 ipv6-allrouters +ff02::3 ipv6-allhosts + +132.230.4.20 lsfks20.ruf.uni-freiburg.de lsfks20 diff --git a/resources/config/1/config/etc/idmapd.conf b/resources/config/1/config/etc/idmapd.conf new file mode 100755 index 0000000..86fb6ef --- /dev/null +++ b/resources/config/1/config/etc/idmapd.conf @@ -0,0 +1,11 @@ +# file copied from configuration package (rootfs/etc/idmap.conf) +[General] + +Verbosity = 0 +Pipefs-Directory = /var/lib/nfs/rpc_pipefs +Domain = uni-freiburg.de + +[Mapping] + +Nobody-User = nobody +Nobody-Group = nogroup diff --git a/resources/config/1/config/etc/init.d/boot.slx b/resources/config/1/config/etc/init.d/boot.slx new file mode 100755 index 0000000..287db78 --- /dev/null +++ b/resources/config/1/config/etc/init.d/boot.slx @@ -0,0 +1,19 @@ +#!/bin/sh +# skeleton of /etc/init.d/boot.slx written from /init +# after you applied changes to the creation scripts you have to rerun +# the mkdxsinitrd script to get them applied + +. /lib/lsb/init-functions + + + +case "$1" in + start) + log_begin_msg "Running configuration postponed from InitRamFS" + mount -t usbfs usbfs /proc/bus/usb 2>/dev/null + log_end_msg 0 + ;; + stop) + ;; +esac +exit 0 diff --git a/resources/config/1/config/etc/init.d/vbox-slx b/resources/config/1/config/etc/init.d/vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/config/etc/init.d/vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/init.d/vmware-env b/resources/config/1/config/etc/init.d/vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/config/etc/init.d/vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/init.inactive/README b/resources/config/1/config/etc/init.inactive/README new file mode 100755 index 0000000..d199578 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/README @@ -0,0 +1,2 @@ +# This directory was created in OpenSLX stage3 and contains all disabled +# upstart scripts. They are moved by servconfig to init if this is required. diff --git a/resources/config/1/config/etc/init.inactive/anacron.conf b/resources/config/1/config/etc/init.inactive/anacron.conf new file mode 100755 index 0000000..d2bae55 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/anacron.conf @@ -0,0 +1,14 @@ +# anacron - anac(h)ronistic cron +# +# anacron executes commands at specific periods, but does not assume that +# the machine is running continuously + +description "anac(h)ronistic cron" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +normal exit 0 + +exec anacron -s diff --git a/resources/config/1/config/etc/init.inactive/apport.conf b/resources/config/1/config/etc/init.inactive/apport.conf new file mode 100755 index 0000000..c76f56a --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/apport.conf @@ -0,0 +1,50 @@ +# apport - automatic crash report generation +# +# While this job is active, core dumps will captured by apport and +# used to generate automatic crash reports. + +description "automatic crash report generation" + +start on runlevel [2345] +stop on runlevel [!2345] + +env enabled=1 + +pre-start script + . /etc/default/apport + [ "$enabled" = "1" ] || [ "$force_start" = "1" ] + + mkdir -p -m 1777 /var/crash + + # check for kernel crash dump, convert it to apport report + if [ -e /var/crash/vmcore ] + then + /usr/share/apport/kernel_crashdump || true + fi + + # check for incomplete suspend/resume or hibernate + if [ -e /var/lib/pm-utils/status ] + then + /usr/share/apport/apportcheckresume || true + rm -f /var/lib/pm-utils/status + rm -f /var/lib/pm-utils/resume-hang.log + fi + + echo "|/usr/share/apport/apport %p %s %c" > /proc/sys/kernel/core_pattern +end script + +post-stop script + # Check for a hung resume. If we find one try and grab everything + # we can to aid in its discovery + if [ -e /var/lib/pm-utils/status ] + then + ps -wwef > /var/lib/pm-utils/resume-hang.log + fi + + if [ "`dd if=/proc/sys/kernel/core_pattern count=1 bs=1 2>/dev/null`" != "|" ] + then + exit 1 + else + echo "core" > /proc/sys/kernel/core_pattern + fi +end script diff --git a/resources/config/1/config/etc/init.inactive/atd.conf b/resources/config/1/config/etc/init.inactive/atd.conf new file mode 100755 index 0000000..72bbf04 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/atd.conf @@ -0,0 +1,14 @@ +# atd - deferred execution scheduler +# +# at is a standard UNIX program that runs user-specified programs at +# scheduled deferred times + +description "deferred execution scheduler" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +respawn + +exec atd diff --git a/resources/config/1/config/etc/init.inactive/avahi-daemon.conf b/resources/config/1/config/etc/init.inactive/avahi-daemon.conf new file mode 100755 index 0000000..dac0cd9 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/avahi-daemon.conf @@ -0,0 +1,25 @@ +# avahi-daemon - mDNS/DNS-SD daemon +# +# The Avahi daemon provides mDNS/DNS-SD discovery support (Bonjour/Zeroconf) +# allowing applications to discover services on the network. + +description "mDNS/DNS-SD daemon" + +start on (filesystem + and started dbus) +stop on stopping dbus + +expect daemon +respawn + +pre-start script + [ -d /sys/module/apparmor ] || exit 0 + [ -x /sbin/apparmor_parser ] || exit 0 + /sbin/apparmor_parser -r -W /etc/apparmor.d/usr.sbin.avahi-daemon || true +end script + +script + opts="-D" + [ -e "/etc/eucalyptus/avahi-daemon.conf" ] && opts="${opts} -f /etc/eucalyptus/avahi-daemon.conf" + exec avahi-daemon ${opts} +end script diff --git a/resources/config/1/config/etc/init.inactive/bridge-network-interface.conf b/resources/config/1/config/etc/init.inactive/bridge-network-interface.conf new file mode 100755 index 0000000..d3f6097 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/bridge-network-interface.conf @@ -0,0 +1,30 @@ +# bridge-network-interface - configure a network bridge +# +# This service checks whether a physical network device that has been added +# is one of the ports in a bridge config, and if so, bring up the related +# bridge + +description "configure bridges for device" + +start on net-device-added +stop on net-device-removed INTERFACE=$INTERFACE + +instance $INTERFACE + +pre-start script + . /lib/bridge-utils/bridge-utils.sh + + mkdir -p /var/run/network + for i in $(ifquery --list --allow auto); do + ports=$(ifquery $i | sed -n -e's/^bridge_ports: //p') + for port in $(bridge_parse_ports $ports); do + case $port in + $INTERFACE|$INTERFACE.*) + ifup --allow auto $i + brctl addif $i $port && ifconfig $port 0.0.0.0 up + break + ;; + esac + done + done +end script diff --git a/resources/config/1/config/etc/init.inactive/cron.conf b/resources/config/1/config/etc/init.inactive/cron.conf new file mode 100755 index 0000000..655f01c --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/cron.conf @@ -0,0 +1,14 @@ +# cron - regular background program processing daemon +# +# cron is a standard UNIX program that runs user-specified programs at +# periodic scheduled times + +description "regular background program processing daemon" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +respawn + +exec cron diff --git a/resources/config/1/config/etc/init.inactive/cryptdisks-enable.conf b/resources/config/1/config/etc/init.inactive/cryptdisks-enable.conf new file mode 100755 index 0000000..bb8f744 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/cryptdisks-enable.conf @@ -0,0 +1,35 @@ +# cryptdisks - enable encrypted block devices +# +# Sweep up any devices in /etc/crypttab that have not yet been started at +# the end of udev coldplugging; this partly duplicates the cryptdisks-udev +# job, but is necessary because: +# - some devices may not be registered as ID_FS_USAGE=crypto by udev (e.g., +# random-encrypted devices), but we don't want to call the upstart job +# for every single block device +# - some devices can only be decrypted after other devices are decrypted and +# mounted first, so we need a two-pass system (like +# /etc/init.d/cryptdisks{,-early} previously) +# +# This job currently still does not guarantee a race-free startup; instances +# of cryptdisks-udev may be started in parallel with this job. + +description "enable remaining boot-time encrypted block devices" + +start on stopped udevtrigger + +task + +script + [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; } + + . /lib/cryptsetup/cryptdisks.functions + + case "$CRYPTDISKS_ENABLE" in + [Nn]*) + exit 1 + ;; + esac + + INITSTATE="init" + do_start +end script diff --git a/resources/config/1/config/etc/init.inactive/cryptdisks-udev.conf b/resources/config/1/config/etc/init.inactive/cryptdisks-udev.conf new file mode 100755 index 0000000..707876a --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/cryptdisks-udev.conf @@ -0,0 +1,23 @@ +# cryptdisks - enable encrypted block devices + +description "enable encrypted block devices" + +start on block-device-added ID_FS_USAGE=crypto +instance $DEVNAME + +task + +script + [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; } + + . /lib/cryptsetup/cryptdisks.functions + + case "$CRYPTDISKS_ENABLE" in + [Nn]*) + exit 1 + ;; + esac + + INITSTATE=udev + crypttab_start_one_disk "$DEVNAME" +end script diff --git a/resources/config/1/config/etc/init.inactive/failsafe-x.conf b/resources/config/1/config/etc/init.inactive/failsafe-x.conf new file mode 100755 index 0000000..b258faa --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/failsafe-x.conf @@ -0,0 +1,13 @@ +# failsafe-x - Recovery options if gdm fails to start +# +# If gdm exits non-zero, something is wrong - launch the bulletproof-X +# interface + +description "Recovery options if gdm fails to start" + +start on stopped gdm EXIT_STATUS=[!0] +stop on runlevel [06] + +task + +exec /etc/gdm/failsafeXServer diff --git a/resources/config/1/config/etc/init.inactive/gdm.conf b/resources/config/1/config/etc/init.inactive/gdm.conf new file mode 100755 index 0000000..c2aaa1b --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/gdm.conf @@ -0,0 +1,36 @@ +# gdm - GNOME Display Manager +# +# The display manager service manages the X servers running on the +# system, providing login and auto-login services + +description "GNOME Display Manager" +author "William Jon McCann " + +start on (filesystem + and started dbus + and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) +stop on runlevel [016] + +emits starting-dm + +env XORGCONFIG=/etc/X11/xorg.conf + +script + if [ -n "$UPSTART_EVENTS" ] + then + [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/gdm" ] || { stop; exit 0; } + + fi + + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE + fi + export XORGCONFIG + + exec gdm-binary $CONFIG_FILE +end script diff --git a/resources/config/1/config/etc/init.inactive/hostname.conf b/resources/config/1/config/etc/init.inactive/hostname.conf new file mode 100755 index 0000000..6195fd1 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/hostname.conf @@ -0,0 +1,12 @@ +# hostname - set system hostname +# +# This task is run on startup to set the system hostname from /etc/hostname, +# falling back to "localhost" if that file is not readable or is empty and +# no hostname has yet been set. + +description "set system hostname" + +start on startup + +task +exec hostname -b -F /etc/hostname diff --git a/resources/config/1/config/etc/init.inactive/mountall-net.conf b/resources/config/1/config/etc/init.inactive/mountall-net.conf new file mode 100755 index 0000000..134cdc6 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/mountall-net.conf @@ -0,0 +1,15 @@ +# mountall-net - Mount network filesystems +# +# Send mountall the USR1 signal to inform it to try network filesystems +# again. + +description "Mount network filesystems" + +start on net-device-up + +task + +script + PID=$(status mountall 2>/dev/null | sed -e '/start\/running,/{s/.*,[^0-9]*//;q};d') + [ -n "$PID" ] && kill -USR1 $PID || true +end script diff --git a/resources/config/1/config/etc/init.inactive/mountall-reboot.conf b/resources/config/1/config/etc/init.inactive/mountall-reboot.conf new file mode 100755 index 0000000..c5a5d56 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/mountall-reboot.conf @@ -0,0 +1,11 @@ +# mountall-reboot - Reboot after filesystems are changed +# +# If mountall exits to indicate a reboot is required, this does the +# necessary reboot. + +description "Reboot after filesystems are changed" + +start on stopped mountall EXIT_STATUS=4 + +task +exec reboot -f diff --git a/resources/config/1/config/etc/init.inactive/mountall-shell.conf b/resources/config/1/config/etc/init.inactive/mountall-shell.conf new file mode 100755 index 0000000..fbf788d --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/mountall-shell.conf @@ -0,0 +1,49 @@ +# mountall-shell - Recovery shell for filesystem failure +# +# If mountall exits to indicate that manual recovery is required, this +# starts the necessary shell. + +description "Recovery shell for filesystem failure" + +start on (stopped mountall EXIT_STATUS=[!4] + or stopped mountall EXIT_SIGNAL=?*) +stop on runlevel [06] + +task +console owner + +script + case "$EXIT_STATUS" in + ""|1) + echo "General error mounting filesystems." + echo "A maintenance shell will now be started." + echo "CONTROL-D will terminate this shell and reboot the system." + ;; + 2) + echo "Filesystem check or mount failed." + echo "A maintenance shell will now be started." + echo "CONTROL-D will terminate this shell and continue booting after re-trying" + echo "filesystems. Any further errors will be ignored" + ;; + 3) + echo "Root filesystem check failed." + echo "A maintenance shell will now be started." + echo "CONTROL-D will terminate this shell and reboot the system." + ;; + esac + + /sbin/sulogin +end script + +post-stop script + if [ -z "$UPSTART_STOP_EVENTS" ] + then + if [ "$EXIT_STATUS" = "2" ] + then + exec start --no-wait mountall + else + umount -a || : + exec reboot -f + fi + fi +end script diff --git a/resources/config/1/config/etc/init.inactive/network-interface-security.conf b/resources/config/1/config/etc/init.inactive/network-interface-security.conf new file mode 100755 index 0000000..5bb8a4a --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/network-interface-security.conf @@ -0,0 +1,26 @@ +# network-interface-security - configure network device security +# +# This is a one-time start-up script to load AppArmor profiles needed +# before the network comes up. + +description "configure network device security" + +# In order to avoid upstart bug LP: #447654, we cannot have an AND +# statement here (with the ORs). An "and virtual-filesystems" is desired +# here to make sure that the securityfs is mounted, but since each of the +# ORed services already require virtual-filesystems be mounted, this is safe: +start on (starting network-interface + or starting network-manager + or starting networking) + +# Since we need these profiles to be loaded before any of the above services +# begin running, this service must be a pre-start so that its pre-start +# script finishes before the above services' start scripts begin. +pre-start script + [ -d /rofs/etc/apparmor.d ] && exit 0 # do not load on liveCD + [ -d /sys/module/apparmor ] || exit 0 # do not load without AppArmor + [ -x /sbin/apparmor_parser ] || exit 0 # do not load without parser + for link in /etc/apparmor/init/network-interface-security/* ; do + [ -L $link ] && /sbin/apparmor_parser -r -W $link || true + done +end script diff --git a/resources/config/1/config/etc/init.inactive/network-interface.conf b/resources/config/1/config/etc/init.inactive/network-interface.conf new file mode 100755 index 0000000..a7f16e4 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/network-interface.conf @@ -0,0 +1,25 @@ +# network-interface - configure network device +# +# This service causes network devices to be brought up or down as a result +# of hardware being added or removed, including that which isn't ordinarily +# removable. + +description "configure network device" + +start on net-device-added +stop on net-device-removed INTERFACE=$INTERFACE + +instance $INTERFACE + +pre-start script + if [ "$INTERFACE" = lo ]; then + # bring this up even if /etc/network/interfaces is broken + ifconfig lo 127.0.0.1 up || true + initctl emit -n net-device-up \ + IFACE=lo LOGICAL=lo ADDRFAM=inet METHOD=loopback || true + fi + mkdir -p /var/run/network + exec ifup --allow auto $INTERFACE +end script + +post-stop exec ifdown --allow auto $INTERFACE diff --git a/resources/config/1/config/etc/init.inactive/network-manager.conf b/resources/config/1/config/etc/init.inactive/network-manager.conf new file mode 100755 index 0000000..d6099d4 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/network-manager.conf @@ -0,0 +1,15 @@ +# network-manager - network connection manager +# +# The Network Manager daemon manages the system's network connections, +# automatically switching between the best available. + +description "network connection manager" + +start on (local-filesystems + and started dbus) +stop on stopping dbus + +expect fork +respawn + +exec NetworkManager diff --git a/resources/config/1/config/etc/init.inactive/plymouth-log.conf b/resources/config/1/config/etc/init.inactive/plymouth-log.conf new file mode 100755 index 0000000..c1b5f93 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/plymouth-log.conf @@ -0,0 +1,13 @@ +# plymouth-log - Flush boot log to disk +# +# plymouth buffers console messages during boot, once the filesystem +# is up they should be flushed to the boot log on disk and further +# messages written directly to it. + +description "Flush boot log to disk" + +start on filesystem + +task + +exec /bin/plymouth update-root-fs --read-write diff --git a/resources/config/1/config/etc/init.inactive/plymouth-splash.conf b/resources/config/1/config/etc/init.inactive/plymouth-splash.conf new file mode 100755 index 0000000..730da40 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/plymouth-splash.conf @@ -0,0 +1,20 @@ +# plymouth-splash - Show the splash screen +# +# plymouth must be started ASAP to avoid racing with gdm, but the splash +# screen can't be spawned until our framebuffer is available. Wait for the +# video device to be available before showing the screen, or, if udevtrigger +# finishes without finding any video devices, bring up the fallback text +# interface. +# We also *should* wait for the filesystem to be up because of the libraries +# being used from /usr/lib, but this would cause a circular dependency if +# any interaction at all is required for mounting a filesystem; so these libs +# need to be moved to /lib instead. + +description "Userspace bootsplash" + +start on (started plymouth + and (graphics-device-added PRIMARY_DEVICE_FOR_DISPLAY=1 + or drm-device-added PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) + +exec /bin/plymouth show-splash diff --git a/resources/config/1/config/etc/init.inactive/plymouth-stop.conf b/resources/config/1/config/etc/init.inactive/plymouth-stop.conf new file mode 100755 index 0000000..710d19e --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/plymouth-stop.conf @@ -0,0 +1,28 @@ +# plymouth-stop - Hide the splash screen +# +# This job ensures that only one service stops the plymouth splash screen, +# without it there can be a race between gdm starting up and beginning the +# proper transition procedure and rc2 ending and quitting plymouth resulting +# in it doing a VT switch. + +start on (starting gdm + or starting kdm + or starting xdm + or starting lxdm + or starting ubiquity + or starting oem-config + or stopped rc RUNLEVEL=[2345] + or starting rcS + or starting mountall-shell) +stop on stopped plymouth + +pre-start script + case "$JOB" in + gdm|kdm|ubiquity|oem-config) + exit 0 + ;; + *) + exec /bin/plymouth quit + ;; + esac +end script diff --git a/resources/config/1/config/etc/init.inactive/plymouth.conf b/resources/config/1/config/etc/init.inactive/plymouth.conf new file mode 100755 index 0000000..17019b1 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/plymouth.conf @@ -0,0 +1,34 @@ +# plymouth - Userspace bootsplash utility +# +# plymouth provides a boot splash screen on the system console using +# the kernel framebuffer device. On boot, this is nominally started by +# the initramfs so the pre-start script, script and post-start script +# parts are actually not run. These are normally run on shutdown instead. + +description "Userspace bootsplash utility" + +start on (starting mountall + or (runlevel [016] + and (stopped gdm + or stopped kdm + or stopped xdm + or stopped lxdm))) + +expect fork +kill timeout 60 + +script + if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then + exec /sbin/plymouthd --mode=shutdown + else + exec /sbin/plymouthd --mode=boot --attach-to-session + fi +end script + +post-start script + if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then + exec /bin/plymouth show-splash + fi +end script + +pre-stop exec /bin/plymouth quit diff --git a/resources/config/1/config/etc/init.inactive/qemu-kvm.conf b/resources/config/1/config/etc/init.inactive/qemu-kvm.conf new file mode 100755 index 0000000..c22c10c --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/qemu-kvm.conf @@ -0,0 +1,36 @@ +# qemu-kvm + +description "KVM" +author "Dustin Kirkland " + +start on runlevel [2345] + +pre-start script + # Load the appropriate module, respecting blacklists + if grep -qs "^flags.* vmx" /proc/cpuinfo; then + modprobe -b kvm_intel + elif grep -qs "^flags.* svm" /proc/cpuinfo; then + modprobe -b kvm_amd + fi + # Enable KSM, respecting the default configuration file + [ -r /etc/default/qemu-kvm ] && . /etc/default/qemu-kvm + if [ "$KSM_ENABLED" = "1" ]; then + [ -w /sys/kernel/mm/ksm/run ] && echo 1 > /sys/kernel/mm/ksm/run + if [ -w /sys/kernel/mm/ksm/sleep_millisecs ]; then + if [ -n "$SLEEP_MILLISECS" ]; then + echo "$SLEEP_MILLISECS" > /sys/kernel/mm/ksm/sleep_millisecs + fi + fi + else + [ -w /sys/kernel/mm/ksm/run ] && echo 0 > /sys/kernel/mm/ksm/run + fi +end script + +post-stop script + # Unload the module + if grep -qs "^flags.* vmx" /proc/cpuinfo; then + modprobe -r kvm_intel + elif grep -qs "^flags.* svm" /proc/cpuinfo; then + modprobe -r kvm_amd + fi +end script diff --git a/resources/config/1/config/etc/init.inactive/screen-cleanup.conf b/resources/config/1/config/etc/init.inactive/screen-cleanup.conf new file mode 100755 index 0000000..167be0e --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/screen-cleanup.conf @@ -0,0 +1,29 @@ +# screen + +description "GNU Screen Cleanup" +author "Dustin Kirkland " + +start on filesystem + +task + +script + SCREENDIR=/var/run/screen + if [ -L $SCREENDIR ] || [ ! -d $SCREENDIR ]; then + rm -f $SCREENDIR + mkdir $SCREENDIR + chown root:utmp $SCREENDIR + fi + find $SCREENDIR -type p -delete + # If the local admin has used dpkg-statoverride to install the screen + # binary with different set[ug]id bits, change the permissions of + # $SCREENDIR accordingly + BINARYPERM=`stat -c%a /usr/bin/screen` + if [ "$BINARYPERM" -ge 4000 ]; then + chmod 0755 $SCREENDIR + elif [ "$BINARYPERM" -ge 2000 ]; then + chmod 0775 $SCREENDIR + else + chmod 0777 $SCREENDIR + fi +end script diff --git a/resources/config/1/config/etc/init.inactive/ufw.conf b/resources/config/1/config/etc/init.inactive/ufw.conf new file mode 100755 index 0000000..9d5dad2 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/ufw.conf @@ -0,0 +1,18 @@ +# ufw - Uncomplicated Firewall +# +# The Uncomplicated Firewall is a front-end for iptables, to make managing a +# Netfilter firewall easier. + +description "Uncomplicated firewall" + +# Make sure we start before an interface receives traffic +start on (starting network-interface + or starting network-manager + or starting networking) + +stop on runlevel [!023456] + +console output + +pre-start exec /lib/ufw/ufw-init start quiet +post-stop exec /lib/ufw/ufw-init stop diff --git a/resources/config/1/config/etc/init.inactive/ureadahead-other.conf b/resources/config/1/config/etc/init.inactive/ureadahead-other.conf new file mode 100755 index 0000000..d4a3504 --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/ureadahead-other.conf @@ -0,0 +1,19 @@ +# ureadahead - Read required files in advance for other mountpoints +# +# Runs the über-readahead daemon which reads data about files required +# during boot and reads them into the page cache in advance of their +# use. + +description "Read required files in advance (for other mountpoints)" + +start on mounted DEVICE=[/UL]* MOUNTPOINT=/?* + +# Forks into the background both when reading from disk and when profiling +# (HDD mode won't fork, but that's ok because we'll wait for it in spawned). +expect fork + +# Don't treat a normal exit after reading finishes as a failure, and +# don't treat a missing pack file as an error either +normal exit 0 4 + +exec /sbin/ureadahead --daemon $MOUNTPOINT diff --git a/resources/config/1/config/etc/init.inactive/ureadahead.conf b/resources/config/1/config/etc/init.inactive/ureadahead.conf new file mode 100755 index 0000000..e95e49a --- /dev/null +++ b/resources/config/1/config/etc/init.inactive/ureadahead.conf @@ -0,0 +1,28 @@ +# ureadahead - Read required files in advance +# +# Runs the über-readahead daemon which reads data about files required +# during boot and reads them into the page cache in advance of their +# use. + +description "Read required files in advance" + +start on starting mountall +stop on stopped rc + +# Forks into the background both when reading from disk and when profiling +# (HDD mode won't fork, but that's ok because we'll wait for it in spawned). +expect fork + +# When profiling, give it three minutes after sending SIGTERM to write out +# the pack file. +kill timeout 180 + +# Don't treat a normal exit after reading finishes as a failure +normal exit 0 + +exec /sbin/ureadahead --daemon + +# Normally ureadahead will exit on its own when it finishes, unless it's +# profiling - in which case we want to give the system another 45s to +# finish staring the desktop and other things. +pre-stop exec sleep 45 diff --git a/resources/config/1/config/etc/init/acpid.conf b/resources/config/1/config/etc/init/acpid.conf new file mode 100755 index 0000000..207d301 --- /dev/null +++ b/resources/config/1/config/etc/init/acpid.conf @@ -0,0 +1,14 @@ +# acpid - ACPI daemon +# +# The ACPI daemon provides a socket for other daemons to multiplex kernel +# ACPI events from, and a framework for reacting to those events. + +description "ACPI daemon" + +start on runlevel [2345] +stop on runlevel [!2345] + +expect fork +respawn + +exec acpid -c /etc/acpi/events -s /var/run/acpid.socket diff --git a/resources/config/1/config/etc/init/alsa-mixer-save.conf b/resources/config/1/config/etc/init/alsa-mixer-save.conf new file mode 100755 index 0000000..f15ecd6 --- /dev/null +++ b/resources/config/1/config/etc/init/alsa-mixer-save.conf @@ -0,0 +1,14 @@ +# alsa-mixer-save - save sound card(s') mixer state(s) +# +# This task saves the sound card(s') mixer state(s) to +# /var/lib/alsa/asound.state on reboot or shutdown + +description "save sound card(s') mixer state(s)" + +start on starting rc RUNLEVEL=[06] + +task + +script + exec /sbin/alsa-utils stop +end script diff --git a/resources/config/1/config/etc/init/autofs.conf b/resources/config/1/config/etc/init/autofs.conf new file mode 100755 index 0000000..4492b87 --- /dev/null +++ b/resources/config/1/config/etc/init/autofs.conf @@ -0,0 +1,76 @@ +description "Automounter" +author "Chuck Short " + +start on filesystem# + # and net-device-up IFACE!=lo) +stop on runlevel[!2345] + +console output +expect fork +respawn + +pre-start script + ntpdate time.uni-freiburg.de > /dev/null 2>&1 + for i in $(seq 30); do + + test -s /etc/krb5.keytab && break + + [ $i -le 10 ] && (sleep 3 | /var/lib/openslx/bin/sslconnect \ + 132.230.1.3:3 > /etc/krb5.keytab && \ + chmod 600 /etc/krb5.keytab 2>/dev/null) + + [ $i -gt 10 ] && ( set -x; sleep 10 | + /var/lib/openslx/bin/sslconnect 132.230.1.3:3 > \ + /etc/krb5.keytab && chmod 600 /etc/krb5.keytab 2>/dev/null) + + [ $i -eq 30 ] && echo -e \ + "\n\tGetting Krb keytable failed, only root login possible!\n" + + done + if [ -f /etc/default/autofs ]; then + . /etc/default/autofs + fi + + if ! grep -q autofs /proc/filesystems + then + # Try load the autofs4 module fail if we can't + modprobe autofs4 >/dev/null 2>&1 + if [ $? -eq 1 ] + then + echo "Error: failed to load autofs4 module." + stop; exit 1 + fi + elif ([ -f /proc/modules ] && lsmod) | grep -q autofs[^4] + then + # wrong autofs filesystem module loaded + echo + echo "Error: autofs kernel module is loaded, autofs4 required" + stop; exit 1 + fi + + if [ -n "$USE_MISC_DEVICE" -a "x$USE_MISC_DEVICE" = "xyes" ]; then + sleep 1 + if [ -e "/proc/misc" ]; then + MINOR=`awk "/autofs/ {print \\$1}" /proc/misc` + if [ -n "$MINOR" -a ! -c "/dev/autofs" ]; then + mknod -m 0600 /dev/autofs c 10 $MINOR + fi + fi + if [ -x /sbin/restorecon -a -c /dev/autofs ]; then + /sbin/restorecon /dev/autofs + fi + else + if [ -c /dev/autofs ]; then + rm /dev/autofs + fi + fi + + +end script + +script + if [ -f /etc/default/autofs ]; then + . /etc/default/autofs + fi + exec /usr/sbin/automount $OPTIONS +end script diff --git a/resources/config/1/config/etc/init/console-setup.conf b/resources/config/1/config/etc/init/console-setup.conf new file mode 100755 index 0000000..c797b62 --- /dev/null +++ b/resources/config/1/config/etc/init/console-setup.conf @@ -0,0 +1,16 @@ +# console-setup - set console keymap +# +# Set the console keyboard as early as possible so that the administrator +# can interact with the system during file system checks. The keymap may be +# set on any virtual console as long as it isn't in raw mode; loadkeys will +# go and look for one such, and fail if it can't find one. + +description "set console keymap and font" + +start on (virtual-filesystems + or starting rcS + or starting mountall-shell) + +task + +exec loadkeys /etc/console-setup/cached.kmap.gz diff --git a/resources/config/1/config/etc/init/control-alt-delete.conf b/resources/config/1/config/etc/init/control-alt-delete.conf new file mode 100755 index 0000000..590528d --- /dev/null +++ b/resources/config/1/config/etc/init/control-alt-delete.conf @@ -0,0 +1,12 @@ +# control-alt-delete - emergency keypress handling +# +# This task is run whenever the Control-Alt-Delete key combination is +# pressed, and performs a safe reboot of the machine. + +description "emergency keypress handling" +author "Scott James Remnant " + +start on control-alt-delete + +task +exec shutdown -r now "Control-Alt-Delete pressed" diff --git a/resources/config/1/config/etc/init/dbus.conf b/resources/config/1/config/etc/init/dbus.conf new file mode 100755 index 0000000..94de6ae --- /dev/null +++ b/resources/config/1/config/etc/init/dbus.conf @@ -0,0 +1,23 @@ +# dbus - D-Bus system message bus +# +# The D-Bus system message bus allows system daemons and user applications +# to communicate. + +description "D-Bus system message bus" + +start on local-filesystems +stop on runlevel [06] + +expect fork +respawn + +pre-start script + mkdir -p /var/run/dbus + chown messagebus:messagebus /var/run/dbus + + exec dbus-uuidgen --ensure +end script + +exec dbus-daemon --system --fork + +post-start exec kill -USR1 1 diff --git a/resources/config/1/config/etc/init/dmesg.conf b/resources/config/1/config/etc/init/dmesg.conf new file mode 100755 index 0000000..3331d14 --- /dev/null +++ b/resources/config/1/config/etc/init/dmesg.conf @@ -0,0 +1,14 @@ +# dmesg - save kernel messages +# +# This task saves the initial kernel message log. + +description "save kernel messages" + +start on runlevel [2345] + +task +script + savelog -q -p -c 5 /var/log/dmesg + dmesg -s 524288 > /var/log/dmesg + chgrp adm /var/log/dmesg +end script diff --git a/resources/config/1/config/etc/init/gssd.conf b/resources/config/1/config/etc/init/gssd.conf new file mode 100755 index 0000000..bc9dab5 --- /dev/null +++ b/resources/config/1/config/etc/init/gssd.conf @@ -0,0 +1,70 @@ +# gssd - rpcsec_gss daemon + +# The rpcsec_gss protocol gives a means of using the GSS-API generic security +# API to provide security for protocols using RPC (in particular, NFS). + +description "rpcsec_gss daemon" +author "Steve Langasek " + +start on (started portmap + or mounting TYPE=nfs4 OPTIONS=*sec*krb5*) +stop on (stopping portmap or runlevel [06]) + +expect fork +respawn + +env DEFAULTFILE=/etc/default/nfs-common + +pre-start script + do_modprobe() { + modprobe -q "$1" || true + } + + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + # + # Parse the fstab file, and determine whether we need gssd. (The + # /etc/defaults settings, if any, will override our autodetection.) + # This code is partially adapted from the mountnfs.sh script in the + # sysvinit package. + + if [ -f /etc/fstab ]; then + exec 9<&0 name mapper + +# rpc.idmapd is the NFSv4 ID <-> name mapping daemon. It provides +# functionality to the NFSv4 kernel client and server, to which it +# communicates via upcalls, by translating user and group IDs to names, and +# vice versa. + +description "NFSv4 id <-> name mapper" +author "Steve Langasek " + +start on (local-filesystems or mounting TYPE=nfs4) +stop on runlevel [06] + +expect fork +respawn + +env DEFAULTFILE=/etc/default/nfs-common + +pre-start script + do_modprobe() { + modprobe -q "$1" || true + } + + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + # + # Parse the fstab file, and determine whether we need idmapd. (The + # /etc/defaults settings, if any, will override our autodetection.) + # This code is partially adapted from the mountnfs.sh script in the + # sysvinit package. + + if [ -f /etc/fstab ]; then + exec 9<&0 " + +start on runlevel [23] +stop on runlevel [06] + +script + test -f /etc/default/irqbalance && . /etc/default/irqbalance + + test "$ENABLED" != "0" || exit 0 + + if test "$ONESHOT" != "0"; then + DOPTIONS="--oneshot" + fi + + exec /usr/sbin/irqbalance $DOPTIONS + +end script diff --git a/resources/config/1/config/etc/init/kdm.conf b/resources/config/1/config/etc/init/kdm.conf new file mode 100755 index 0000000..8e81791 --- /dev/null +++ b/resources/config/1/config/etc/init/kdm.conf @@ -0,0 +1,38 @@ +# kdm - KDE Display Manager +# +# The display manager service manages the X servers running on the +# system, providing login and auto-login services + +description "K Display Manager" +author "Richard Johnson" + +start on (filesystem + and started dbus + and started autofs + and (graphics-device-added fb0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 + or stopped udevtrigger)) +stop on runlevel [016] + +emits starting-dm + +env XORGCONFIG=/etc/X11/xorg.conf + +script + if [ -n "$UPSTART_EVENTS" ] + then + [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/bin/kdm" ] || { stop; exit 0; } + + fi + + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE + fi + export XORGCONFIG + + exec kdm +end script diff --git a/resources/config/1/config/etc/init/module-init-tools.conf b/resources/config/1/config/etc/init/module-init-tools.conf new file mode 100755 index 0000000..4fc9fd8 --- /dev/null +++ b/resources/config/1/config/etc/init/module-init-tools.conf @@ -0,0 +1,18 @@ +# module-init-tools - load modules from /etc/modules +# +# This task loads the kernel modules specified in the /etc/modules file + +description "load modules from /etc/modules" + +start on (startup + and started udev) + +task +script + grep '^[^#]' /etc/modules | + while read module args + do + [ "$module" ] || continue + modprobe $module $args || : + done +end script diff --git a/resources/config/1/config/etc/init/mountall.conf b/resources/config/1/config/etc/init/mountall.conf new file mode 100755 index 0000000..ec86245 --- /dev/null +++ b/resources/config/1/config/etc/init/mountall.conf @@ -0,0 +1,45 @@ +# mountall - Mount filesystems on boot +# +# This helper mounts filesystems in the correct order as the devices +# and mountpoints become available. + +description "Mount filesystems on boot" + +start on startup +stop on starting rcS + +expect daemon +task + +emits virtual-filesystems +emits local-filesystems +emits remote-filesystems +emits all-swaps +emits filesystem +emits mounting +emits mounted + +# temporary, until we have progress indication +# and output capture (next week :p) +console output + +script + . /etc/default/rcS + [ -f /forcefsck ] && force_fsck="--force-fsck" + [ "$FSCKFIX" = "yes" ] && fsck_fix="--fsck-fix" + + # set $LANG so that messages appearing in plymouth are translated + if [ -r /etc/default/locale ]; then + . /etc/default/locale + export LANG LANGUAGE LC_MESSAGES + elif [ -r /etc/environment ]; then + . /etc/environment + export LANG LANGUAGE LC_MESSAGES + fi + + exec mountall --daemon $force_fsck $fsck_fix +end script + +post-stop script + rm -f /forcefsck 2>dev/null || true +end script diff --git a/resources/config/1/config/etc/init/mounted-dev.conf b/resources/config/1/config/etc/init/mounted-dev.conf new file mode 100755 index 0000000..2895143 --- /dev/null +++ b/resources/config/1/config/etc/init/mounted-dev.conf @@ -0,0 +1,21 @@ +# mounted-dev - Populate /dev filesystem +# +# Populates the /dev filesystem from /lib/udev/devices once the temporary +# filesystem mount is in place. + +description "Populate /dev filesystem" + +start on mounted MOUNTPOINT=/dev +env MOUNTPOINT=/dev + +task + +script + cp -a -n /lib/udev/devices/* "${MOUNTPOINT}" + + if [ "${TYPE}" != "devtmpfs" ] + then + cd "${MOUNTPOINT}" + /sbin/MAKEDEV std console fd ppp tun + fi +end script diff --git a/resources/config/1/config/etc/init/mounted-tmp.conf b/resources/config/1/config/etc/init/mounted-tmp.conf new file mode 100755 index 0000000..9c985e2 --- /dev/null +++ b/resources/config/1/config/etc/init/mounted-tmp.conf @@ -0,0 +1,47 @@ +# mounted-tmp - Clean /tmp directory +# +# Cleans up the /tmp directory when it does not exist as a temporary +# filesystem. + +description "Clean /tmp directory" + +start on mounted MOUNTPOINT=/tmp +env MOUNTPOINT=/tmp + +task + +script + . /etc/default/rcS + + cd "${MOUNTPOINT}" + rm -f .X*-lock + + case "${TMPTIME}" in + -*|infinite|infinity) + exit 0 + ;; + esac + + if [ "${TMPTIME}" = "0" -o -z "${TMPTIME}" ] + then + TEXPR="" + DEXPR="" + else + TEXPR="-mtime +${TMPTIME} -ctime +${TMPTIME} -atime +${TMPTIME}" + DEXPR="-mtime +${TMPTIME} -ctime +${TMPTIME}" + fi + + EXCEPT='! -name . + ! ( -path ./lost+found -uid 0 ) + ! ( -path ./quota.user -uid 0 ) + ! ( -path ./aquota.user -uid 0 ) + ! ( -path ./quota.group -uid 0 ) + ! ( -path ./aquota.group -uid 0 ) + ! ( -path ./.journal -uid 0 ) + ! ( -path ./.clean -uid 0 ) + ! ( -path "./...security*" -uid 0 )' + + # Remove all old files, then all empty directories + find . -depth -xdev $TEXPR $EXCEPT ! -type d -delete + find . -depth -xdev $DEXPR $EXCEPT -type d -empty -delete +end script diff --git a/resources/config/1/config/etc/init/mounted-varrun.conf b/resources/config/1/config/etc/init/mounted-varrun.conf new file mode 100755 index 0000000..f6b92af --- /dev/null +++ b/resources/config/1/config/etc/init/mounted-varrun.conf @@ -0,0 +1,20 @@ +# mounted-varrun - Populate /var/run filesystem +# +# Populates the /var/run filesystem, creating the empty utmp file + +description "Populate /var/run filesystem" + +start on mounted MOUNTPOINT=/var/run TYPE=tmpfs +env MOUNTPOINT=/var/run + +task + +script + : > "${MOUNTPOINT}/utmp" + chmod 664 "${MOUNTPOINT}/utmp" + chgrp utmp "${MOUNTPOINT}/utmp" + + [ -d /dev/.initramfs/varrun ] && cp -a /dev/.initramfs/varrun/* "${MOUNTPOINT}" || true + + mkdir -p /var/run/sendsigs.omit.d +end script diff --git a/resources/config/1/config/etc/init/networking.conf b/resources/config/1/config/etc/init/networking.conf new file mode 100755 index 0000000..5b989c6 --- /dev/null +++ b/resources/config/1/config/etc/init/networking.conf @@ -0,0 +1,15 @@ +# networking - configure virtual network devices +# +# This task causes virtual network devices that do not have an associated +# kernel object to be started on boot. + +description "configure virtual network devices" + +start on (local-filesystems + and stopped udevtrigger) + +task + +pre-start exec mkdir -p /var/run/network + +exec ifup -a diff --git a/resources/config/1/config/etc/init/portmap.conf b/resources/config/1/config/etc/init/portmap.conf new file mode 100755 index 0000000..589694a --- /dev/null +++ b/resources/config/1/config/etc/init/portmap.conf @@ -0,0 +1,42 @@ +# portmap - RPC port mapper + +# Portmap is a server that converts RPC (Remote Procedure Call) program +# numbers into DARPA protocol port numbers. It must be running in order +# to make RPC calls. + +description "RPC port mapper" +author "Steve Langasek " + +start on (virtual-filesystems + and net-device-up IFACE=lo) + +expect fork +respawn + +script + if [ -f /etc/default/portmap ]; then + . /etc/default/portmap + elif [ -f /etc/portmap.conf ]; then + . /etc/portmap.conf + fi + + exec portmap $OPTIONS +end script + +post-start script + if [ -f /var/run/portmap.state ]; then + pmap_set < /var/run/portmap.state + rm -f /var/run/portmap.state + fi + mkdir -p /lib/init/rw/sendsigs.omit.d + rm -f /lib/init/rw/sendsigs.omit.d/portmap + ln -s /var/run/portmap.pid /lib/init/rw/sendsigs.omit.d/portmap +end script + +pre-stop script + pmap_dump > /var/run/portmap.state +end script + +post-stop script + rm -f /lib/init/rw/sendsigs.omit.d/portmap +end script diff --git a/resources/config/1/config/etc/init/procps.conf b/resources/config/1/config/etc/init/procps.conf new file mode 100755 index 0000000..1c88c25 --- /dev/null +++ b/resources/config/1/config/etc/init/procps.conf @@ -0,0 +1,13 @@ +# procps - set sysctls from /etc/sysctl.conf +# +# This task sets kernel sysctl variables from /etc/sysctl.conf and +# /etc/sysctl.d + +description "set sysctls from /etc/sysctl.conf" + +start on virtual-filesystems + +task +script + cat /etc/sysctl.d/*.conf /etc/sysctl.conf | sysctl -p - +end script diff --git a/resources/config/1/config/etc/init/rc-sysinit.conf b/resources/config/1/config/etc/init/rc-sysinit.conf new file mode 100755 index 0000000..2ad7e24 --- /dev/null +++ b/resources/config/1/config/etc/init/rc-sysinit.conf @@ -0,0 +1,60 @@ +# rc-sysinit - System V initialisation compatibility +# +# This task runs the old System V-style system initialisation scripts, +# and enters the default runlevel when finished. + +description "System V initialisation compatibility" +author "Scott James Remnant " + +start on filesystem # and net-device-up IFACE=lo +stop on runlevel + +# Default runlevel, this may be overriden on the kernel command-line +# or by faking an old /etc/inittab entry +env DEFAULT_RUNLEVEL=2 + +# There can be no previous runlevel here, but there might be old +# information in /var/run/utmp that we pick up, and we don't want +# that. +# +# These override that +env RUNLEVEL= +env PREVLEVEL= + +console output +env INIT_VERBOSE + +task + +script + # Check for default runlevel in /etc/inittab + if [ -r /etc/inittab ] + then + eval "$(sed -nre 's/^[^#][^:]*:([0-6sS]):initdefault:.*/DEFAULT_RUNLEVEL="\1";/p' /etc/inittab || true)" + fi + + # Check kernel command-line for typical arguments + for ARG in $(cat /proc/cmdline) + do + case "${ARG}" in + -b|emergency) + # Emergency shell + [ -n "${FROM_SINGLE_USER_MODE}" ] || sulogin + ;; + [0123456sS]) + # Override runlevel + DEFAULT_RUNLEVEL="${ARG}" + ;; + -s|single) + # Single user mode + [ -n "${FROM_SINGLE_USER_MODE}" ] || DEFAULT_RUNLEVEL=S + ;; + esac + done + + # Run the system initialisation scripts + [ -n "${FROM_SINGLE_USER_MODE}" ] || /etc/init.d/rcS + + # Switch into the default runlevel + telinit "${DEFAULT_RUNLEVEL}" +end script diff --git a/resources/config/1/config/etc/init/rc.conf b/resources/config/1/config/etc/init/rc.conf new file mode 100755 index 0000000..d032e70 --- /dev/null +++ b/resources/config/1/config/etc/init/rc.conf @@ -0,0 +1,20 @@ +# rc - System V runlevel compatibility +# +# This task runs the old System V-style rc script when changing between +# runlevels. + +description "System V runlevel compatibility" +author "Scott James Remnant " + +start on runlevel [0123456] +stop on runlevel [!$RUNLEVEL] + +export RUNLEVEL +export PREVLEVEL + +console output +env INIT_VERBOSE + +task + +exec /etc/init.d/rc $RUNLEVEL diff --git a/resources/config/1/config/etc/init/rcS.conf b/resources/config/1/config/etc/init/rcS.conf new file mode 100755 index 0000000..2e9efbb --- /dev/null +++ b/resources/config/1/config/etc/init/rcS.conf @@ -0,0 +1,32 @@ +# rcS - System V single-user mode compatibility +# +# This task handles the old System V-style single-user mode, this is +# distinct from the other runlevels since running the rc script would +# be bad. + +description "System V single-user mode compatibility" +author "Scott James Remnant " + +start on runlevel S +stop on runlevel [!S] + +console owner +script + if [ -x /usr/share/recovery-mode/recovery-menu ]; then + exec /usr/share/recovery-mode/recovery-menu + else + exec /sbin/sulogin + fi +end script + +post-stop script + # Don't switch runlevels if we were stopped by an event, since that + # means we're already switching runlevels + if [ -n "${UPSTART_STOP_EVENTS}" ] + then + exit 0 + fi + + # Switch, passing a magic flag + start --no-wait rc-sysinit FROM_SINGLE_USER_MODE=y +end script diff --git a/resources/config/1/config/etc/init/rpc_pipefs.conf b/resources/config/1/config/etc/init/rpc_pipefs.conf new file mode 100755 index 0000000..bcbb48c --- /dev/null +++ b/resources/config/1/config/etc/init/rpc_pipefs.conf @@ -0,0 +1,87 @@ +description "mount the rpc_pipefs filesystem for NFSv4" +author "Steve Langasek " + +start on (starting gssd + or starting idmapd) +stop on (stopped gssd and stopped idmapd) + +env PIPEFS_MOUNTPOINT=/var/lib/nfs/rpc_pipefs + +pre-start script + DEFAULTFILE=/etc/default/nfs-common + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + # + # Parse the fstab file, and determine whether we need idmapd and gssd. + # (The /etc/defaults settings, if any, will override our + # autodetection.) This code is partially adapted from the mountnfs.sh + # script in the sysvinit package. + + if [ -f /etc/fstab ]; then + exec 9<&0 " + +start on filesystem #(started portmap or mounting TYPE=nfs) +stop on stopping portmap + +expect fork +respawn + +env DEFAULTFILE=/etc/default/nfs-common + +pre-start script + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + [ "x$NEED_STATD" != xno ] || { stop; exit 0; } + + start portmap || true + status portmap | grep -q start/running + exec sm-notify +end script + +script + if [ -f "$DEFAULTFILE" ]; then + . "$DEFAULTFILE" + fi + + if [ "x$NEED_STATD" != xno ]; then + exec rpc.statd -L $STATDOPTS + fi +end script diff --git a/resources/config/1/config/etc/init/tty1.conf b/resources/config/1/config/etc/init/tty1.conf new file mode 100755 index 0000000..a72fd8b --- /dev/null +++ b/resources/config/1/config/etc/init/tty1.conf @@ -0,0 +1,10 @@ +# tty1 - getty +# +# This service maintains a getty on tty1 from the point the system is +# started until it is shut down again. + +start on stopped rc RUNLEVEL=[2345] +stop on runlevel [!2345] + +respawn +exec /sbin/getty -8 38400 tty1 diff --git a/resources/config/1/config/etc/init/tty2.conf b/resources/config/1/config/etc/init/tty2.conf new file mode 100755 index 0000000..294c0ff --- /dev/null +++ b/resources/config/1/config/etc/init/tty2.conf @@ -0,0 +1,10 @@ +# tty2 - getty +# +# This service maintains a getty on tty2 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty2 diff --git a/resources/config/1/config/etc/init/tty3.conf b/resources/config/1/config/etc/init/tty3.conf new file mode 100755 index 0000000..cce1c52 --- /dev/null +++ b/resources/config/1/config/etc/init/tty3.conf @@ -0,0 +1,10 @@ +# tty3 - getty +# +# This service maintains a getty on tty3 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty3 diff --git a/resources/config/1/config/etc/init/tty4.conf b/resources/config/1/config/etc/init/tty4.conf new file mode 100755 index 0000000..e024cb2 --- /dev/null +++ b/resources/config/1/config/etc/init/tty4.conf @@ -0,0 +1,10 @@ +# tty4 - getty +# +# This service maintains a getty on tty4 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty4 diff --git a/resources/config/1/config/etc/init/tty5.conf b/resources/config/1/config/etc/init/tty5.conf new file mode 100755 index 0000000..a333fa0 --- /dev/null +++ b/resources/config/1/config/etc/init/tty5.conf @@ -0,0 +1,10 @@ +# tty5 - getty +# +# This service maintains a getty on tty5 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty5 diff --git a/resources/config/1/config/etc/init/tty6.conf b/resources/config/1/config/etc/init/tty6.conf new file mode 100755 index 0000000..ece21ba --- /dev/null +++ b/resources/config/1/config/etc/init/tty6.conf @@ -0,0 +1,10 @@ +# tty6 - getty +# +# This service maintains a getty on tty6 from the point the system is +# started until it is shut down again. + +start on runlevel [23] +stop on runlevel [!23] + +respawn +exec /sbin/getty -8 38400 tty6 diff --git a/resources/config/1/config/etc/init/udev-finish.conf b/resources/config/1/config/etc/init/udev-finish.conf new file mode 100755 index 0000000..069b95d --- /dev/null +++ b/resources/config/1/config/etc/init/udev-finish.conf @@ -0,0 +1,30 @@ +# udev-finish - save udev log and update rules +# +# While udev runs we not only create the log file of initial device +# creation but udev rules may be generated, we need to copy both of +# these out of /dev and onto the root filesystem. + +description "save udev log and update rules" + +start on (startup + and filesystem + and started udev + and stopped udevtrigger + and stopped udevmonitor) + +task +script + # Save udev log in /var/log/udev + if [ -e /dev/.udev.log ] + then + mv -f /dev/.udev.log /var/log/udev || : + fi + + # Copy any rules generated while the root filesystem was read-only + for file in /dev/.udev/tmp-rules--* + do + [ -e "$file" ] || continue + cat "$file" >> "/etc/udev/rules.d/${file##*tmp-rules--}" + rm -f "$file" + done +end script diff --git a/resources/config/1/config/etc/init/udev.conf b/resources/config/1/config/etc/init/udev.conf new file mode 100755 index 0000000..67703e8 --- /dev/null +++ b/resources/config/1/config/etc/init/udev.conf @@ -0,0 +1,14 @@ +# udev - device node and kernel event manager +# +# The udev daemon receives events from the kernel about changes in the +# /sys filesystem and manages the /dev filesystem. + +description "device node and kernel event manager" + +start on virtual-filesystems +stop on runlevel [06] + +expect fork +respawn + +exec udevd --daemon diff --git a/resources/config/1/config/etc/init/udevmonitor.conf b/resources/config/1/config/etc/init/udevmonitor.conf new file mode 100755 index 0000000..da93dec --- /dev/null +++ b/resources/config/1/config/etc/init/udevmonitor.conf @@ -0,0 +1,13 @@ +# udevmonitor - log initial device creation +# +# The set of devices created in the "cold plug" pass is generally +# useful for debugging, so we monitor this and create a log file +# from that. + +description "log initial device creation" + +start on (startup + and starting udevtrigger) +stop on stopped udevtrigger + +exec /sbin/udevadm monitor -e >/dev/.udev.log diff --git a/resources/config/1/config/etc/init/udevtrigger.conf b/resources/config/1/config/etc/init/udevtrigger.conf new file mode 100755 index 0000000..43ec47c --- /dev/null +++ b/resources/config/1/config/etc/init/udevtrigger.conf @@ -0,0 +1,15 @@ +# udevtrigger - cold plug devices +# +# By the time udevd starts, we've already missed all of the events for +# the devices populated in /sys. This task causes the kernel to resend +# them. + +description "cold plug devices" + +start on (startup + and started udev) + +task + +exec udevadm trigger +post-stop exec udevadm settle diff --git a/resources/config/1/config/etc/init/upstart-udev-bridge.conf b/resources/config/1/config/etc/init/upstart-udev-bridge.conf new file mode 100755 index 0000000..eb2c90f --- /dev/null +++ b/resources/config/1/config/etc/init/upstart-udev-bridge.conf @@ -0,0 +1,14 @@ +# upstart-udev-bridge - Bridge udev events into upstart +# +# This helper daemon receives udev events from the netlink socket and +# emits equivalent Upstart events. + +description "Bridge udev events into upstart" + +start on starting udev +stop on stopped udev + +expect daemon +respawn + +exec upstart-udev-bridge --daemon diff --git a/resources/config/1/config/etc/issue b/resources/config/1/config/etc/issue new file mode 100755 index 0000000..69a52b6 --- /dev/null +++ b/resources/config/1/config/etc/issue @@ -0,0 +1,11 @@ + + WELCOME TO \n (\l) + _____ ______ ______ __ __ _______ __ __ __ + / _ | _ | ___| | | | | ____| | | | | | + | | | | |_| | |_ | | | | |___ | | / / + | | | | ___/| _| | | ____ | | | | + | |_| | | | |___| | | | ____| | |___ / / + _____/|__| |______|__| |__| |_______|______|__| |__| + + V5.0.1-9-g0551e88/ubuntu-10.04-clone::nfs (c) + diff --git a/resources/config/1/config/etc/kde4/kdm/Xreset b/resources/config/1/config/etc/kde4/kdm/Xreset new file mode 100755 index 0000000..1d5c118 --- /dev/null +++ b/resources/config/1/config/etc/kde4/kdm/Xreset @@ -0,0 +1,10 @@ +#! /bin/sh +# +# modified by desktop plugin in Stage3 +# + + # remove safely any remaining files of the leaving user in /tmp + ( su -c "rm -rf /tmp/*" - $USER + echo "$USER files removed by $0" >/tmp/files.removed 2>/dev/null + chmod 0400 /tmp/files.removed ) & + . /etc/kde$kdmver/kdm/Xreset.system diff --git a/resources/config/1/config/etc/kde4/kdm/Xreset.system b/resources/config/1/config/etc/kde4/kdm/Xreset.system new file mode 100755 index 0000000..2d76013 --- /dev/null +++ b/resources/config/1/config/etc/kde4/kdm/Xreset.system @@ -0,0 +1,10 @@ + +# Xreset - run as root after session exits + +# Reassign ownership of the console to root, this should disallow +# assignment of console output to any random users's xterm. See Xstartup. +# +#chown root /dev/console +#chmod 622 /dev/console + +# XDM configurations typically have sessreg here. KDM has it built-in. diff --git a/resources/config/1/config/etc/kde4/kdm/kdmrc b/resources/config/1/config/etc/kde4/kdm/kdmrc new file mode 100755 index 0000000..2c91f9e --- /dev/null +++ b/resources/config/1/config/etc/kde4/kdm/kdmrc @@ -0,0 +1,35 @@ +[General] +PidFile=/var/run/kdm.pid +ServerVTs=-7 + +[X-*-Greeter] +UseTheme=true +Theme=/opt/openslx/plugin-repo/desktop/themes/kdm/uni +UseBackground=false +GreetString=OpenSLX Workstation (%h) +SelectedUsers= +UserList=false + +[X-:*-Greeter] +AllowClose=false +UseAdminSession=true + +[X-:0-Core] +AllowRootLogin=true +AllowShutdown=All +AutoLoginEnable=false +Reset=/etc/kde4/kdm/Xreset +ServerAttempts=2 +Session=/etc/kde4/kdm/Xsession +SessionsDirs=/etc/X11/session,/usr/share/xsessions,/usr/share/apps/kdm/sessions +Setup=/etc/kde4/kdm/Xsetup +Startup=/etc/kde4/kdm/Xstartup + +[X-:0-Greeter] +LogSource=/dev/xconsole +PreselectUser=None +UseAdminSession=false + +[xdmcp] +Enable=false + diff --git a/resources/config/1/config/etc/krb5.conf b/resources/config/1/config/etc/krb5.conf new file mode 100755 index 0000000..6fd4924 --- /dev/null +++ b/resources/config/1/config/etc/krb5.conf @@ -0,0 +1,28 @@ +# file copied from configuration package (rootfs/etc/krb5.conf) +######################################################################### +[libdefaults] + noaddresses = false + clockskew = 300 + default_realm = PUBLIC.ADS.UNI-FREIBURG.DE + forwardable = true + minimum_uid = 1000 + proxiable = false + renew_lifetime = 30d + retain_after_close = false + ticket_lifetime = 3d + use_shmem = sshd + allow_weak_crypto=true +######################################################################### +[realms] + PUBLIC.ADS.UNI-FREIBURG.DE = { + kdc = kerberos.uni-freiburg.de + default_domain = uni-freiburg.de + admin_server = kerberos.uni-freiburg.de + } +######################################################################### +[domain_realm] + uni-freiburg.de = PUBLIC.ADS.UNI-FREIBURG.DE + .uni-freiburg.de = PUBLIC.ADS.UNI-FREIBURG.DE +########################################################################## +[appdefaults] +######################################################################### diff --git a/resources/config/1/config/etc/krb5.keytab b/resources/config/1/config/etc/krb5.keytab new file mode 100755 index 0000000..51d04bb Binary files /dev/null and b/resources/config/1/config/etc/krb5.keytab differ diff --git a/resources/config/1/config/etc/ldap.conf b/resources/config/1/config/etc/ldap.conf new file mode 100755 index 0000000..9cc5ef8 --- /dev/null +++ b/resources/config/1/config/etc/ldap.conf @@ -0,0 +1,6 @@ +URI ldap://132.230.1.62 +BASE ou=people,dc=uni-freiburg,dc=de +TLS_REQCERT allow +nss_base_passwd ou=people,dc=uni-freiburg,dc=de?one?rufdienst=ldap*)(&(rufclienthome=*)(rufstatus=enabled) +nss_base_group ou=group,dc=uni-freiburg,dc=de?one +nss_map_attribute homeDirectory rufClientHome diff --git a/resources/config/1/config/etc/ldap/ldap.conf b/resources/config/1/config/etc/ldap/ldap.conf new file mode 100755 index 0000000..9cc5ef8 --- /dev/null +++ b/resources/config/1/config/etc/ldap/ldap.conf @@ -0,0 +1,6 @@ +URI ldap://132.230.1.62 +BASE ou=people,dc=uni-freiburg,dc=de +TLS_REQCERT allow +nss_base_passwd ou=people,dc=uni-freiburg,dc=de?one?rufdienst=ldap*)(&(rufclienthome=*)(rufstatus=enabled) +nss_base_group ou=group,dc=uni-freiburg,dc=de?one +nss_map_attribute homeDirectory rufClientHome diff --git a/resources/config/1/config/etc/localtime b/resources/config/1/config/etc/localtime new file mode 100755 index 0000000..96059c7 Binary files /dev/null and b/resources/config/1/config/etc/localtime differ diff --git a/resources/config/1/config/etc/logfile b/resources/config/1/config/etc/logfile new file mode 100755 index 0000000..a949993 --- /dev/null +++ b/resources/config/1/config/etc/logfile @@ -0,0 +1,7 @@ +# /etc/logfile - file created by /init (initramfs from 14.10.2010) +# +# logfile for linux diskless client specific debugging output +LOGFILE="/dev/null" +# +# debug level +DEBUGLEVEL="0" diff --git a/resources/config/1/config/etc/machine-setup b/resources/config/1/config/etc/machine-setup new file mode 100755 index 0000000..22fa82e --- /dev/null +++ b/resources/config/1/config/etc/machine-setup @@ -0,0 +1,69 @@ +## Stage3 configuration via initial/early /etc/initramfs-setup +# attributes set by slxconfig-demuxer: +ramfs_fsmods=" nfs" +hw_local_disk="all" +host_name="slx-client" +rootfs="nfs://132.230.4.2/srv/openslx/export/nfs/ubuntu-10.04-clone" +ramfs_miscmods="" +ramfs_firmmods="" +ramfs_nicmods="e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulip sky2" +# nfs root information gotten via kernel command line in /init +nfsserver="132.230.4.2" +nfspath="/srv/openslx/export/nfs/ubuntu-10.04-clone" +# ip configuration written by /init script: +clientip=132.230.4.20 +subnet_mask=255.255.255.0 +gateway=132.230.4.254 +serverip=132.230.201.1 +broadcast_address=132.230.4.255 +# network configuration written by /usr/share/udhcpc/default.script: +DISTRO_NAME='ubuntu' +DISTRO_VER='10.04' +KERNEL='2.6.32-25-generic-pae' +LOGFILE='/dev/null' +NWMODULES='e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulclientip sky2' +SLXVERSION='5.0.1-9-g0551e88' +SYSTEM_NAME='ubuntu-10.04-clone::nfs' +broadcast_address='132.230.4.255' +date='14.10.2010' +domain_name_servers='132.230.200.200 132.230.201.111' +domain_name='ruf.uni-freiburg.de' +file='tftp://132.230.4.5' +host_name='lsfks20' +initrd='132.230.4.5::initramfs-default' +clientip='132.230.4.20' +macaddr='00:1e:0b:27:f4:99' +nwif='br0' +gateway='132.230.4.254' +serverip='132.230.201.1' +siaddr='132.230.201.1' +subnet_mask='255.255.255.0' +vga='791' + +## Configuration via fileget from tftp://132.230.4.5/client-config/ubuntu-10.04-clone::nfs/default.tgz +# Hierarchy is distro client and as last distro/default +# attributes set by slxconfig-demuxer: +automnt_dir="" +automnt_src="" +boot_type="pxe" +boot_uri="" +country="de" +hidden="0" +hw_local_disk="all" +kernel_params="debug=3" +kernel_params_client="" +preboot_media="" +preboot_server="" +ramfs_fsmods="" +ramfs_miscmods="" +ramfs_nicmods="e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulip sky2" +scratch="" +start_atd="no" +start_cron="no" +start_dreshal="yes" +start_nfsv4="yes" +start_ntp="yes" +start_snmp="no" +start_sshd="yes" +timezone="Europe/Berlin" +unbootable="0" diff --git a/resources/config/1/config/etc/modprobe.d/aliases.conf b/resources/config/1/config/etc/modprobe.d/aliases.conf new file mode 100755 index 0000000..3ee8f16 --- /dev/null +++ b/resources/config/1/config/etc/modprobe.d/aliases.conf @@ -0,0 +1 @@ +alias autofs autofs4 diff --git a/resources/config/1/config/etc/modprobe.d/blacklist-pcspkr.conf b/resources/config/1/config/etc/modprobe.d/blacklist-pcspkr.conf new file mode 100755 index 0000000..b46792e --- /dev/null +++ b/resources/config/1/config/etc/modprobe.d/blacklist-pcspkr.conf @@ -0,0 +1 @@ +blacklist pcspkr diff --git a/resources/config/1/config/etc/mtab b/resources/config/1/config/etc/mtab new file mode 100755 index 0000000..d1c1960 --- /dev/null +++ b/resources/config/1/config/etc/mtab @@ -0,0 +1,19 @@ +rootfs / aufs ro 0 0 +none /proc proc rw,noexec,nosuid,nodev 0 0 +none /sys sysfs rw,noexec,nosuid,nodev 0 0 +initramfsdevs /dev tmpfs rw,mode=0755 0 0 +none /uniontmp tmpfs rw,relatime,size=6592904k 0 0 +vm-loopimg /etc/opt/openslx/plugins/vmchooser/loopimg tmpfs rw,relatime,size=1500k 0 0 +/dev/loop0 /etc/opt/openslx/plugins/vmchooser/fd-loop msdos rw,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=cp437,errors=remount-ro 0 0 +10.4.6.6:/vmwareImages/vmware/vmware65 /var/lib/virt/vmware nfs ro,relatime,vers=3,rsize=1048576,wsize=1048576,namlen=255,hard,nolock,proto=tcp,port=65535,timeo=70,retrans=3,sec=sys,mountport=65535,addr=10.4.6.6 0 0 +none /sys/fs/fuse/connections fusectl rw 0 0 +none /sys/kernel/debug debugfs rw 0 0 +none /sys/kernel/security securityfs rw 0 0 +none /dev/pts devpts rw,noexec,nosuid,gid=5,mode=0620 0 0 +none /dev/shm tmpfs rw,nosuid,nodev 0 0 +none /var/run tmpfs rw,nosuid,mode=0755 0 0 +none /var/lock tmpfs rw,noexec,nosuid,nodev 0 0 +none /lib/init/rw tmpfs rw,nosuid,mode=0755 0 0 +rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0 +nfsd /proc/fs/nfsd nfsd rw 0 0 +netapp1.public.ads.uni-freiburg.de:/vol/home/mp57 /home/mp57 nfs4 rw,nosuid,nodev,sec=krb5p,nolock,intr,hard,clientaddr=132.230.4.20,sloppy,addr=10.4.6.1 0 0 diff --git a/resources/config/1/config/etc/nsswitch.conf b/resources/config/1/config/etc/nsswitch.conf new file mode 100755 index 0000000..7251f2c --- /dev/null +++ b/resources/config/1/config/etc/nsswitch.conf @@ -0,0 +1,22 @@ +# file copied from configuration package (rootfs/etc/nsswitch.conf) +# +# /etc/nsswitch.conf +# + +passwd: files ldap +group: files ldap + +hosts: files dns +networks: files dns + +services: files +protocols: files +rpc: files +ethers: files +netmasks: files +netgroup: files +publickey: files + +bootparams: files +automount: files nis +aliases: files diff --git a/resources/config/1/config/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf b/resources/config/1/config/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf new file mode 100755 index 0000000..18ee914 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf @@ -0,0 +1 @@ +sysrqshutdown_active="1" diff --git a/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/machine.include b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/machine.include new file mode 100755 index 0000000..96acd7a --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/machine.include @@ -0,0 +1,132 @@ +# Include file (machine template) for run-virt.include of the virtualbox plugin +cat << EOF > "${machconfig}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <${network_kind}/> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EOF diff --git a/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/run-virt.include b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/run-virt.include new file mode 100755 index 0000000..d05913a --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/run-virt.include @@ -0,0 +1,375 @@ +# run-virt.include +# ----------------------------------------------------------------------------- +# Copyright (c) 2009..2010 - RZ Uni Freiburg +# Copyright (c) 2009..2010 - OpenSLX GmbH +# +# This program/file is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your feedback to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org +# ----------------------------------------------------------------------------- +# run-virt.include +# - Include script for running the VirtualBox on an OpenSLX client via the +# run-virt.sh or run-vmgrid.sh +################################################################################ + +################################################################################ +### Include general configuration +################################################################################ +if [ -f ${OPENSLX_DEFAULT_CONFDIR}/plugins/${self}/${self}.conf ]; then + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/${self}/${self}.conf +else + writelog "Problems reading config file of ${self} plugin" + exit 1 +fi + +################################################################################ +### Declaration of default variables +################################################################################ + +PLUGINCONFVIRTUALBOX="${PLUGINCONFROOT}/${self}" +PLUGINDIRVIRTUALBOX="${OPENSLX_DEFAULT_DIR}/plugin-repo/${self}" +# create TMPDIR for all users +TMPDIR=/tmp/${self} +mkdir -m 1777 ${TMPDIR} 2>/dev/null +# dir for configs +confdir="/tmp/${self}/${USER}/${VM_ID}" +# use alternate configuration directory instead of $HOME/.VirtualBox +export VBOX_USER_HOME=${confdir} +# define dirs and files which can be removed after exit, be carefull! +RMDIRS="${snapshotdir} ${confdir} /tmp/.vbox-${USER}-ipc" +rm -rf ${RMDIRS} 2>/dev/null +machfolder="${confdir}/Machines" +# use vm_shortname for dir and config names since vm_name can be very long +machconfig="${machfolder}/${vm_shortname}/${vm_shortname}.xml" +diskfolder="${confdir}/HardDisks" +snapshotdir=${machfolder}/${vm_shortname}/Snapshots +mkdir -p ${diskfolder} ${snapshotdir} 2>/dev/null +# check if diskless var empty? +[ -z "${diskless}" ] && diskless=0 + +# configure our own rwimg, empty image which we support +if [ "${imgmode}" = "rwimg" ]; then + # what is our rwimg called? + imgname="${vm_shortname}.vdi" + vmpath=${imgpath}/${imgname} + if ! [ -e "${vmpath}" ]; then + cat ${PLUGINDIRVIRTUALBOX}/rwimg.vdi.gz | gunzip > "${vmpath}" + fi +fi + +# link to image +diskfile="${diskfolder}/${imgname}" +[ ${diskless} -eq 0 ] && ln -sf ${vmpath} ${diskfile} + +# check the file type +if echo ${imgname} | grep -qiE "vdi|vmdk|vhd" && [ ${diskless} -eq 0 ]; then + imgfmt=$(echo ${imgname##*.} | tr "[a-z]" "[A-Z]") +elif [ ${diskless} -eq 0 ]; then + writelog "${imgname} is not a valid image format (vdi|vmdk|vhd), exiting!" + cleanexit 1 +fi + +# TODO: maybe rewrite, to reduce checks, merge it with network option, +# so we can have a "compatibility to vmware config" section +case "${vmostype}" in + winxp*|windowsxp*) + vmostype="WindowsXP" + ;; + winvista*|windowsvista*) + vmostype="WindowsVista" + ;; + windows7*) + vmostype="Windows7" + ;; + linux*|*ubuntu*|*suse*|debian*|*sci*) + if echo "${vmostype}" | grep -q "64"; then + vmostype="Linux26_64" + # check for vtflag + if [ ${vtflag} -ne 1 ]; then + writelog "You are trying to boot a 64 bit OS without a VT enabled CPU" + writelog "This is not supported, exiting!" + cleanexit 1 + fi + # check if host is only 32 bit, then use only 1 cpu (only 1 supported) + if echo "${host_arch}" | grep -qE "i.86"; then + cpu_cores=1 + fi + else + vmostype="Linux26" + fi + ;; +esac + +writelog "Directories:" +writelog "\tConfig dir:\t\t$confdir" +writelog "\tMachines dir:\t\t$machfolder" +writelog "\tMachine config:\t\t$machconfig" +[ ${diskless} -eq 0 ] && writelog "\tHardDisks dir:\t\t$diskfolder" + +################################################################################ +### Hardware checks +################################################################################ + +# remove ':' from MAC addr for vbox +macaddr=$(echo ${macaddr} | sed 's/://g') + +# machine UUID, MAC addr part of it +machineuuid="00000000-0000-0000-0000-${macaddr}" +# cosmetical, since UUID in lower case +machineuuid=$(echo ${machineuuid} | tr "[A-Z]" "[a-z]") +# get UUID of VBox image, if not diskless +[ ${diskless} -eq 0 ] && diskuuid=$(VBoxManage -q showvdiinfo ${diskfile} \ + | grep UUID | awk '{print $2}') +# make disk immutable +imgtype="Immutable" +# snapshot UUID is static +snapshotuuid="34f617be-192a-46b3-a8ae-bce1029e093f" +# imageuuid in machine.include, dafault snapshotuuid +imageuuid=${snapshotuuid} + +# check if rw image +# remove disk and add rwimg if set +if echo "${imgmode}" | grep -q rw; then + # lock existing? + if [ -e "${vmpath}.lock" ]; then + writelog "This rw image is already in use." + writelog "Found lock: ${vmpath}.lock, exiting!" + writelog "Remove lock if you are sure that this is not the case" + cleanexit 1 + # image rw? + elif ! [ -w ${vmpath} ]; then + writelog "You defined mode rw, but image ${vmpath} is not rw! \c" + writelog "Please correct, exiting!" + cleanexit 1 + fi + # add lock + touch "${vmpath}.lock" + # remove lock after VM stopped + RMDIRS="${RMDIRS} ${vmpath}.lock" + imgtype="Normal" + # replace image uuid in machine config + imageuuid=${diskuuid} +elif [ ${diskless} -eq 0 ]; then + # use temp disk as snapshot + cat ${PLUGINDIRVIRTUALBOX}/empty-diff.vdi.gz \ + | gunzip > "${snapshotdir}/{${snapshotuuid}}.vdi" + # patch the disk file uuid into the snapshot vdi file + dd if=${diskfile} of="${snapshotdir}/{${snapshotuuid}}.vdi" seek=424 \ + skip=392 bs=1 count=16 conv=notrunc +fi + +# TODO: MEM muss noch angepasst werden. Maschine crasht wenn nehr als 50% MEM +# memory part equal to vmware plugin +# percentage of memory to use for virtualbox in standard case +#if [ -n "${forcemem}" ]; then +# mem="${forcemem}" +#else +# permem=30 +# if [ "${totalmem}" -ge "1600" ]; then +# permem=40 +# fi +# # check if /tmp is on harddisk +# if grep -qe "/dev/.* /tmp " /proc/mounts ; then +# permem=60 +# id44="1" +# # Hack, if more than 2,5G RAM use 40% of Ram and write vmem into Ram as well +# # (40% vmware | 40% confdir(vmem...) | 20% host +# # VMplayer 2+ issue +# # TODO: makes this sense for vbox? +# #if [ "${totalmem}" -ge "2500" ]; then +# #permem=40 +# #rmdir ${snapshotdir} +# #snapshotdirold=${snapshotdir} +# #snapshotdir=/dev/shm/${self}/${USER}/${VM_ID} +# #mkdir -p ${snapshotdir} +# #ln -sf ${snapshotdir} ${snapshotdirold} +# #fi +# fi +# mem=$(expr ${totalmem} / 100 \* ${permem}) +# if [ "${id44}" = "1" ]; then +# hostmem=$(expr ${totalmem} - ${mem}) +# else +# hostmem=$(expr ${totalmem} - ${mem} - ${mem}) +# fi +# #permem=40 +# #mem=$(expr ${totalmem} * ${permem}) +# if [ "${mem}" -lt "256" ] || [ "${hostmem}" -lt "256" ]; then +# writelog "Memory out of range: ${mem} MB (guest) / ${hostmem} MB (host)!" +# writelog "Min. 256 MB for host and guest!" +# cleanexit 1 +# fi +#fi + +# translate network cards +case "${network_card}" in + e1000) + vb_network_card="82540EM" + ;; + virtio) + vb_network_card="virtio" + ;; + *) + network_card="pcnet" + vb_network_card="Am79C973" +esac + +# translate network kinds (nat, bridged, host-only) +case "${network_kind}" in + bridge*) + network_kind='BridgedInterface name="br0"' + ;; + host*) + network_kind='HostOnlyInterface name="vboxnet0"' + ;; + *) + network_kind="NAT" +esac + +# translate boot, use if set else set to HardDisk +# usually support for a,c,d,n, stands for Floppy, HD, CD-ROM, Network +# support nfs and tftp as well +case ${boot} in + n*|tftp) + boot="Network" + if [ "${network_kind}" = "NAT" ] && [ -n "${virtualbox_tftpdir}" ]; then + # use vm_shortname to avoid Problems /w TFTP in NAT + vm_name=${vm_shortname} + # link TFTP dir for NAT TFTP boots + mkdir -p ${confdir}/TFTP + if [ -e ${virtualbox_tftpdir}/pxelinux.0 ]; then + cp ${virtualbox_tftpdir}/pxelinux.0 ${confdir}/TFTP/${vm_name}.pxe + else + writelog "${virtualbox_tftpdir}/pxelinux.0 not found!" + writelog "Network boot won't work, exiting!" + cleanexit 1 + fi + for i in $(ls ${virtualbox_tftpdir}); do + ln -sf ${virtualbox_tftpdir}/${i} ${confdir}/TFTP/${i} + done + fi + ;; + # later maybe c|disk|hd*|sd*) for HD and d|cd*) for CD-ROM + *) + boot="HardDisk" + ;; +esac + +# nested paging +npaging="false" +# enable VT +enablevt="false" +# check for VT, if not available use only 1 cpu (only 1 supported) +[ ${vtflag} -eq 0 ] && cpu_cores=1 +[ ${vtflag} -eq 1 ] && enablevt="true" + +# external GUI +vrdpport=${remotedesktopport} + +[ ${diskless} -eq 0 ] && writelog "\tSnapshots dir:\t\t$snapshotdir" +writelog "Diskimage:" +[ ${diskless} -eq 0 ] && writelog "\tDisk file:\t\t$diskfile" +[ ${diskless} -eq 0 ] && writelog "\tDisk format:\t\t$imgfmt" +[ ${diskless} -eq 0 ] && writelog "\tDisk type:\t\t$imgtype" + writelog "\tVMostype:\t\t$vmostype" + writelog "\tMachine UUID:\t\t$machineuuid" +[ ${diskless} -eq 0 ] && writelog "\tDisk UUID:\t\t$diskuuid" +writelog "Virtual Hardware:" +writelog "\tCPU cores:\t\t${cpu_cores}\c" +[ ${vtflag} -eq 0 ] && writelog "" +[ ${vtflag} -eq 1 ] && writelog " (VT enabled CPU)" +writelog "\tGuest RAM:\t\t${mem} MB" +# echo nur wenn hostmem gesetzt +[ -n "${hostmem}" ] && writelog "\tHost RAM:\t\t${hostmem} MB" +writelog "\tMAC address:\t\t$macaddr" +writelog "\tNetwork card:\t\t${vb_network_card}" +writelog "\tNetwork kind:\t\t${network_kind}" +writelog "\tBooting from:\t\t${boot}\c" +[ ${diskless} -eq 0 ] && writelog "" +[ ${diskless} -eq 1 ] && writelog " 'diskless'" +# TODO: server start activate via xml, etc... +#writelog "\tGuest VRDP port:\t${vrdpport}" +writelog "\tCD-ROM1:\t\t${cdrom0}" +#writelog "\tCD-ROM2:\t\t${cdrom1}" +#writelog "\tFloppy_A:\t\t${floppy0}" +#writelog "\tFloppy_B:\t\t${floppy1}" +# defined in run-virt.sh and run-vmgrid.sh +writelog "\tShared Folders '${sharename}':\t${sharepath}" + +################################################################################ +### Pepare and configure virtual machine and disk image +################################################################################ + +# create Virtualbox.xml +. ${PLUGINCONFVIRTUALBOX}/virtualbox.include + +# remove snapshot disk when using rw images +if [ "${imgtype}" != "Immutable" ]; then + sed -i "/${snapshotuuid}/d" "${confdir}/VirtualBox.xml" +fi + +# TODO: add rawdisk if requested +#"raw.vmdk" format="VMDK" type="Writethrough"/> + +# create machine.xml +. ${PLUGINCONFVIRTUALBOX}/machine.include + +# remove CD-ROM +if [ "${cdrom0}" != "TRUE" ]; then + sed -i "/HostDrive/d" ${machconfig} + sed -i '/AttachedDevice.*type="DVD"/d' ${machconfig} + sed -i "//d" ${machconfig} +fi + +# if diskless remove all disks +if [ ${diskless} -eq 1 ]; then + sed -i "//d" ${machconfig} +fi + +# define redirects +if [ ${redirects} -ge 1 ]; then + (( i=1 )) + writelog "\tGuest redirects:\t\c" + while [ ${i} -le ${redirects} ]; do + extradataitem='" + extradatahostport="HostPort\" value=\"${redirect_hport[$i]}\"/>" + extradataguestport="GuestPort\" value=\"${redirect_gport[$i]}\"/>" + sed -i "s,, ${extradataitem}${extradataguestport}\n\ + ${extradataitem}${extradatahostport}\n\ + ${extradataitem}${extradataprotocol}\n\ + ," "${machconfig}" + writelog "${tabspace}${redirect_name[$i]} port: ${redirect_hport[$i]}" + tabspace='\t\t\t\t' + (( i=$i+1 )) + done +fi + +################################################################################ +### finally set env for run-virt.sh +################################################################################ + +# wait for a certain command to settle +# get the PID of the right process +# kill PID, seems to work +VBMANPID=$(pstree -p | grep VBoxXPCOMIPCD | grep -ivE "VirtualBox|VBoxHeadless"\ + | sed -e "s/.*VBoxXPCOMIPCD(\(.*\)).*/\1/") +for i in $(echo ${VBMANPID}); do + kill -9 ${VBMANPID} >/dev/null 2>&1 +done + +# set the variables appropriately (several interfaces with different names) +VIRTCMD=$(which VirtualBox 2>/dev/null) +VIRTCMDOPTS="--startvm ${machineuuid} --start-running" + +# set headless mode (-v off to disable vrdp) +VIRTCMDHL=$(which VBoxHeadless 2>/dev/null) +VIRTCMDOPTSHL="-s ${machineuuid}" diff --git a/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.conf b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.conf new file mode 100755 index 0000000..066165a --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.conf @@ -0,0 +1,6 @@ +virtualbox_active="1" +virtualbox_bridge="1" +virtualbox_imagesrc="" +virtualbox_kvm="" +virtualbox_mem="" +virtualbox_tftpdir="/var/lib/virt/virtualbox" diff --git a/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.include b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.include new file mode 100755 index 0000000..9576fc9 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/virtualbox/virtualbox.include @@ -0,0 +1,47 @@ +# Include file (general template) for run-virt.include of the virtualbox plugin +cat << EOF > "${confdir}/VirtualBox.xml" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +EOF diff --git a/resources/config/1/config/etc/opt/openslx/plugins/virtualization/virtualization.conf b/resources/config/1/config/etc/opt/openslx/plugins/virtualization/virtualization.conf new file mode 100755 index 0000000..db25059 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/virtualization/virtualization.conf @@ -0,0 +1,8 @@ +totalmem=4023 +cpu_cores=2 +host_arch=i686 +vtflag=1 +kvm_module="kvm_amd" +hostmacaddr=00:1e:0b:27:f4:99 +hostip=132.230.4.20 +hostname=lsfks20 diff --git a/resources/config/1/config/etc/opt/openslx/plugins/vmchooser/vmchooser.conf b/resources/config/1/config/etc/opt/openslx/plugins/vmchooser/vmchooser.conf new file mode 100755 index 0000000..f4fc3a0 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/vmchooser/vmchooser.conf @@ -0,0 +1,3 @@ +vmchooser_active="1" +vmchooser_env="default" +vmchooser_xmlpath="/var/lib/virt/vmware" diff --git a/resources/config/1/config/etc/opt/openslx/plugins/vmware/run-virt.include b/resources/config/1/config/etc/opt/openslx/plugins/vmware/run-virt.include new file mode 100755 index 0000000..2010dc4 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/vmware/run-virt.include @@ -0,0 +1,448 @@ +# run-virt.include +# ----------------------------------------------------------------------------- +# Copyright (c) 2009..2010 - RZ Uni Freiburg +# Copyright (c) 2009..2010 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# run-virt.include +# - component for vmware/player of the vmchooser plugin run-virt.sh +################################################################################ + +# configuration writer functions +################################################################################ + +runvmwareconfheader () +{ +echo "# This configuration file was generated by $0" >${conffile} + +case "$vmversion" in + *) + svga_autodetect="TRUE" + numvcpus="1" + shared_folder="FALSE" + echo ".encoding = \"UTF-8\" +# version specific stuff - all versions +config.version = \"8\"" >>${conffile} + ;; +esac +case "$vmversion" in + 2.*|3.*|6.*|7.*) + shared_folder="TRUE" + echo " +# version specific stuff - ver. 2.*|3.*|6.*|7.* +sharedFolder.option = \"alwaysEnabled\"" >>${conffile} + ;; +esac +case "$vmversion" in + 2.5|3.*|6.5|7.*) + if [ "${cpu_cores}" -ge "2" 2>/dev/null ]; then + numvcpus="2" + fi + cap3d="TRUE" # helper var for loging output + echo " +# version specific stuff - ver. 2.5|3.*|6.5|7.* +ehci.present = \"TRUE\" +mks.enable3d = \"${enable3d}\"" >>${conffile} + ;; +esac +case "$vmversion" in + 3.*|7.*) + numvcpus="${cpu_cores}" + # svga_autodetect="FALSE" # if defined manual, see below + echo " +# version specific stuff - ver. 3.*|7.* +cpuid.coresPerSocket = \"${cpu_cores}\" +maxvcpus = \"4\" +# svga.numDisplays = "2" +# svga.maxWidth = "2560" +# svga.maxHeight = "2048" +# svga.vramSize = "134217728" +monitor.virtual_mmu = \"automatic\" +monitor.virtual_exec = \"automatic\" +floppy1.clientDevice = \"FALSE\" +floppy1.readonly = \"TRUE\"" >>${conffile} + ;; +esac + +echo " +# id +virtualHW.version = \"${hwver}\" +displayName = \"${displayname}\" +guestOS = \"${vmostype}\" + +# CPU/MEM +numvcpus = \"${numvcpus}\" +memsize = \"${mem}\" +MemAllowAutoScaleDown = \"FALSE\" +MemTrimRate = \"-1\" + +# ide-disks +ide0:0.present = \"${ide}\" +ide0:0.fileName = \"${diskfile}\" +ide0:0.mode = \"independent-nonpersistent\" +ide1:0.present = \"${cdrom0}\" +ide1:0.autodetect = \"TRUE\" +ide1:0.fileName = \"auto detect\" +ide1:0.deviceType = \"cdrom-raw\" +ide1:1.present = \"${cdrom1}\" +ide1:1.autodetect = \"TRUE\" +ide1:1.fileName = \"auto detect\" +ide1:1.deviceType = \"cdrom-raw\" + +# scsi-disks +scsi0.present = \"${scsi}\" +scsi0:0.present = \"${scsi}\" +scsi0:0.fileName = \"${diskfile}\" +scsi0.virtualDev = \"${hddrv}\" +scsi0:0.mode = \"independent-nonpersistent\" + +# floppies +floppy0.present = \"${floppy0}\" +floppy0.startConnected = \"FALSE\" +floppy0.autodetect = \"TRUE\" +floppy0.fileName = \"auto detect\" +# we need floppy b: for our windows client configuration +floppy1.present = \"${floppy1}\" +floppy1.startConnected = \"TRUE\" +floppy1.fileType = \"file\" +floppy1.fileName = \"${floppy1name}\" + +# nics +ethernet0.present = \"TRUE\" +ethernet0.addressType = \"static\" +${network_virtualDev} +ethernet0.connectionType = \"${network_kind}\" +#ethernet1.connectionType = \"custom\" +#ethernet1.vnet = \"/dev/vmnet2\" +ethernet0.address = \"00:50:56:${VM_ID}:${machostpart}\" +ethernet0.wakeOnPcktRcv = \"FALSE\" + +# sound +sound.present = \"TRUE\" +sound.fileName = \"-1\" +sound.autodetect = \"TRUE\" + +# svga +svga.autodetect = \"${svga_autodetect}\" + +# usb +usb.present = \"TRUE\" +usb.generic.autoconnect = \"TRUE\" + +# shared folders +sharedFolder0.present = \"TRUE\" +sharedFolder0.enabled = \"${shared_folder}\" +sharedFolder0.expiration = \"never\" +sharedFolder0.guestName = \"${sharename}\" +sharedFolder0.hostPath = \"${sharepath}\" +sharedFolder0.readAccess = \"TRUE\" +sharedFolder0.writeAccess = \"TRUE\" +sharedFolder.maxNum = \"1\" + +# dirs/configs +tmpDirectory = \"${redodir}\" +redoLogDir = \"${redodir}\" +mainMem.useNamedFile = \"TRUE\" +snapshot.disabled = \"TRUE\" +tools.syncTime = \"TRUE\" +isolation.tools.hgfs.disable = \"FALSE\" +hgfs.mapRootShare = \"TRUE\" +isolation.tools.dnd.disable = \"FALSE\" +isolation.tools.copy.enable = \"TRUE\" +isolation.tools.paste.enabled = \"TRUE\" + +# serial port +serial0.present = \"${serial}\" +${serialdev} + +# parallel port +parallel0.present = \"${parallel}\" +parallel0.bidirectional = \"${paralbidi}\" +${paraldev}" >>${conffile} + +# set the appropriate permissions for the vmware config file +chmod u+rwx ${conffile} >/dev/null 2>&1 +} + +preferencesheader () +{ +echo ".encoding = \"UTF-8\" +# This configuration file was generated by $0 + +# updates/tips +webUpdate.enabled = \"FALSE\" +pref.downloadPermission = \"deny\" +pref.vmplayer.downloadPermission = \"deny\" +pref.vmplayer.webUpdateOnStartup = \"FALSE\" +pref.tip.startup = \"FALSE\" +hints.hideAll = \"TRUE\" +hint.vmui.showAllUSBDevs = \"FALSE\" + +# configs +prefvmx.defaultVMPath = \"${vmhome}\" +prefvmx.mru.config = \"${conffile}:\" + +# hot keys +pref.hotkey.control = \"true\" +pref.hotkey.alt = \"true\" +pref.hotkey.shift = \"true\" +pref.hotkey.gui = \"true\" +gui.restricted = \"true\" + +# fullscreen/mouse/keyboard +pref.fullscreen.toolbarPixels = \"0\" +pref.vmplayer.fullscreen.autohide = \"TRUE\" +pref.grabOnMouseClick = \"TRUE\" +pref.grabOnKeyPress = \"FALSE\" +pref.motionGrab = \"TRUE\" +pref.motionUngrab = \"TRUE\" +pref.hideCursorOnUngrab = \"TRUE\" +pref.autoFit = \"TRUE\" +pref.autoFitFullScreen = \"fitGuestToHost\" +pref.vmplayer.exit.vmAction = \"poweroff\" +pref.vmplayer.confirmOnExit = \"TRUE\" + +# shared folders +pref.enableAllSharedFolders = \"TRUE\" + +# eula +pref.eula.size = \"2\" +pref.eula.0.appName = \"VMware Player\" +pref.eula.0.buildNumber = \"${vmbuild}\" +pref.eula.1.appName = \"VMware Workstation\" +pref.eula.1.buildNumber = \"${vmbuild}\"" >${vmhome}/preferences +} + + +# declaration of default variables +################################################################################ + +# VM-ID static (0D), remove if changed to 00 +VM_ID="0D" +# temporary disk space for logs, etc... +redodir=/tmp/vmware/${USER} +# dir for configs and vmem file +confdir=${redodir} +# configfile +conffile="${confdir}/run-vmware.conf" +# diskfile +diskfile=${vmpath} +# users vmware config folder +vmhome="${HOME}/.vmware" + +# get several version infos for vmware/player +. ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf +vmbuild=$buildversion +vmversion=$version + +# VMware start options +# "-X": start in fullscreen +vmopt="-X" + + +# hardware checks +################################################################################ + +# use different network card +if [ -n "${network_card}" ]; then + network_virtualDev='ethernet0.virtualDev = "e1000"' +else + network_virtualDev='# using default virtualDev for ethernet0' +fi + +case "$enable3d" in + *true*|*TRUE*|*yes*|*YES*) + enable3d="TRUE" + ;; + *) + enable3d="FALSE" + ;; +esac + +# serial/parallel port defined (e.g. "ttyS0, lp0" or "autodetect") +case "$serial" in + tty*) + serialdev="serial0.filename = \"/dev/${serial}\"" + serial="TRUE" + ;; + auto*) + serialdev="serial0.autodetect = \"TRUE\"" + serial="TRUE" + ;; + *) + serialdev="# no serial port configured" + serial="FALSE" + ;; +esac +case "$parallel" in + lp*|parport*) + paraldev="parallel0.filename = \"/dev/${parallel}\"" + paralbidi="TRUE" + parallel="TRUE" + ;; + auto*) + paraldev="parallel0.autodetect = \"TRUE\"" + paralbidi="TRUE" + parallel="TRUE" + ;; + *) + paraldev="# no parallel port configured" + paralbidi="FALSE" + parallel="FALSE" + ;; +esac + +# adjust memory available for vmware guests +#if [ -n "${forcemem}" ]; then +# mem="${forcemem}" +#else +# case "$vmversion" in +# 2.*|6.*) +# permem=30 +# ;; +# 3.*|7.*) +# permem=25 +# ;; +# esac +# if [ "${totalmem}" -ge "2500" ]; then +# permem=40 +# fi +# # check if /tmp is on harddisk +# if grep -qe "/dev/.* /tmp " /proc/mounts ; then +# permem=60 +# id44="1" +# # Hack, if more than 2,5G RAM use 40% of Ram and write vmem into Ram as well +# # (40% vmware | 40% confdir(vmem...) | 20% host +# # VMplayer 2+ issue +# if [ "${totalmem}" -ge "2500" ]; then +# permem=40 +# confdir=/dev/shm/vmware/$USER +# conffile=${confdir}/run-vmware.conf +# mkdir -p /dev/shm/vmware/$USER +# fi +# fi +# mem=$(expr ${totalmem} / 100 \* ${permem} / 4 \* 4) +# if [ "${id44}" = "1" ]; then +# hostmem=$(expr ${totalmem} - ${mem}) +# else +# hostmem=$(expr ${totalmem} - ${mem} - ${mem}) +# fi +#fi + +# check if ide/scsi and hwver of image +# read only the first 30 lines to be shure +imghead=$(head -30 ${diskfile}) +hddrv=$(echo "${imghead}" | grep -m1 -ia "ddb.adapterType" |\ + awk -F '"' '{print $2}') +hwver=$(echo "${imghead}" | grep -m1 -ia "ddb.virtualHWVersion" |\ + awk -F '"' '{print $2}') +case "${hddrv}" in + ide) + ide="TRUE" + scsi="FALSE" + ;; + lsilogic|buslogic) + ide="FALSE" + scsi="TRUE" + ;; +esac + + +# write configuration files +################################################################################ + +# create vmware directories +mkdir -p ${redodir} >/dev/null 2>&1 +mkdir -p ${confdir} >/dev/null 2>&1 +mkdir -p ${vmhome} >/dev/null 2>&1 + +# create preferences +preferencesheader + +# create VMware startup file +runvmwareconfheader +# link to conffile if confdir != redodir +ln -s ${conffile} ${redodir}/run-vmware.conf >/dev/null 2>&1 + +# sync is needed to ensure that data is really written to virtual disk +sync + +# own nvram. We need it for floppy drive b, default nvram has just drive a +# TODO: optimize, currently kinda inefficient, too much copys, but we +# don't know which one is installed... +for i in /opt/openslx/plugin-repo/vmware/*; do + cp ${i}/nvram ${confdir}/nvram 2>/dev/null +done + + +# logging and stdout +################################################################################ + +# log script information +writelog "# File created by $0 (VMversion ${vmversion})\n# on $(date)\n" +writelog "Starting with non-persistent mode ...\n" + +# check memory range +if [ "${mem}" -lt "256" ] || [ "${hostmem}" -lt "256" ]; then + writelog "\tMemory out of range: ${mem} MB (guest) / ${hostmem} MB (host)!" + writelog "\tMin. 256 MB for host and guest!" + exit 1 +fi + +# write all results to logfile +# log disksetup +writelog "Directories:" +writelog "\tConfdir:\t${confdir}" +writelog "\tConffile:\t${conffile}" +writelog "\tRedodir:\t${redodir}" +writelog "\tVMhome:\t\t${vmhome}" +writelog "\t/tmp info: \ + $(grep "/tmp " /proc/mounts) $(df -h | grep " /tmp$" | awk '{print $2}')" +# hw setup +writelog "Hardware:" +writelog "\tMAC:\t\t00:50:56:${VM_ID}:${machostpart}" +if [ -n "${network_card}" ]; then + writelog "\tNet Adaptor:\t${network_card}" +fi +writelog "\tMem:\t\t${mem} MB" +# echo nur wenn hostmem gesetzt +[ -n "${hostmem}" ] && writelog "\tHostmem:\t${hostmem} MB" +writelog "\tMax. res.:\t${xres}x${yres}" +writelog "\tCD-ROM1:\t${cdrom0}" +writelog "\tCD-ROM2:\t${cdrom1}" +writelog "\tFloppy_A:\t${floppy0}" +if [ "${serial}" = "TRUE" ]; then + writelog "\tSerial Port:\t${serialdev}" +fi +if [ "${parallel}" = "TRUE" ]; then + writelog "\tParallel Port:\t${paraldev}" +fi +# image +writelog "Diskimage:" +writelog "\tDiskfile:\t${diskfile}" +writelog "\tDisktype:\t${hddrv}" +writelog "\tHWVersion:\t${hwver}" +writelog "\tVMostype:\t${vmostype}" +# misc +writelog "Misc:" +writelog "\tDisplayname:\t${displayname}" +if [ "${cap3d}" = "TRUE" -a "${enable3d}" = "TRUE" ]; then + writelog "\t3D Graphics:\tenabled" +fi +# empty line at end +writelog "" + + +# finally set env for run-virt.sh +################################################################################ + +# using the modified version of the wrapper script +VIRTCMD="${OPENSLX_DEFAULT_BINDIR}/vmplayer" +VIRTCMDOPTS="${vmopt} ${conffile}" diff --git a/resources/config/1/config/etc/opt/openslx/plugins/vmware/vmware.conf b/resources/config/1/config/etc/opt/openslx/plugins/vmware/vmware.conf new file mode 100755 index 0000000..aaf5ce7 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/plugins/vmware/vmware.conf @@ -0,0 +1,8 @@ +# configuration file for vmware background services written in stage3 setup +vmnet0=true +vmnet1=192.168.101.1/24 +vmnet1nat=true +vmnet8=192.168.102.1/24 +# stage1 variables produced during plugin install +version="7.0" +buildversion="261024" diff --git a/resources/config/1/config/etc/opt/openslx/udhcpd.conf b/resources/config/1/config/etc/opt/openslx/udhcpd.conf new file mode 100755 index 0000000..e292cc0 --- /dev/null +++ b/resources/config/1/config/etc/opt/openslx/udhcpd.conf @@ -0,0 +1,37 @@ +# general udhcpd configuration file for virtual machines written by +# /bin/init-wrapper during OpenSLX stage3 configuration + +# start and end of the IP lease block +start CNETWORK.20 +end CNETWORK.100 + +# interface that udhcpd will use +interface NWIF + +# how long an offered address is reserved (leased) in seconds +offer_time 6000 + +# location of the leases file +lease_file LEASEFILE + +# location of the pid file +pidfile PIDFILE + +option dns 132.230.200.200 132.230.201.111 +option subnet 255.255.255.0 +option router CNETWORK.1 +option wins CNETWORK.10 +option domain virtual.site ruf.uni-freiburg.de + +# additional options known to udhcpd +#subnet #timezone +#router #timesvr +#namesvr #dns +#logsvr #cookiesvr +#lprsvr #bootsize +#domain #swapsvr +#rootpath #ipttl +#mtu #broadcast +#wins #lease +#ntpsrv #tftp +#bootfile diff --git a/resources/config/1/config/etc/pam.d/common-account b/resources/config/1/config/etc/pam.d/common-account new file mode 100755 index 0000000..3caf0dd --- /dev/null +++ b/resources/config/1/config/etc/pam.d/common-account @@ -0,0 +1,5 @@ +# file copied from configuration package (rootfs/etc/pam.d/common-account) +account requisite pam_unix.so +account [success=ok new_authtok_reqd=ok ignore=ignore default=bad user_unknown=ignore] pam_krb5.so use_first_pass +account sufficient pam_localuser.so +account required pam_ldap.so use_first_pass diff --git a/resources/config/1/config/etc/pam.d/common-auth b/resources/config/1/config/etc/pam.d/common-auth new file mode 100755 index 0000000..5b8c00b --- /dev/null +++ b/resources/config/1/config/etc/pam.d/common-auth @@ -0,0 +1,15 @@ +# file copied from configuration package (rootfs/etc/pam.d/common-auth) +# +# /etc/pam.d/common-auth - authentication settings common to all services +# +# This file is included from other service-specific PAM config files, +# and should contain a list of the authentication modules that define +# the central authentication scheme for use on the system +# (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the +# traditional Unix authentication mechanisms. +# +auth required pam_env.so +auth optional pam_group.so +auth sufficient pam_unix.so +auth sufficient pam_krb5.so use_first_pass +auth required pam_ldap.so use_first_pass diff --git a/resources/config/1/config/etc/pam.d/common-session b/resources/config/1/config/etc/pam.d/common-session new file mode 100755 index 0000000..aec02b8 --- /dev/null +++ b/resources/config/1/config/etc/pam.d/common-session @@ -0,0 +1,5 @@ +# file copied from configuration package (rootfs/etc/pam.d/common-session) +session required pam_limits.so +session required pam_unix.so +session optional pam_krb5.so +session optional pam_umask.so diff --git a/resources/config/1/config/etc/passwd b/resources/config/1/config/etc/passwd new file mode 100755 index 0000000..cb0f764 --- /dev/null +++ b/resources/config/1/config/etc/passwd @@ -0,0 +1,39 @@ +root:x:0:0:root:/root:/bin/bash +daemon:x:1:1:daemon:/usr/sbin:/bin/sh +bin:x:2:2:bin:/bin:/bin/sh +sys:x:3:3:sys:/dev:/bin/sh +sync:x:4:65534:sync:/bin:/bin/sync +games:x:5:60:games:/usr/games:/bin/sh +man:x:6:12:man:/var/cache/man:/bin/sh +lp:x:7:7:lp:/var/spool/lpd:/bin/sh +mail:x:8:8:mail:/var/mail:/bin/sh +news:x:9:9:news:/var/spool/news:/bin/sh +uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh +proxy:x:13:13:proxy:/bin:/bin/sh +www-data:x:33:33:www-data:/var/www:/bin/sh +backup:x:34:34:backup:/var/backups:/bin/sh +list:x:38:38:Mailing List Manager:/var/list:/bin/sh +irc:x:39:39:ircd:/var/run/ircd:/bin/sh +gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh +libuuid:x:100:101::/var/lib/libuuid:/bin/sh +syslog:x:101:102::/home/syslog:/bin/false +messagebus:x:102:106::/var/run/dbus:/bin/false +hplip:x:103:7:HPLIP system user,,,:/var/run/hplip:/bin/false +avahi-autoipd:x:104:110:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false +avahi:x:105:111:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false +couchdb:x:106:113:CouchDB Administrator,,,:/var/lib/couchdb:/bin/bash +speech-dispatcher:x:107:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/sh +haldaemon:x:108:114:Hardware abstraction layer,,,:/var/run/hald:/bin/false +kernoops:x:109:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false +pulse:x:110:116:PulseAudio daemon,,,:/var/run/pulse:/bin/false +rtkit:x:111:118:RealtimeKit,,,:/proc:/bin/false +saned:x:112:119::/home/saned:/bin/false +gdm:x:113:120:Gnome Display Manager:/var/lib/gdm:/bin/false +polkituser:x:114:122:PolicyKit,,,:/var/run/PolicyKit:/bin/false +usbmux:x:115:46:usbmux daemon,,,:/home/usbmux:/bin/false +statd:x:116:65534::/var/lib/nfs:/bin/false +sshd:x:117:65534::/var/run/sshd:/usr/sbin/nologin +oprofile:x:118:125:OProfile JIT user,,,:/var/lib/oprofile:/bin/bash +jetty:x:119:126::/usr/share/jetty:/bin/false +postfix:x:120:127::/var/spool/postfix:/bin/false +nobody:x:65534:65534:nobody:/nonexistent:/bin/sh diff --git a/resources/config/1/config/etc/profile b/resources/config/1/config/etc/profile new file mode 100755 index 0000000..37ef457 --- /dev/null +++ b/resources/config/1/config/etc/profile @@ -0,0 +1,30 @@ +# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) +# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). + +if [ -d /etc/profile.d ]; then + for i in /etc/profile.d/*.sh; do + if [ -r $i ]; then + . $i + fi + done + unset i +fi + +if [ "$PS1" ]; then + if [ "$BASH" ]; then + PS1='\u@\h:\w\$ ' + if [ -f /etc/bash.bashrc ]; then + . /etc/bash.bashrc + fi + else + if [ "`id -u`" -eq 0 ]; then + PS1='# ' + else + PS1='$ ' + fi + fi +fi + +umask 022 +# stuff generated by /bin/servconfig (out of InitRamFS written 14.10.2010) +export PATH="$PATH:/var/opt/openslx/bin" diff --git a/resources/config/1/config/etc/rc2.d/K02vbox-slx b/resources/config/1/config/etc/rc2.d/K02vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/config/etc/rc2.d/K02vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc2.d/K02vmware-env b/resources/config/1/config/etc/rc2.d/K02vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/config/etc/rc2.d/K02vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc2.d/S20vbox-slx b/resources/config/1/config/etc/rc2.d/S20vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/config/etc/rc2.d/S20vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc2.d/S20vmware-env b/resources/config/1/config/etc/rc2.d/S20vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/config/etc/rc2.d/S20vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc3.d/K02vbox-slx b/resources/config/1/config/etc/rc3.d/K02vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/config/etc/rc3.d/K02vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc3.d/K02vmware-env b/resources/config/1/config/etc/rc3.d/K02vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/config/etc/rc3.d/K02vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc3.d/S20vbox-slx b/resources/config/1/config/etc/rc3.d/S20vbox-slx new file mode 100755 index 0000000..093a79c --- /dev/null +++ b/resources/config/1/config/etc/rc3.d/S20vbox-slx @@ -0,0 +1,89 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vbox-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +running () { +lsmod | grep -q "$1[^_-]" +} + +vmstatus () { +if running vboxdrv; then + if running vboxnetflt; then + echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." + else + echo "VirtualBox kernel module is loaded." + fi + #TODO: check it: ignore user check. handling our own way: + for i in /tmp/.vbox-*-ipc; do + echo "Running: " + $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) + done + else + echo "VirtualBox kernel module(s) are not loaded." +fi + +} + +start () { + echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ + >/etc/udev/rules.d/90-vboxusb.rules + echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ + GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules + modprobe -qa vboxdrv vboxnetflt vboxnetadp +} + +stop () { + rmmod vboxnetadp vboxnetflt vboxdrv +} + + +case "$1" in + start) + #start: defines start function for initscript + start + ;; + stop) + #stop: defines stop function for initscript + stop + ;; + restart) + #restart: defines restart function for initscript + stop && start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/rc3.d/S20vmware-env b/resources/config/1/config/etc/rc3.d/S20vmware-env new file mode 100755 index 0000000..ddc4f5c --- /dev/null +++ b/resources/config/1/config/etc/rc3.d/S20vmware-env @@ -0,0 +1,125 @@ +#!/bin/sh +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your suggestions, praise, or complaints to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org/ +# ----------------------------------------------------------------------------- +# §filename§ +# - §desc§ +# §generated§ +# ----------------------------------------------------------------------------- + +### BEGIN INIT INFO +# Provides: vmware-slx +# Required-Start: $remote_fs +# Required-Stop: $remote_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: Setup environment for VMware Workstation or Player (local3X). +### END INIT INFO + +. /lib/lsb/init-functions + +#functions: helper functions +load_modules () { +# VMplayer common stuff +insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 +insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 +# VMplayer 3.X specific stuff +insmod /lib/modules/$(uname -r)/misc/vmci.ko +insmod /lib/modules/$(uname -r)/misc/vmblock.ko +insmod /lib/modules/$(uname -r)/misc/vsock.ko + +} + +unload_modules () { +rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null +} + +vmnetif () { +# let point the path directly to the directory where the binary lives +location="/usr/bin" +if [ -n "$vmnet0" ] ; then + # the path might be directly point to the plugin dir + $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 +fi +if [ -n "$vmnet1" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ + /dev/vmnet1 vmnet1 + ip addr add $vmnet1 dev vmnet1 + ip link set vmnet1 up + if [ -n "$vmnet1nat" ] ; then + echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + #iptables -A -s vmnet1 -d br0 + fi + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf +fi +if [ -n "$vmnet8" ] ; then + $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ + /dev/vmnet8 vmnet8 + ip addr add $vmnet8 dev vmnet8 + ip link set vmnet8 up + echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null + echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null + iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE + /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ + -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf +fi + +} + +vmblock () { +# let point the path directly to the directory where the binary lives + /usr/bin/vmware-usbarbitrator + +} + + +case "$1" in + start) + #start: defines start function for initscript + # include default directories + . /etc/opt/openslx/openslx.conf + # load the configuration file + . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf + # hack to access the first serial/parallel port + chmod a+rw /dev/ttyS0 + chmod a+rw /dev/parport0 + load_modules + vmnetif + vmblock + + ;; + stop) + #stop: defines stop function for initscript + killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ + vmware-tray vmnet-dhcpd 2>/dev/null + # might take a while until all services are shut down + sleep 1 + unload_modules + + ;; + restart) + #restart: defines restart function for initscript + $0 stop && $0 start + ;; + status) + #status: defines status function for initscript + vmstatus + ;; + *) + #usage: defines usage function for initscript + ## print out usage + echo "Usage: $0 {start, stop, restart, status}" >&2 + exit 1 + ;; +esac + +exit 0 diff --git a/resources/config/1/config/etc/resolv.conf b/resources/config/1/config/etc/resolv.conf new file mode 100755 index 0000000..7b7c3b1 --- /dev/null +++ b/resources/config/1/config/etc/resolv.conf @@ -0,0 +1,7 @@ +# /etc/resolv.conf - file generated by +# /bin/servconfig: +# 14.10.2010 +#options timeout:1 attempts:1 rotate +search ruf.uni-freiburg.de +nameserver 132.230.200.200 +nameserver 132.230.201.111 diff --git a/resources/config/1/config/etc/security/group.conf b/resources/config/1/config/etc/security/group.conf new file mode 100755 index 0000000..e966b95 --- /dev/null +++ b/resources/config/1/config/etc/security/group.conf @@ -0,0 +1,105 @@ +# +# This is the configuration file for the pam_group module. +# + +# +# *** Please note that giving group membership on a session basis is +# *** NOT inherently secure. If a user can create an executable that +# *** is setgid a group that they are infrequently given membership +# *** of, they can basically obtain group membership any time they +# *** like. Example: games are allowed between the hours of 6pm and 6am +# *** user joe logs in at 7pm writes a small C-program toplay.c that +# *** invokes their favorite shell, compiles it and does +# *** "chgrp games toplay; chmod g+s toplay". They are basically able +# *** to play games any time... You have been warned. AGM +# + +# +# The syntax of the lines is as follows: +# +# services;ttys;users;times;groups +# +# white space is ignored and lines maybe extended with '\\n' (escaped +# newlines). From reading these comments, it is clear that +# text following a '#' is ignored to the end of the line. +# +# the combination of individual users/terminals etc is a logic list +# namely individual tokens that are optionally prefixed with '!' (logical +# not) and separated with '&' (logical and) and '|' (logical or). +# +# services +# is a logic list of PAM service names that the rule applies to. +# +# ttys +# is a logic list of terminal names that this rule applies to. +# +# users +# is a logic list of users or a netgroup of users to whom this +# rule applies. +# +# NB. For these items the simple wildcard '*' may be used only once. +# With netgroups no wildcards or logic operators are allowed. +# +# times +# It is used to indicate "when" these groups are to be given to the +# user. The format here is a logic list of day/time-range +# entries the days are specified by a sequence of two character +# entries, MoTuSa for example is Monday Tuesday and Saturday. Note +# that repeated days are unset MoMo = no day, and MoWk = all weekdays +# bar Monday. The two character combinations accepted are +# +# Mo Tu We Th Fr Sa Su Wk Wd Al +# +# the last two being week-end days and all 7 days of the week +# respectively. As a final example, AlFr means all days except Friday. +# +# Each day/time-range can be prefixed with a '!' to indicate "anything +# but" +# +# The time-range part is two 24-hour times HHMM separated by a hyphen +# indicating the start and finish time (if the finish time is smaller +# than the start time it is deemed to apply on the following day). +# +# groups +# The (comma or space separated) list of groups that the user +# inherits membership of. These groups are added if the previous +# fields are satisfied by the user's request +# +# For a rule to be active, ALL of service+ttys+users must be satisfied +# by the applying process. +# + +# +# Note, to get this to work as it is currently typed you need +# +# 1. to run an application as root +# 2. add the following groups to the /etc/group file: +# floppy, games, sound +# + +# +# Here is a simple example: running 'xsh' on tty* (any ttyXXX device), +# the user 'us' is given access to the floppy (through membership of +# the floppy group) +# + +#xsh;tty*&!ttyp*;us;Al0000-2400;floppy + +# +# another example: running 'xsh' on tty* (any ttyXXX device), +# the user 'sword' is given access to games (through membership of +# the sound and play group) after work hours. (The games group owns +# high-score files and so on, so don't ever give users access to it.) +# + +#xsh; tty* ;sword;!Wk0900-1800;sound, play +#xsh; tty* ;*;Al0900-1800;floppy + +login;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip +kdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video +gdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video +xdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video + +# +# End of group.conf file +# diff --git a/resources/config/1/config/etc/shadow b/resources/config/1/config/etc/shadow new file mode 100755 index 0000000..1b0e924 --- /dev/null +++ b/resources/config/1/config/etc/shadow @@ -0,0 +1,39 @@ +root:$6$KrXGhPkB$rxmsVo.85I8FItXSQFobSV7YPO.aKpDZntIARf73GivVRlPv09ZBnEoHjUTyLwLMQyaLMbTXfFU0LQu2xRrUX.:14358:0:99999:7::: +daemon:!:13078:0:99999:7::: +bin:!:13078:0:99999:7::: +sys:!:13078:0:99999:7::: +sync:!:13078:0:99999:7::: +games:!:13078:0:99999:7::: +man:!:13078:0:99999:7::: +lp:!:13078:0:99999:7::: +mail:!:13078:0:99999:7::: +news:!:13078:0:99999:7::: +uucp:!:13078:0:99999:7::: +proxy:!:13078:0:99999:7::: +www-data:!:13078:0:99999:7::: +backup:!:13078:0:99999:7::: +list:!:13078:0:99999:7::: +irc:!:13078:0:99999:7::: +gnats:!:13078:0:99999:7::: +libuuid:!:13078:0:99999:7::: +syslog:!:13078:0:99999:7::: +messagebus:!:13078:0:99999:7::: +hplip:!:13078:0:99999:7::: +avahi-autoipd:!:13078:0:99999:7::: +avahi:!:13078:0:99999:7::: +couchdb:!:13078:0:99999:7::: +speech-dispatcher:!:13078:0:99999:7::: +haldaemon:!:13078:0:99999:7::: +kernoops:!:13078:0:99999:7::: +pulse:!:13078:0:99999:7::: +rtkit:!:13078:0:99999:7::: +saned:!:13078:0:99999:7::: +gdm:!:13078:0:99999:7::: +polkituser:!:13078:0:99999:7::: +usbmux:!:13078:0:99999:7::: +statd:!:13078:0:99999:7::: +sshd:!:13078:0:99999:7::: +oprofile:!:13078:0:99999:7::: +jetty:!:13078:0:99999:7::: +postfix:!:13078:0:99999:7::: +nobody:!:13078:0:99999:7::: diff --git a/resources/config/1/config/etc/udev/rules.d/70-persistent-cd.rules b/resources/config/1/config/etc/udev/rules.d/70-persistent-cd.rules new file mode 100755 index 0000000..e75b4a0 --- /dev/null +++ b/resources/config/1/config/etc/udev/rules.d/70-persistent-cd.rules @@ -0,0 +1,12 @@ +# This file was automatically generated by the /lib/udev/write_cd_rules +# program, run by the cd-aliases-generator.rules rules file. +# +# You can modify it, as long as you keep each rule on a single +# line, and set the $GENERATED variable. + +# DVD-RAM_GSA-H60L (pci-0000:00:12.0-scsi-1:0:0:0) +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="cdrom", ENV{GENERATED}="1" +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="cdrw", ENV{GENERATED}="1" +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="dvd", ENV{GENERATED}="1" +SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="dvdrw", ENV{GENERATED}="1" + diff --git a/resources/config/1/config/etc/udev/rules.d/70-persistent-net.rules b/resources/config/1/config/etc/udev/rules.d/70-persistent-net.rules new file mode 100755 index 0000000..ab66721 --- /dev/null +++ b/resources/config/1/config/etc/udev/rules.d/70-persistent-net.rules @@ -0,0 +1,8 @@ +# This file was automatically generated by the /lib/udev/write_net_rules +# program, run by the persistent-net-generator.rules rules file. +# +# You can modify it, as long as you keep each rule on a single +# line, and change only the value of the NAME= key. + +# PCI device 0x14e4:0x167b (tg3) +SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1e:0b:27:f4:99", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" diff --git a/resources/config/1/config/etc/udev/rules.d/90-vboxusb.rules b/resources/config/1/config/etc/udev/rules.d/90-vboxusb.rules new file mode 100755 index 0000000..fe051bc --- /dev/null +++ b/resources/config/1/config/etc/udev/rules.d/90-vboxusb.rules @@ -0,0 +1,2 @@ +SUBSYSTEM=="usb_device", GROUP="vboxusers", MODE="0666" +SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="vboxusers", MODE="0666" diff --git a/resources/config/1/config/etc/vmware/config b/resources/config/1/config/etc/vmware/config new file mode 100755 index 0000000..838a1d0 --- /dev/null +++ b/resources/config/1/config/etc/vmware/config @@ -0,0 +1,4 @@ +.encoding = "UTF-8" +prefvmx.minVmMemPct = "50" +prefvmx.useRecommendedLockedMemSize = "TRUE" +libdir = "/usr/lib/vmware" diff --git a/resources/config/1/config/etc/vmware/nat.conf b/resources/config/1/config/etc/vmware/nat.conf new file mode 100755 index 0000000..18dfcc2 --- /dev/null +++ b/resources/config/1/config/etc/vmware/nat.conf @@ -0,0 +1,9 @@ +# Linux NAT configuration file +[host] +ip = 192.168.102.2/24 +device = /dev/vmnet8 +activeFTP = 1 +[udp] +timeout = 60 +[incomingtcp] +[incomingudp] diff --git a/resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet1.conf b/resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet1.conf new file mode 100755 index 0000000..0cc1017 --- /dev/null +++ b/resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet1.conf @@ -0,0 +1,37 @@ +# general udhcpd configuration file for virtual machines written by +# /bin/init-wrapper during OpenSLX stage3 configuration + +# start and end of the IP lease block +start 192.168.101.20 +end 192.168.101.100 + +# interface that udhcpd will use +interface vmnet1 + +# how long an offered address is reserved (leased) in seconds +offer_time 6000 + +# location of the leases file +lease_file /var/run/vmware/udhcpd-vmnet1.leases + +# location of the pid file +pidfile /var/run/vmware/udhcpd-vmnet1.pid + +option dns 132.230.200.200 132.230.201.111 +option subnet 255.255.255.0 +option router 192.168.101.1 +option wins 192.168.101.10 +option domain virtual.site ruf.uni-freiburg.de + +# additional options known to udhcpd +#subnet #timezone +#router #timesvr +#namesvr #dns +#logsvr #cookiesvr +#lprsvr #bootsize +#domain #swapsvr +#rootpath #ipttl +#mtu #broadcast +#wins #lease +#ntpsrv #tftp +#bootfile diff --git a/resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet8.conf b/resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet8.conf new file mode 100755 index 0000000..ab80fec --- /dev/null +++ b/resources/config/1/config/etc/vmware/udhcpd/udhcpd-vmnet8.conf @@ -0,0 +1,37 @@ +# general udhcpd configuration file for virtual machines written by +# /bin/init-wrapper during OpenSLX stage3 configuration + +# start and end of the IP lease block +start 192.168.102.20 +end 192.168.102.100 + +# interface that udhcpd will use +interface vmnet8 + +# how long an offered address is reserved (leased) in seconds +offer_time 6000 + +# location of the leases file +lease_file /var/run/vmware/udhcpd-vmnet8.leases + +# location of the pid file +pidfile /var/run/vmware/udhcpd-vmnet8.pid + +option dns 132.230.200.200 132.230.201.111 +option subnet 255.255.255.0 +option router 192.168.102.1 +option wins 192.168.102.10 +option domain virtual.site ruf.uni-freiburg.de + +# additional options known to udhcpd +#subnet #timezone +#router #timesvr +#namesvr #dns +#logsvr #cookiesvr +#lprsvr #bootsize +#domain #swapsvr +#rootpath #ipttl +#mtu #broadcast +#wins #lease +#ntpsrv #tftp +#bootfile diff --git a/resources/config/1/config/etc/vmware/vmnet-natd-8.mac b/resources/config/1/config/etc/vmware/vmnet-natd-8.mac new file mode 100755 index 0000000..ef6cc5c --- /dev/null +++ b/resources/config/1/config/etc/vmware/vmnet-natd-8.mac @@ -0,0 +1 @@ +00:50:56:F1:30:50 diff --git a/resources/config/1/config/root/.ssh/authorized_keys b/resources/config/1/config/root/.ssh/authorized_keys new file mode 100755 index 0000000..3f5c805 --- /dev/null +++ b/resources/config/1/config/root/.ssh/authorized_keys @@ -0,0 +1,2 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAyqJL02R70XFWD7uSUyiJGXyPyHJhCwFe0ko6ulc1b/j4wHXYWUBGGRyo3ELD88jRrAFkH3S70fSUgiKq0GziYiSWiy1nuaKzybjOzKCE9nEssUkmOtZZPqe2aT0c/6ccJDHzmhShA5ndawaMF1qWIEswDyqknG5YMTau9SUlvHNK82uygOlHlBn+ey+nfjmBQsafE720ykuUglDDXZG/91nrPaYgabbjqeGP9wq7E7c+tsMczmoSQw2q2m+vz+rLNyWL+6VftPTyuxtFfUSKbNWthpXoiJPAU62iP1089NBIMq+8VyYNzDxDHYXE5pxpXUG026hw1Ugmpgf0W9JZ2w== root@lp-srv01.ruf.uni-freiburg.de +ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAtE1QqmMnS9ZrmXQguHDa6Gi8edgl8IE3MMl58Wxgf//ONZjfQpOfJxvl5kYkmJKl0H7KGNNp+4UYP0ckydfw301MJU8Q5/24CkKHT92pnUUVRQ9Am7YnKvWBsrbMThEMIEOGjOc9uvyE+lKvvZ18ZNLTI9lCqu/ns6ZMYeS2xJU= root@lp-srv180 diff --git a/resources/config/1/config/tmp/.X0-lock b/resources/config/1/config/tmp/.X0-lock new file mode 100755 index 0000000..a563e1c --- /dev/null +++ b/resources/config/1/config/tmp/.X0-lock @@ -0,0 +1 @@ + 3307 diff --git a/resources/config/1/config/tmp/krb5cc_14620_43Qjbp b/resources/config/1/config/tmp/krb5cc_14620_43Qjbp new file mode 100755 index 0000000..f031720 Binary files /dev/null and b/resources/config/1/config/tmp/krb5cc_14620_43Qjbp differ diff --git a/resources/config/1/config/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE b/resources/config/1/config/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE new file mode 100755 index 0000000..5ca497a Binary files /dev/null and b/resources/config/1/config/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE differ diff --git a/resources/config/1/config/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock b/resources/config/1/config/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior b/resources/config/1/config/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior new file mode 100755 index 0000000..a419f6b --- /dev/null +++ b/resources/config/1/config/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior @@ -0,0 +1 @@ +IOR:010000002100000049444c3a426f6e6f626f2f41637469766174696f6e436f6e746578743a312e3000000000030000000054424f540000000101020005000000554e4958000000000a0000006c6f63616c686f7374000000290000002f746d702f6f726269742d6d7035372f6c696e632d6565312d302d336431643033663232363661630000000000000000caaedfba5400000001010200290000002f746d702f6f726269742d6d7035372f6c696e632d6565312d302d33643164303366323236366163000000001c00000001000000d5535559a07f11d14d6851515151515102000000bf016fb301000000480000000100000002000000050000001c00000001000000d5535559a07f11d14d6851515151515102000000bf016fb301000000140000000100000001000105000000000901010000000000 diff --git a/resources/config/1/config/tmp/plugtmp/plugin-all_V25_spec_160_600.xml b/resources/config/1/config/tmp/plugtmp/plugin-all_V25_spec_160_600.xml new file mode 100755 index 0000000..8df706d --- /dev/null +++ b/resources/config/1/config/tmp/plugtmp/plugin-all_V25_spec_160_600.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/resources/config/1/config/tmp/pulse-b9qYDvw8bJls/pid b/resources/config/1/config/tmp/pulse-b9qYDvw8bJls/pid new file mode 100755 index 0000000..675c45f --- /dev/null +++ b/resources/config/1/config/tmp/pulse-b9qYDvw8bJls/pid @@ -0,0 +1 @@ +3770 diff --git a/resources/config/1/config/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile b/resources/config/1/config/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/tmp/vmware-root/usbarb-3200.log b/resources/config/1/config/tmp/vmware-root/usbarb-3200.log new file mode 100755 index 0000000..ebea407 --- /dev/null +++ b/resources/config/1/config/tmp/vmware-root/usbarb-3200.log @@ -0,0 +1,30 @@ +Jan 05 13:23:14.918: usbArb| Log for VMware USB Arbitration Service pid=3200 version=3.1.0 build=build-261024 option=Release +Jan 05 13:23:14.918: usbArb| The process is 32-bit. +Jan 05 13:23:14.918: usbArb| Host codepage=UTF-8 encoding=UTF-8 +Jan 05 13:23:14.918: usbArb| DICT --- USER PREFERENCES +Jan 05 13:23:14.919: usbArb| DICT --- USER DEFAULTS ~/.vmware/config +Jan 05 13:23:14.919: usbArb| DICT --- HOST DEFAULTS /etc/vmware/config +Jan 05 13:23:14.919: usbArb| DICT prefvmx.minVmMemPct = 50 +Jan 05 13:23:14.919: usbArb| DICT prefvmx.useRecommendedLockedMemSize = TRUE +Jan 05 13:23:14.919: usbArb| DICT libdir = /usr/lib/vmware +Jan 05 13:23:14.919: usbArb| DICT --- SITE DEFAULTS /usr/lib/vmware/config +Jan 05 13:23:14.919: usbArb| DICT tag.help = introduction.htm +Jan 05 13:23:14.919: usbArb| DICT tag.configurationEditor = config_editor_newvm.htm +Jan 05 13:23:14.919: usbArb| DICT tag.ideConfig = devices_virtualdrive.htm +Jan 05 13:23:14.919: usbArb| DICT tag.floppyConfig = devices_floppy.htm +Jan 05 13:23:14.919: usbArb| DICT tag.mouseConfig = devices_mouse.htm +Jan 05 13:23:14.919: usbArb| DICT tag.netConfig = devices_netadapter.htm +Jan 05 13:23:14.919: usbArb| DICT tag.parallelConfig = devices_parallel.htm +Jan 05 13:23:14.919: usbArb| DICT tag.serialConfig = devices_serial.htm +Jan 05 13:23:14.919: usbArb| DICT tag.soundConfig = devices_sound.htm +Jan 05 13:23:14.919: usbArb| DICT tag.memConfig = configvm_memory.htm +Jan 05 13:23:14.919: usbArb| DICT tag.miscConfig = configvm.htm +Jan 05 13:23:14.919: usbArb| DICT tag.usbConfig = devices_usb.htm +Jan 05 13:23:14.919: usbArb| DICT tag.displayConfig = configvm_display-problems.htm +Jan 05 13:23:14.919: usbArb| DICT tag.tools = vmtools.htm +Jan 05 13:23:14.919: usbArb| USB: Unable to open "/proc/bus/usb/devices" (No such file or directory). +Jan 05 13:23:14.919: usbArb| USBGL: USB Sysfs found at /dev/bus/usb +Jan 05 13:23:14.920: usbArb| USBArb: 3 Devices enumerated +Jan 05 13:23:14.920: usbArb| USBArb: Device 0:name:Hewlett-Packard\ HP\ USB\ Smart\ Card\ Keyboard vid:03f0 pid:1024 path:2/1 speed:full family:hid,hid-bootable,smart-card id:2000203f01024 owner:(null) +Jan 05 13:23:14.920: usbArb| USBArb: Device 1:name:Quanta\ Optical\ Touch\ Screen vid:0408 pid:3000 path:4/1 speed:full family:hid id:4000204083000 owner:(null) +Jan 05 13:23:14.920: usbArb| USBArb: Device 2:name:Primax\ USB\ Optical\ Mouse vid:0461 pid:4d20 path:4/2 speed:low family:hid,hid-bootable id:4000304614d20 owner:(null) diff --git a/resources/config/1/config/tmp/whitelist b/resources/config/1/config/tmp/whitelist new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/cache/nscd/group b/resources/config/1/config/var/cache/nscd/group new file mode 100755 index 0000000..849e79f Binary files /dev/null and b/resources/config/1/config/var/cache/nscd/group differ diff --git a/resources/config/1/config/var/cache/nscd/passwd b/resources/config/1/config/var/cache/nscd/passwd new file mode 100755 index 0000000..2090f6d Binary files /dev/null and b/resources/config/1/config/var/cache/nscd/passwd differ diff --git a/resources/config/1/config/var/cache/nscd/services b/resources/config/1/config/var/cache/nscd/services new file mode 100755 index 0000000..ba0909a Binary files /dev/null and b/resources/config/1/config/var/cache/nscd/services differ diff --git a/resources/config/1/config/var/lib/dpkg/alternatives/x-session-manager b/resources/config/1/config/var/lib/dpkg/alternatives/x-session-manager new file mode 100755 index 0000000..212de61 --- /dev/null +++ b/resources/config/1/config/var/lib/dpkg/alternatives/x-session-manager @@ -0,0 +1,24 @@ +manual +/usr/bin/x-session-manager +x-session-manager.1.gz +/usr/share/man/man1/x-session-manager.1.gz + +/usr/bin/gnome-session +50 +/usr/share/man/man1/gnome-session.1.gz +/usr/bin/lxsession +49 +/usr/share/man/man1/lxsession.1.gz +/usr/bin/openbox-session +40 +/usr/share/man/man1/openbox-session.1.gz +/usr/bin/startkde +40 +/usr/share/man/man1/startkde.1.gz +/usr/bin/startlxde +50 +/usr/share/man/man1/startlxde.1.gz +/usr/bin/xfce4-session +50 +/usr/share/man/man1/xfce4-session.1.gz + diff --git a/resources/config/1/config/var/lib/dpkg/alternatives/x-window-manager b/resources/config/1/config/var/lib/dpkg/alternatives/x-window-manager new file mode 100755 index 0000000..81a0fd0 --- /dev/null +++ b/resources/config/1/config/var/lib/dpkg/alternatives/x-window-manager @@ -0,0 +1,18 @@ +manual +/usr/bin/x-window-manager +x-window-manager.1.gz +/usr/share/man/man1/x-window-manager.1.gz + +/usr/bin/kwin +50 + +/usr/bin/metacity +60 +/usr/share/man/man1/metacity.1.gz +/usr/bin/openbox +90 +/usr/share/man/man1/openbox.1.gz +/usr/bin/xfwm4 +60 +/usr/share/man/man1/xfwm4.1.gz + diff --git a/resources/config/1/config/var/lib/openslx/bin/automount-home.pl b/resources/config/1/config/var/lib/openslx/bin/automount-home.pl new file mode 100755 index 0000000..19d24fb --- /dev/null +++ b/resources/config/1/config/var/lib/openslx/bin/automount-home.pl @@ -0,0 +1,39 @@ +#!/usr/bin/perl -l +######################################################################### +# mountet homedirs per nfs3 oder nfs4 je nach net.point variante +######################################################################### +# net.point (c) by Martin Walter 1996-2008 +######################################################################### + + exit 1 if ($#ARGV != 0); + + $user = $ARGV[0]; + + exit 1 if ($user !~ /^[a-z][a-z_0-9-]{1,7}$/); + + ($name,$passwd,$uid,$gid, $quota,$comment,$gcos,$dir,$shell) = getpwnam $user; + + exit 1 if (!$dir); + + if ($user eq "guest" || -f "/var/etc/ramdisk/$user" ) { + print "-fstype=tmpfs tmpfs"; + exit 0; + } + + $x = `ldapsearch -x -LLL uid=$user homeDirectory rufFileserver`; + $hostname = `hostname`; + + $remote = $1 if ($x =~ m|homeDirectory: (/.+)\n|); + $fs = $1 if ($x =~ m|rufFileserver: (.+)\n|); + + exit 1 if ($fs eq "" || $hostname eq "" || $remote eq ""); + +######################################################################### +# netapp und solaris-server wollen vollen pfad. linux-server nur /$user + + $remote = "/$user" if (`showmount -e $fs 2>/dev/null` =~ m,gss/krb5,); + + $krb = `/var/lib/openslx/bin/krb5_mount_mode.pl $fs`; + print "-fstype=nfs4,sec=$krb,rw,nosuid,nodev,nolock,intr,hard $fs:$remote"; + + exit 0; diff --git a/resources/config/1/config/var/lib/openslx/bin/krb5_mount_mode.pl b/resources/config/1/config/var/lib/openslx/bin/krb5_mount_mode.pl new file mode 100755 index 0000000..cd4e1e4 --- /dev/null +++ b/resources/config/1/config/var/lib/openslx/bin/krb5_mount_mode.pl @@ -0,0 +1,69 @@ +#!/usr/bin/perl + +######################################################################### +sub ip { + my $host = $_[0]; + my $ip = ""; + + if ( $host =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ ) { + $ip = $host if ($1<223 && $2<256 && $3<256 && $4<256); + } + elsif ( $host =~ /^[a-z][a-z0-9-.-]{0,63}$/i ) { + my $x = `env - host $host`; + $ip = $1 if ($x =~ / has address (\d+\.\d+\.\d+\.\d+)/); + } + return $ip; +} +######################################################################### +sub hostname { + my $ip = $_[0]; + my $host = ""; + + if ( $ip =~ /^[a-z0-9-.-]{1,63}$/ ) { + my $x = `env - host $ip`; + if ($x =~ /^([a-z][a-z0-9-.-]{0,63}) has address/i) { + $host = $1; + } + elsif ($x =~ /in-addr.arpa domain name pointer ([a-z][a-z0-9-.-]{0,63})\./i) { + $host = $1; + } + } + return $host; +} +######################################################################### + +$dest_ip = ip($ARGV[0]); +exit 1 if ($dest_ip eq ""); + +######################################################################### +# gibts bereits einen mount zum ziel? +open(F,"/proc/mounts") || exit 2; +while () { + if (/^([a-z0-9-.-]+):.*sec=(krb5[ip]{0,1})/) { + if ($dest_ip eq ip($1)) { + print $2; + exit 0; + } + } +} +close F; +######################################################################### +$me = hostname(`hostname`); +$you = hostname($dest_ip); + +$krb = "krb5p"; + +if ($me =~ /^login\d+\.ruf\.uni-freiburg\.de$/ || $me =~ /^b1-4\.ruf\.uni-freiburg\.de$/) { + if ($you =~ /^fs\d\.ruf\.uni-freiburg\.de$/ || $you =~ /^netapp\d+\.public\.ads\.uni-freiburg\.de$/) { + $krb = "krb5i"; + } +} +elsif ($me =~ /^.+\.home$/ && $you =~ /^.+\.home$/) { + $krb = "krb5i"; +} +print $krb; + +exit 0; + +######################################################################### + \ No newline at end of file diff --git a/resources/config/1/config/var/lib/openslx/bin/sslconnect b/resources/config/1/config/var/lib/openslx/bin/sslconnect new file mode 100755 index 0000000..fb310da --- /dev/null +++ b/resources/config/1/config/var/lib/openslx/bin/sslconnect @@ -0,0 +1,97 @@ +#!/usr/bin/perl +######################################################################### +# sslconnect 0.1 +# Last Change: 2006-03-03 +# 2006 by Martin Walter +# http://omnibus.uni-freiburg.de/~mawa/ +######################################################################### + use English; + use IO::Socket::SSL; + +######################################################################### + sub Usage { + print "@_"; + print "Usage: $0 [--debug] peerhost:peerport\n"; + exit; + } +######################################################################### + sub Tprint { # print with timestamp + my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); + my $x=sprintf "%4d-%02d-%02d--%02d:%02d:%02d ($$)",1900+$year,$mon+1,$mday,$hour,$min,$sec; + print STDERR "$x @_"; + } +######################################################################### + sub Tdebug { # debug-print with timestamp + Tprint "@_" if ($debug); + } +######################################################################### + sub Terror { # error-print with timestamp and exit 1 + Tprint "ERROR: @_"; + exit 1; + } +######################################################################### +######################################################################### +# main: +######################################################################### + $| = 1; + $debug = 0; + + while ($ARGV[0] =~ /^(-.*)$/) { + if ($1 eq "--debug") { + $debug=1; + Tprint "--debug\n"; + } elsif ($1 eq "--help") { + Usage; + } else { + Terror "invalid option: $1\n"; + } + shift; + } + Usage if ($#ARGV != 0); + Usage if ($ARGV[0] !~ /^([a-z0-9.-]+):([a-z0-9.-]+)$/); + shift; + + ($peerhost,$peerport) = ($1,$2); + +######################################################################### +# connect to server + + if ($EUID) { + $sock = IO::Socket::SSL->new( + PeerAddr => $peerhost, + PeerPort => $peerport, + Proto => 'tcp', + Timeout => 5, + SSL_use_cert => 0, + SSL_verify_mode => 0, + ); + } else { + for $localport (90..900) { + $sock = IO::Socket::SSL->new( + PeerAddr => $peerhost, + PeerPort => $peerport, + LocalPort => $localport, + Proto => 'tcp', + Timeout => 2, + SSL_use_cert => 0, + SSL_verify_mode => 0, + ); + Tdebug "localport=$localport --> " . ($sock ? "ok" : "failed") . "\n"; + last if ($sock); + } + } + Terror "unable to connect to $peerhost:$peerport\n" if (!$sock); + + if (!fork()) { + print $buf while ($buf = $sock->readline); + shutdown($sock,2); + exit 0; + } + + while ( ($buf = <>) && ($sock->write($buf, length($buf))) ) {} + + shutdown($sock,2); + exit 0; + +######################################################################### + diff --git a/resources/config/1/config/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm b/resources/config/1/config/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm new file mode 100755 index 0000000..5a196c9 Binary files /dev/null and b/resources/config/1/config/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm differ diff --git a/resources/config/1/config/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm b/resources/config/1/config/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm new file mode 100755 index 0000000..b2f5e05 Binary files /dev/null and b/resources/config/1/config/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm differ diff --git a/resources/config/1/config/var/log/ConsoleKit/history b/resources/config/1/config/var/log/ConsoleKit/history new file mode 100755 index 0000000..f2baf3d --- /dev/null +++ b/resources/config/1/config/var/log/ConsoleKit/history @@ -0,0 +1,3 @@ +1294230214.137 type=SEAT_ADDED : seat-id='Seat1' seat-kind=0 +1294230214.159 type=SEAT_SESSION_ADDED : seat-id='Seat1' session-id='Session1' session-type='' session-x11-display=':0' session-x11-display-device='/dev/tty7' session-display-device='' session-remote-host-name='' session-is-local=TRUE session-unix-user=14620 session-creation-time='2011-01-05T12:23:34.147968Z' +1294230214.184 type=SEAT_ACTIVE_SESSION_CHANGED : seat-id='Seat1' session-id='Session1' diff --git a/resources/config/1/config/var/log/Xorg.0.log b/resources/config/1/config/var/log/Xorg.0.log new file mode 100755 index 0000000..85d56ee --- /dev/null +++ b/resources/config/1/config/var/log/Xorg.0.log @@ -0,0 +1,787 @@ + +X.Org X Server 1.7.6 +Release Date: 2010-03-17 +X Protocol Version 11, Revision 0 +Build Operating System: Linux 2.6.24-27-server i686 Ubuntu +Current Operating System: Linux lsfks20 2.6.32-25-generic-pae #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 i686 +Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Build Date: 21 July 2010 12:47:34PM +xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) +Current version of pixman: 0.16.4 + Before reporting problems, check http://wiki.x.org + to make sure that you have the latest version. +Markers: (--) probed, (**) from config file, (==) default setting, + (++) from command line, (!!) notice, (II) informational, + (WW) warning, (EE) error, (NI) not implemented, (??) unknown. +(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 5 13:23:25 2011 +(==) Using config file: "/etc/X11/xorg.conf" +(==) Using config directory: "/usr/lib/X11/xorg.conf.d" +(==) ServerLayout "Default Layout" +(**) |-->Screen "Default Screen" (0) +(**) | |-->Monitor "Generic Display" +(**) |-->Input Device "Generic Keyboard" +(**) |-->Input Device "Generic Mouse" +(**) Option "AllowMouseOpenFail" +(**) Option "BlankTime" "5" +(**) Option "StandbyTime" "10" +(**) Option "SuspendTime" "15" +(**) Option "OffTime" "20" +(**) Option "AllowEmptyInput" "false" +(==) Automatically adding devices +(==) Automatically enabling devices +(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. + Entry deleted from font path. +(==) FontPath set to: + /usr/share/fonts/X11/misc, + /usr/share/fonts/X11/100dpi/:unscaled, + /usr/share/fonts/X11/75dpi/:unscaled, + /usr/share/fonts/X11/Type1, + /usr/share/fonts/X11/100dpi, + /usr/share/fonts/X11/75dpi, + /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType, + built-ins +(==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules" +(II) Loader magic: 0x81f0e80 +(II) Module ABI versions: + X.Org ANSI C Emulation: 0.4 + X.Org Video Driver: 6.0 + X.Org XInput driver : 7.0 + X.Org Server Extension : 2.0 +(++) using VT number 7 + +(--) PCI:*(0:2:0:0) 1002:94c1:1028:0d02 ATI Technologies Inc RV610 [Radeon HD 2400 XT] rev 0, Mem @ 0xd0000000/268435456, 0xf0100000/65536, I/O @ 0x00001100/256, BIOS @ 0x????????/131072 +(II) Open ACPI successful (/var/run/acpid.socket) +(II) "extmod" will be loaded. This was enabled by default and also specified in the config file. +(II) "dbe" will be loaded by default. +(II) "glx" will be loaded. This was enabled by default and also specified in the config file. +(II) "record" will be loaded by default. +(II) "dri" will be loaded. This was enabled by default and also specified in the config file. +(II) "dri2" will be loaded by default. +(II) LoadModule: "i2c" +(II) Module "i2c" already built-in +(II) LoadModule: "ddc" +(II) Module "ddc" already built-in +(II) LoadModule: "extmod" +(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so +(II) Module extmod: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + Module class: X.Org Server Extension + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension MIT-SCREEN-SAVER +(II) Loading extension XFree86-VidModeExtension +(II) Loading extension XFree86-DGA +(II) Loading extension DPMS +(II) Loading extension XVideo +(II) Loading extension XVideo-MotionCompensation +(II) Loading extension X-Resource +(II) LoadModule: "int10" +(II) Loading /usr/lib/xorg/modules/libint10.so +(II) Module int10: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "vbe" +(II) Loading /usr/lib/xorg/modules/libvbe.so +(II) Module vbe: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.1.0 + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "glx" +(II) Loading /usr/lib/xorg/modules/extensions/libglx.so +(II) Module glx: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org Server Extension, version 2.0 +(==) AIGLX enabled +(II) Loading extension GLX +(II) LoadModule: "dri" +(II) Loading /usr/lib/xorg/modules/extensions/libdri.so +(II) Module dri: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension XFree86-DRI +(II) LoadModule: "dbe" +(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so +(II) Module dbe: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + Module class: X.Org Server Extension + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension DOUBLE-BUFFER +(II) LoadModule: "record" +(II) Loading /usr/lib/xorg/modules/extensions/librecord.so +(II) Module record: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.13.0 + Module class: X.Org Server Extension + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension RECORD +(II) LoadModule: "dri2" +(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so +(II) Module dri2: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.1.0 + ABI class: X.Org Server Extension, version 2.0 +(II) Loading extension DRI2 +(==) Matched ati as autoconfigured driver 0 +(==) Matched vesa as autoconfigured driver 1 +(==) Matched fbdev as autoconfigured driver 2 +(==) Assigned the driver to the xf86ConfigLayout +(II) LoadModule: "ati" +(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so +(II) Module ati: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 6.13.0 + Module class: X.Org Video Driver + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "radeon" +(II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so +(II) Module radeon: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 6.13.0 + Module class: X.Org Video Driver + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "vesa" +(II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so +(II) Module vesa: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 2.3.0 + Module class: X.Org Video Driver + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "fbdev" +(II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so +(II) Module fbdev: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 0.4.1 + ABI class: X.Org Video Driver, version 6.0 +(II) LoadModule: "evdev" +(II) Loading /usr/lib/xorg/modules/input/evdev_drv.so +(II) Module evdev: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 2.3.2 + Module class: X.Org XInput Driver + ABI class: X.Org XInput driver, version 7.0 +(II) LoadModule: "mouse" +(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so +(II) Module mouse: vendor="X.Org Foundation" + compiled for 1.7.2, module version = 1.5.0 + Module class: X.Org XInput Driver + ABI class: X.Org XInput driver, version 7.0 +(II) RADEON: Driver for ATI Radeon chipsets: + ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI), + ATI Radeon Mobility X300 (M24) 3152 (PCIE), + ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE), + ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136, + ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP), + ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), + ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP), + ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), + ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP), + ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), + ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650, + ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237, + ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP), + ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337, + ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI), + ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP), + ATI Radeon X800PRO (R420) JI (AGP), + ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), + ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), + ATI Radeon Mobility 9800 (M18) JN (AGP), + ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP), + ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP), + ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP), + ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP), + ATI Radeon Mobility M7 LW (AGP), + ATI Mobility FireGL 7800 M7 LX (AGP), + ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), + ATI FireGL Mobility 9000 (M9) Ld (AGP), + ATI Radeon Mobility 9000 (M9) Lf (AGP), + ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP), + ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP), + ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP), + ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), + ATI Radeon 9800XT NJ (AGP), + ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP), + ATI Radeon Mobility 9600 (M10) NQ (AGP), + ATI Radeon Mobility 9600 (M11) NR (AGP), + ATI Radeon Mobility 9600 (M10) NS (AGP), + ATI FireGL Mobility T2 (M10) NT (AGP), + ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP), + ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), + ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP), + ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI), + ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI), + ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI), + ATI Radeon Mobility X300 (M22) 5460 (PCIE), + ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE), + ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE), + ATI Radeon X800PRO (R423) UI (PCIE), + ATI Radeon X800LE (R423) UJ (PCIE), + ATI Radeon X800SE (R423) UK (PCIE), + ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE), + ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE), + ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE), + ATI FireGL unknown (R423) UR (PCIE), + ATI FireGL unknown (R423) UT (PCIE), + ATI Mobility FireGL V5000 (M26) (PCIE), + ATI Mobility FireGL V5000 (M26) (PCIE), + ATI Mobility Radeon X700 XL (M26) (PCIE), + ATI Mobility Radeon X700 (M26) (PCIE), + ATI Mobility Radeon X700 (M26) (PCIE), + ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834, + ATI Radeon Mobility 9100 IGP (U3) 5835, + ATI Radeon XPRESS 200 5954 (PCIE), + ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP), + ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP), + ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI), + ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE), + ATI Radeon XPRESS 200M 5975 (PCIE), + ATI Radeon XPRESS 200 5A41 (PCIE), + ATI Radeon XPRESS 200M 5A42 (PCIE), + ATI Radeon XPRESS 200 5A61 (PCIE), + ATI Radeon XPRESS 200M 5A62 (PCIE), + ATI Radeon X300 (RV370) 5B60 (PCIE), + ATI Radeon X600 (RV370) 5B62 (PCIE), + ATI Radeon X550 (RV370) 5B63 (PCIE), + ATI FireGL V3100 (RV370) 5B64 (PCIE), + ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE), + ATI Radeon Mobility 9200 (M9+) 5C61 (AGP), + ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), + ATI Mobility Radeon X800 XT (M28) (PCIE), + ATI Mobility FireGL V5100 (M28) (PCIE), + ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE), + ATI Radeon X850 XT PE (R480) (PCIE), + ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE), + ATI unknown Radeon / FireGL (R480) 5D50 (PCIE), + ATI Radeon X850 XT (R480) (PCIE), + ATI Radeon X800XT (R423) 5D57 (PCIE), + ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE), + ATI Radeon X700 PRO (RV410) (PCIE), + ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE), + ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800, + ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800, + ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300, + ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800, + ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800, + ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505, + ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL, + ATI Mobility Radeon X1400, ATI Radeon X1300/X1550, + ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300, + ATI Mobility Radeon X1300, ATI Mobility Radeon X1300, + ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300, + ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350, + ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550, + ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450, + ATI Radeon X1300/X1550, ATI Mobility Radeon X2300, + ATI Mobility Radeon X2300, ATI Mobility Radeon X1350, + ATI Mobility Radeon X1350, ATI Mobility Radeon X1450, + ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350, + ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600, + ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600, + ATI Mobility FireGL V5200, ATI Mobility Radeon X1600, + ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600, + ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400, + ATI Mobility FireGL V5250, ATI Mobility Radeon X1700, + ATI Mobility Radeon X1700 XT, ATI FireGL V5200, + ATI Mobility Radeon X1700, ATI Radeon X2300HD, + ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300, + ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950, + ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, + ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, + ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, + ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950, + ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560, + ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400, + ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560, + ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835, + ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200, + ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740, + ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT, + ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT, + ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600, + ATI Radeon 4800 Series, ATI Radeon HD 4870 x2, + ATI Radeon 4800 Series, ATI Radeon HD 4850 x2, + ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL), + ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2, + ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270, + AMD FireStream 9250, ATI FirePro V8700 (FireGL), + ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98, + ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series, + ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98, + ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP), + ATI Mobility Radeon HD 4670, ATI FirePro M5750, + ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP), + ATI RV730XT [Radeon HD 4670], ATI RADEON E4600, + ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650], + ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL), + ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830, + ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740, + ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770, + ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT, + ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, + ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT, + ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610, + ATI FireMV 2260, ATI RV670, ATI Radeon HD3870, + ATI Mobility Radeon HD 3850, ATI Radeon HD3850, + ATI Mobility Radeon HD 3850 X2, ATI RV670, + ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2, + ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850, + ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550, + ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710, + ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series, + ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series, + ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630, + ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT, + ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP, + ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630, + ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600, + ATI FireGL V3600, ATI Radeon HD 2600 LE, + ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470, + ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series, + ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430, + ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450, + ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series, + ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO, + ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO, + ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670, + ATI Mobility FireGL V5700, ATI Mobility FireGL V5725, + ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, + ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, + ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics, + ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100, + ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100, + ATI Radeon HD 4290, ATI Radeon HD 4290, CYPRESS, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5800 Series, + ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series, + ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series, + ATI Mobility Radeon HD 5800 Series, + ATI Mobility Radeon HD 5800 Series, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, + ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series, + ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series, + ATI Mobility Radeon HD 5000 Series, + ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670, + ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD, + ATI Mobility Radeon HD 5000 Series, + ATI Mobility Radeon HD 5000 Series, CEDAR, CEDAR, CEDAR, + ATI FirePro (FireGL) Graphics Adapter, + ATI FirePro (FireGL) Graphics Adapter, CEDAR, ATI Radeon HD 5450, + CEDAR +(II) VESA: driver for VESA chipsets: vesa +(II) FBDEV: driver for framebuffer: fbdev +(II) Primary Device is: PCI 02@00:00:0 +(II) [KMS] Kernel modesetting enabled. +(WW) Falling back to old probe method for vesa +(WW) Falling back to old probe method for fbdev +(II) Loading sub module "fbdevhw" +(II) LoadModule: "fbdevhw" +(II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so +(II) Module fbdevhw: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 0.0.2 + ABI class: X.Org Video Driver, version 6.0 +(II) RADEON(0): Creating default Display subsection in Screen section + "Default Screen" for depth/fbbpp 24/32 +(**) RADEON(0): Depth 24, (--) framebuffer bpp 32 +(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) +(==) RADEON(0): Default visual is TrueColor +(==) RADEON(0): RGB weight 888 +(II) RADEON(0): Using 8 bits per RGB (8 bit DAC) +(--) RADEON(0): Chipset: "ATI Radeon HD 2400 XT" (ChipID = 0x94c1) +(II) RADEON(0): PCIE card detected +(WW) RADEON(0): Color tiling is not yet supported on R600/R700 +(II) RADEON(0): KMS Color Tiling: disabled +drmOpenDevice: node name is /dev/dri/card0 +drmOpenDevice: open result is 12, (OK) +drmOpenByBusid: Searching for BusID pci:0000:02:00.0 +drmOpenDevice: node name is /dev/dri/card0 +drmOpenDevice: open result is 12, (OK) +drmOpenByBusid: drmOpenMinor returns 12 +drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0 +(II) RADEON(0): Output DIN using monitor section Generic Display +(II) RADEON(0): Output DVI-0 has no monitor section +(II) RADEON(0): Output DVI-1 has no monitor section +(II) RADEON(0): EDID for output DIN +(II) RADEON(0): EDID for output DVI-0 +(II) RADEON(0): Manufacturer: IVM Model: 5613 Serial#: 16843009 +(II) RADEON(0): Year: 2009 Week: 48 +(II) RADEON(0): EDID Version: 1.3 +(II) RADEON(0): Digital Display Input +(II) RADEON(0): Max Image Size [cm]: horiz.: 48 vert.: 27 +(II) RADEON(0): Gamma: 2.20 +(II) RADEON(0): DPMS capabilities: Off +(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 +(II) RADEON(0): First detailed timing is preferred mode +(II) RADEON(0): redX: 0.648 redY: 0.339 greenX: 0.282 greenY: 0.603 +(II) RADEON(0): blueX: 0.143 blueY: 0.070 whiteX: 0.312 whiteY: 0.329 +(II) RADEON(0): Supported established timings: +(II) RADEON(0): 720x400@70Hz +(II) RADEON(0): 640x480@60Hz +(II) RADEON(0): 640x480@67Hz +(II) RADEON(0): 640x480@72Hz +(II) RADEON(0): 640x480@75Hz +(II) RADEON(0): 800x600@56Hz +(II) RADEON(0): 800x600@60Hz +(II) RADEON(0): 800x600@72Hz +(II) RADEON(0): 800x600@75Hz +(II) RADEON(0): 832x624@75Hz +(II) RADEON(0): 1024x768@60Hz +(II) RADEON(0): 1024x768@70Hz +(II) RADEON(0): 1024x768@75Hz +(II) RADEON(0): 1280x1024@75Hz +(II) RADEON(0): 1152x864@75Hz +(II) RADEON(0): Manufacturer's mask: 0 +(II) RADEON(0): Supported standard timings: +(II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179 +(II) RADEON(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 +(II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 +(II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 75 vid: 36737 +(II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 +(II) RADEON(0): #5: hsize: 1440 vsize 900 refresh: 75 vid: 3989 +(II) RADEON(0): #6: hsize: 1152 vsize 864 refresh: 75 vid: 20337 +(II) RADEON(0): Supported detailed timing: +(II) RADEON(0): clock: 148.5 MHz Image Size: 477 x 268 mm +(II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0 +(II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0 +(II) RADEON(0): Serial No: 1105594803541 +(II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 29 H max: 83 kHz, PixClock max 170 MHz +(II) RADEON(0): Monitor name: PLT2250MTS +(II) RADEON(0): EDID (in hex): +(II) RADEON(0): 00ffffffffffff0026cd135601010101 +(II) RADEON(0): 3013010380301b782a3581a656489a24 +(II) RADEON(0): 125054bfef80b300a9409500818f8180 +(II) RADEON(0): 950f714f0101023a801871382d40582c +(II) RADEON(0): 4500dd0c1100001e000000ff00313130 +(II) RADEON(0): 35353934383033353431000000fd0037 +(II) RADEON(0): 4c1d5311000a202020202020000000fc +(II) RADEON(0): 00504c54323235304d54530a20200088 +(II) RADEON(0): Printing probed modes for output DVI-0 +(II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz) +(II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz) +(II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz) +(II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) +(II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) +(II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) +(II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) +(II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) +(II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) +(II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID for output DVI-1 +(II) RADEON(0): Manufacturer: DEL Model: a008 Serial#: 825247308 +(II) RADEON(0): Year: 2006 Week: 11 +(II) RADEON(0): EDID Version: 1.3 +(II) RADEON(0): Digital Display Input +(II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 31 +(II) RADEON(0): Gamma: 2.20 +(II) RADEON(0): DPMS capabilities: StandBy Suspend Off +(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 +(II) RADEON(0): Default color space is primary color space +(II) RADEON(0): First detailed timing is preferred mode +(II) RADEON(0): redX: 0.638 redY: 0.342 greenX: 0.293 greenY: 0.608 +(II) RADEON(0): blueX: 0.146 blueY: 0.067 whiteX: 0.312 whiteY: 0.328 +(II) RADEON(0): Supported established timings: +(II) RADEON(0): 720x400@70Hz +(II) RADEON(0): 640x480@60Hz +(II) RADEON(0): 640x480@75Hz +(II) RADEON(0): 800x600@60Hz +(II) RADEON(0): 800x600@75Hz +(II) RADEON(0): 1024x768@60Hz +(II) RADEON(0): 1024x768@75Hz +(II) RADEON(0): 1280x1024@75Hz +(II) RADEON(0): Manufacturer's mask: 0 +(II) RADEON(0): Supported standard timings: +(II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 +(II) RADEON(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 +(II) RADEON(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337 +(II) RADEON(0): Supported detailed timing: +(II) RADEON(0): clock: 162.0 MHz Image Size: 367 x 275 mm +(II) RADEON(0): h_active: 1600 h_sync: 1664 h_sync_end 1856 h_blank_end 2160 h_border: 0 +(II) RADEON(0): v_active: 1200 v_sync: 1201 v_sync_end 1204 v_blanking: 1250 v_border: 0 +(II) RADEON(0): Serial No: C088163710FL +(II) RADEON(0): Monitor name: DELL 2001FP +(II) RADEON(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 80 kHz, PixClock max 162 MHz +(II) RADEON(0): EDID (in hex): +(II) RADEON(0): 00ffffffffffff0010ac08a04c463031 +(II) RADEON(0): 0b10010380291f78ee6390a3574b9b25 +(II) RADEON(0): 115054a54b008180a940714f01010101 +(II) RADEON(0): 010101010101483f403062b0324040c0 +(II) RADEON(0): 13006f131100001e000000ff00433038 +(II) RADEON(0): 38313633373130464c20000000fc0044 +(II) RADEON(0): 454c4c203230303146500a20000000fd +(II) RADEON(0): 00384c1f5010000a2020202020200082 +(II) RADEON(0): Printing probed modes for output DVI-1 +(II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) +(II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Output DIN disconnected +(II) RADEON(0): Output DVI-0 connected +(II) RADEON(0): Output DVI-1 connected +(II) RADEON(0): Using exact sizes for initial modes +(II) RADEON(0): Output DVI-0 using initial mode 1600x1200 +(II) RADEON(0): Output DVI-1 using initial mode 1600x1200 +(II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated. +(II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f6f6000 +(II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM +(==) RADEON(0): DPI set to (96, 96) +(II) Loading sub module "fb" +(II) LoadModule: "fb" +(II) Loading /usr/lib/xorg/modules/libfb.so +(II) Module fb: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 1.0.0 + ABI class: X.Org ANSI C Emulation, version 0.4 +(II) Loading sub module "ramdac" +(II) LoadModule: "ramdac" +(II) Module "ramdac" already built-in +(II) Loading sub module "exa" +(II) LoadModule: "exa" +(II) Loading /usr/lib/xorg/modules/libexa.so +(II) Module exa: vendor="X.Org Foundation" + compiled for 1.7.6, module version = 2.5.0 + ABI class: X.Org Video Driver, version 6.0 +(II) UnloadModule: "vesa" +(II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so +(II) UnloadModule: "fbdev" +(II) Unloading /usr/lib/xorg/modules/drivers/fbdev_drv.so +(II) UnloadModule: "fbdevhw" +(II) Unloading /usr/lib/xorg/modules/linux/libfbdevhw.so +(--) Depth 24 pixmap format is 32 bpp +(II) RADEON(0): [DRI2] Setup complete +(II) RADEON(0): Front buffer size: 8400K +(II) RADEON(0): VRAM usage limit set to 220039K +(==) RADEON(0): Backing store disabled +(II) RADEON(0): Direct rendering enabled +(II) RADEON(0): Setting EXA maxPitchBytes +(II) EXA(0): Driver allocated offscreen pixmaps +(II) EXA(0): Driver registered support for the following operations: +(II) Solid +(II) Copy +(II) Composite (RENDER acceleration) +(II) UploadToScreen +(II) DownloadFromScreen +(II) RADEON(0): Acceleration enabled +(**) RADEON(0): DPMS enabled +(==) RADEON(0): Silken mouse enabled +(II) RADEON(0): Set up textured video +(II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message. +(--) RandR disabled +(II) Initializing built-in extension Generic Event Extension +(II) Initializing built-in extension SHAPE +(II) Initializing built-in extension MIT-SHM +(II) Initializing built-in extension XInputExtension +(II) Initializing built-in extension XTEST +(II) Initializing built-in extension BIG-REQUESTS +(II) Initializing built-in extension SYNC +(II) Initializing built-in extension XKEYBOARD +(II) Initializing built-in extension XC-MISC +(II) Initializing built-in extension SECURITY +(II) Initializing built-in extension XINERAMA +(II) Initializing built-in extension XFIXES +(II) Initializing built-in extension RENDER +(II) Initializing built-in extension RANDR +(II) Initializing built-in extension COMPOSITE +(II) Initializing built-in extension DAMAGE +(II) AIGLX: enabled GLX_MESA_copy_sub_buffer +(II) AIGLX: enabled GLX_SGI_make_current_read +(II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control +(II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects +(II) AIGLX: Loaded and initialized /usr/lib/dri/r600_dri.so +(II) GLX: Initialized DRI2 GL provider for screen 0 +(II) RADEON(0): Setting screen physical size to 423 x 317 +(II) XKB: generating xkmfile /var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm +(**) Option "CoreKeyboard" +(**) Generic Keyboard: always reports core events +(EE) Generic Keyboard: No device specified. +(II) UnloadModule: "evdev" +(EE) PreInit returned NULL for "Generic Keyboard" +(WW) Generic Mouse: No Device specified, looking for one... +(II) Generic Mouse: Setting Device option to "/dev/input/mice" +(--) Generic Mouse: Device: "/dev/input/mice" +(==) Generic Mouse: Protocol: "Auto" +(**) Generic Mouse: always reports core events +(**) Option "Device" "/dev/input/mice" +(==) Generic Mouse: Emulate3Buttons, Emulate3Timeout: 50 +(**) Generic Mouse: ZAxisMapping: buttons 4 and 5 +(**) Generic Mouse: Buttons: 9 +(**) Generic Mouse: Sensitivity: 1 +(II) XINPUT: Adding extended input device "Generic Mouse" (type: MOUSE) +(**) Generic Mouse: (accel) keeping acceleration scheme 1 +(**) Generic Mouse: (accel) acceleration profile 0 +(**) Generic Mouse: (accel) acceleration factor: 2.000 +(**) Generic Mouse: (accel) acceleration threshold: 4 +(II) Generic Mouse: Setting mouse protocol to "ExplorerPS/2" +(II) Generic Mouse: ps2EnableDataReporting: succeeded +(II) config/udev: Adding input device Power Button (/dev/input/event1) +(**) Power Button: Applying InputClass "evdev keyboard catchall" +(**) Power Button: always reports core events +(**) Power Button: Device: "/dev/input/event1" +(II) Power Button: Found keys +(II) Power Button: Configuring as keyboard +(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD) +(**) Option "xkb_rules" "evdev" +(**) Option "xkb_model" "pc105" +(**) Option "xkb_layout" "de" +(II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm +(II) config/udev: Adding input device Power Button (/dev/input/event0) +(**) Power Button: Applying InputClass "evdev keyboard catchall" +(**) Power Button: always reports core events +(**) Power Button: Device: "/dev/input/event0" +(II) Power Button: Found keys +(II) Power Button: Configuring as keyboard +(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD) +(**) Option "xkb_rules" "evdev" +(**) Option "xkb_model" "pc105" +(**) Option "xkb_layout" "de" +(II) config/udev: Adding input device Hewlett-Packard Company HP USB Smart Card Keyboard (/dev/input/event3) +(**) Hewlett-Packard Company HP USB Smart Card Keyboard: Applying InputClass "evdev keyboard catchall" +(**) Hewlett-Packard Company HP USB Smart Card Keyboard: always reports core events +(**) Hewlett-Packard Company HP USB Smart Card Keyboard: Device: "/dev/input/event3" +(II) Hewlett-Packard Company HP USB Smart Card Keyboard: Found keys +(II) Hewlett-Packard Company HP USB Smart Card Keyboard: Configuring as keyboard +(II) XINPUT: Adding extended input device "Hewlett-Packard Company HP USB Smart Card Keyboard" (type: KEYBOARD) +(**) Option "xkb_rules" "evdev" +(**) Option "xkb_model" "pc105" +(**) Option "xkb_layout" "de" +(II) config/udev: Adding input device USB Optical Mouse (/dev/input/event4) +(**) USB Optical Mouse: Applying InputClass "evdev pointer catchall" +(**) USB Optical Mouse: always reports core events +(**) USB Optical Mouse: Device: "/dev/input/event4" +(II) USB Optical Mouse: Found 3 mouse buttons +(II) USB Optical Mouse: Found scroll wheel(s) +(II) USB Optical Mouse: Found relative axes +(II) USB Optical Mouse: Found x and y relative axes +(II) USB Optical Mouse: Configuring as mouse +(**) USB Optical Mouse: YAxisMapping: buttons 4 and 5 +(**) USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 +(II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE) +(II) USB Optical Mouse: initialized for relative axes. +(II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse1) +(II) No input driver/identifier specified (ignoring) +(II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5) +(II) No input driver/identifier specified (ignoring) +(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/event2) +(**) Macintosh mouse button emulation: Applying InputClass "evdev pointer catchall" +(**) Macintosh mouse button emulation: always reports core events +(**) Macintosh mouse button emulation: Device: "/dev/input/event2" +(II) Macintosh mouse button emulation: Found 3 mouse buttons +(II) Macintosh mouse button emulation: Found relative axes +(II) Macintosh mouse button emulation: Found x and y relative axes +(II) Macintosh mouse button emulation: Configuring as mouse +(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5 +(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 +(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE) +(II) Macintosh mouse button emulation: initialized for relative axes. +(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/mouse0) +(II) No input driver/identifier specified (ignoring) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using EDID range info for horizontal sync +(II) RADEON(0): Using EDID range info for vertical refresh +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) RADEON(0): Allocate new frame buffer 3200x1200 stride 3200 +(II) RADEON(0): VRAM usage limit set to 214099K +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(II) XKB: generating xkmfile /var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) +(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing +(II) RADEON(0): EDID vendor "DEL", prod id 40968 +(II) RADEON(0): Using hsync ranges from config file +(II) RADEON(0): Using vrefresh ranges from config file +(II) RADEON(0): Printing DDC gathered Modelines: +(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) +(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) +(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) +(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) +(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) +(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) +(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) diff --git a/resources/config/1/config/var/log/auth.log b/resources/config/1/config/var/log/auth.log new file mode 100755 index 0000000..ef91fa3 --- /dev/null +++ b/resources/config/1/config/var/log/auth.log @@ -0,0 +1,35 @@ +Jan 5 13:23:14 lsfks20 sshd[2781]: Server listening on 0.0.0.0 port 22. +Jan 5 13:23:14 lsfks20 sshd[2781]: Server listening on :: port 22. +Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_unix(kdm:auth): authentication failure; logname= uid=0 euid=0 tty=:0 ruser= rhost= user=mp57 +Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_krb5(kdm:auth): user mp57 authenticated as mp57@PUBLIC.ADS.UNI-FREIBURG.DE +Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_unix(kdm:session): session opened for user mp57 by (uid=0) +Jan 5 13:28:53 lsfks20 polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.9 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) +Jan 5 13:33:44 lsfks20 nscd: nss_ldap: reconnecting to LDAP server... +Jan 5 13:33:44 lsfks20 nscd: nss_ldap: reconnected to LDAP server ldap://132.230.1.62 after 1 attempt +Jan 5 13:33:53 lsfks20 rpc.idmapd[2757]: nss_ldap: reconnecting to LDAP server... +Jan 5 13:33:53 lsfks20 rpc.idmapd[2757]: nss_ldap: reconnected to LDAP server ldap://132.230.1.62 after 1 attempt +Jan 5 13:35:46 lsfks20 sudo: pam_unix(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= user=mp57 +Jan 5 13:35:46 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= +Jan 5 13:35:59 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= +Jan 5 13:36:03 lsfks20 sudo: pam_unix(sudo:auth): conversation failed +Jan 5 13:36:03 lsfks20 sudo: pam_unix(sudo:auth): auth could not identify password for [mp57] +Jan 5 13:36:03 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= +Jan 5 13:36:03 lsfks20 sudo: mp57 : 2 incorrect password attempts ; TTY=pts/0 ; PWD=/home/mp57 ; USER=root ; COMMAND=/bin/su +Jan 5 13:36:10 lsfks20 su[3981]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root +Jan 5 13:36:10 lsfks20 su[3981]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= +Jan 5 13:36:12 lsfks20 su[3981]: pam_authenticate: User not known to the underlying authentication module +Jan 5 13:36:12 lsfks20 su[3981]: FAILED su for root by mp57 +Jan 5 13:36:12 lsfks20 su[3981]: - /dev/pts/0 mp57:root +Jan 5 13:36:35 lsfks20 su[3985]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root +Jan 5 13:36:35 lsfks20 su[3985]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= +Jan 5 13:36:37 lsfks20 su[3985]: pam_authenticate: User not known to the underlying authentication module +Jan 5 13:36:37 lsfks20 su[3985]: FAILED su for root by mp57 +Jan 5 13:36:37 lsfks20 su[3985]: - /dev/pts/0 mp57:root +Jan 5 13:37:30 lsfks20 su[3994]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root +Jan 5 13:37:30 lsfks20 su[3994]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= +Jan 5 13:37:32 lsfks20 su[3994]: pam_authenticate: User not known to the underlying authentication module +Jan 5 13:37:32 lsfks20 su[3994]: FAILED su for root by mp57 +Jan 5 13:37:32 lsfks20 su[3994]: - /dev/pts/0 mp57:root +Jan 5 13:37:40 lsfks20 su[3997]: Successful su for root by mp57 +Jan 5 13:37:40 lsfks20 su[3997]: + /dev/pts/0 mp57:root +Jan 5 13:37:40 lsfks20 su[3997]: pam_unix(su:session): session opened for user root by mp57(uid=14620) diff --git a/resources/config/1/config/var/log/daemon.log b/resources/config/1/config/var/log/daemon.log new file mode 100755 index 0000000..75da05d --- /dev/null +++ b/resources/config/1/config/var/log/daemon.log @@ -0,0 +1,45 @@ +Jan 5 13:24:31 lsfks20 acpid: starting up with proc fs +Jan 5 13:23:14 lsfks20 acpid: 36 rules loaded +Jan 5 13:23:14 lsfks20 acpid: waiting for events: event logging is off +Jan 5 13:23:14 lsfks20 udevd-work[2819]: mknod(/dev/pktcdvd/control, 020660, (10,60) failed: Not a directory +Jan 5 13:23:14 lsfks20 sm-notify[2604]: Failed to open /var/lib/nfs/sm.bak: No such file or directory +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Version 1.1.6 Starting +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Flags: +Jan 5 13:23:14 lsfks20 vmnetBridge: Daemon created. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface eth0 index:2 +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface br0 index:3 +Jan 5 13:23:14 lsfks20 vmnetBridge: RTM_NEWROUTE: index:3 +Jan 5 13:23:14 lsfks20 vmnetBridge: Stopped bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge br0 to virtual network 0. +Jan 5 13:23:14 lsfks20 udhcpd[3127]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3127]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3127]: can't open '/var/run/vmware/udhcpd-vmnet1.leases': No such file or directory +Jan 5 13:23:14 lsfks20 udhcpd[3195]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3195]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3195]: can't open '/var/run/vmware/udhcpd-vmnet8.leases': No such file or directory +Jan 5 13:23:25 lsfks20 automount[3293]: read_map_source: relative path invalid in files map name +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:*-Greeter] at /etc/kde4/kdm/kdmrc:15 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'LogSource' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:29 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:31 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized section name [xdmcp] at /etc/kde4/kdm/kdmrc:33 +Jan 5 13:23:25 lsfks20 automount[3293]: lookup_init:136: lookup(yp): map #/etc/auto.misc: Local domain name not set +Jan 5 13:23:25 lsfks20 acpid: client connected from 3307[0:0] +Jan 5 13:23:25 lsfks20 acpid: 1 client rule loaded +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: Could not parse desktop file /home/mp57/.config/autostart/xfconf-migration-4.6.desktop: Die Schlüsselwertedatei enthält nicht den Schlüssel »Name« +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: could not read /home/mp57/.config/autostart/xfconf-migration-4.6.desktop +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. +Jan 5 13:28:53 lsfks20 polkitd[3760]: started daemon version 0.96 using authority implementation `local' version `0.96' +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3770 of process 3770 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3776 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3777 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3791 of process 3791 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. diff --git a/resources/config/1/config/var/log/debug b/resources/config/1/config/var/log/debug new file mode 100755 index 0000000..44c3be3 --- /dev/null +++ b/resources/config/1/config/var/log/debug @@ -0,0 +1,159 @@ +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT +Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. +Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device +Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. +Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp +Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). +Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 +Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge +Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down +Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached +Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing +Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present +Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present +Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present +Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. diff --git a/resources/config/1/config/var/log/dmesg b/resources/config/1/config/var/log/dmesg new file mode 100755 index 0000000..36af8c6 --- /dev/null +++ b/resources/config/1/config/var/log/dmesg @@ -0,0 +1,673 @@ +[ 0.000000] Initializing cgroup subsys cpuset +[ 0.000000] Initializing cgroup subsys cpu +[ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +[ 0.000000] KERNEL supported cpus: +[ 0.000000] Intel GenuineIntel +[ 0.000000] AMD AuthenticAMD +[ 0.000000] NSC Geode by NSC +[ 0.000000] Cyrix CyrixInstead +[ 0.000000] Centaur CentaurHauls +[ 0.000000] Transmeta GenuineTMx86 +[ 0.000000] Transmeta TransmetaCPU +[ 0.000000] UMC UMC UMC UMC +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +[ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +[ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +[ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +[ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +[ 0.000000] DMI 2.4 present. +[ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +[ 0.000000] MTRR default type: uncachable +[ 0.000000] MTRR fixed ranges enabled: +[ 0.000000] 00000-9FFFF write-back +[ 0.000000] A0000-BFFFF uncachable +[ 0.000000] C0000-E3FFF write-protect +[ 0.000000] E4000-EFFFF write-back +[ 0.000000] F0000-FFFFF write-protect +[ 0.000000] MTRR variable ranges enabled: +[ 0.000000] 0 base 0000000000 mask FF80000000 write-back +[ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +[ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +[ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +[ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +[ 0.000000] 5 disabled +[ 0.000000] 6 disabled +[ 0.000000] 7 disabled +[ 0.000000] TOM2: 0000000130000000 aka 4864M +[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +[ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +[ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +[ 0.000000] Scanning 1 areas for low memory corruption +[ 0.000000] modified physical RAM map: +[ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +[ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +[ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +[ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +[ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +[ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +[ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +[ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +[ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +[ 0.000000] initial memory mapped : 0 - 00e00000 +[ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] 0000000000 - 0000200000 page 4k +[ 0.000000] 0000200000 - 0037800000 page 2M +[ 0.000000] 0037800000 - 00379fe000 page 4k +[ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +[ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +[ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +[ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +[ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +[ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +[ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +[ 0.000000] ACPI: FACS cfec7f00 00040 +[ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] 3974MB HIGHMEM available. +[ 0.000000] 889MB LOWMEM available. +[ 0.000000] mapped low ram: 0 - 379fe000 +[ 0.000000] low ram: 0 - 379fe000 +[ 0.000000] node 0 low ram: 00000000 - 379fe000 +[ 0.000000] node 0 bootmap 00009000 - 0000ff40 +[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +[ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +[ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +[ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +[ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +[ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +[ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +[ 0.000000] Zone PFN ranges: +[ 0.000000] DMA 0x00000000 -> 0x00001000 +[ 0.000000] Normal 0x00001000 -> 0x000379fe +[ 0.000000] HighMem 0x000379fe -> 0x00130000 +[ 0.000000] Movable zone start PFN for each node +[ 0.000000] early_node_map[4] active PFN ranges +[ 0.000000] 0: 0x00000000 -> 0x00000002 +[ 0.000000] 0: 0x00000006 -> 0x0000009f +[ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +[ 0.000000] 0: 0x00100000 -> 0x00130000 +[ 0.000000] On node 0 totalpages: 1048146 +[ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +[ 0.000000] DMA zone: 32 pages used for memmap +[ 0.000000] DMA zone: 0 pages reserved +[ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +[ 0.000000] Normal zone: 1748 pages used for memmap +[ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +[ 0.000000] HighMem zone: 7949 pages used for memmap +[ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +[ 0.000000] Using APIC driver default +[ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +[ 0.000000] ACPI: Local APIC address 0xfee00000 +[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +[ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +[ 0.000000] ACPI: IRQ0 used by override. +[ 0.000000] ACPI: IRQ2 used by override. +[ 0.000000] ACPI: IRQ9 used by override. +[ 0.000000] Using ACPI (MADT) for SMP configuration information +[ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +[ 0.000000] nr_irqs_gsi: 24 +[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +[ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +[ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +[ 0.000000] Booting paravirtualized kernel on bare hardware +[ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +[ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +[ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +[ 0.000000] pcpu-alloc: [0] 0 1 +[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +[ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +[ 0.000000] Enabling fast FPU save and restore... done. +[ 0.000000] Enabling unmasked SIMD FPU exception support... done. +[ 0.000000] Initializing CPU#0 +[ 0.000000] allocated 24903680 bytes of page_cgroup +[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +[ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +[ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +[ 0.000000] virtual kernel memory layout: +[ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +[ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +[ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +[ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +[ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +[ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +[ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +[ 0.000000] Hierarchical RCU implementation. +[ 0.000000] NR_IRQS:2304 nr_irqs:424 +[ 0.000000] Console: colour dummy device 80x25 +[ 0.000000] console [tty0] enabled +[ 0.000000] hpet clockevent registered +[ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +[ 0.000000] Fast TSC calibration using PIT +[ 0.000000] Detected 2493.628 MHz processor. +[ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +[ 0.008020] Security Framework initialized +[ 0.008038] AppArmor: AppArmor initialized +[ 0.008044] Mount-cache hash table entries: 512 +[ 0.012007] Initializing cgroup subsys ns +[ 0.012011] Initializing cgroup subsys cpuacct +[ 0.012014] Initializing cgroup subsys memory +[ 0.012020] Initializing cgroup subsys devices +[ 0.012022] Initializing cgroup subsys freezer +[ 0.012024] Initializing cgroup subsys net_cls +[ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.012044] CPU: Physical Processor ID: 0 +[ 0.012046] CPU: Processor Core ID: 0 +[ 0.012049] mce: CPU supports 5 MCE banks +[ 0.012059] using C1E aware idle routine +[ 0.012066] Performance Events: AMD PMU driver. +[ 0.012069] ... version: 0 +[ 0.012071] ... bit width: 48 +[ 0.012072] ... generic registers: 4 +[ 0.012074] ... value mask: 0000ffffffffffff +[ 0.012076] ... max period: 00007fffffffffff +[ 0.012078] ... fixed-purpose events: 0 +[ 0.012079] ... event mask: 000000000000000f +[ 0.012083] Checking 'hlt' instruction... OK. +[ 0.029950] ACPI: Core revision 20090903 +[ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +[ 0.039977] ftrace: allocating 22420 entries in 44 pages +[ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +[ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +[ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +[ 0.012000] Initializing CPU#1 +[ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +[ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +[ 0.012000] CPU: Physical Processor ID: 0 +[ 0.012000] CPU: Processor Core ID: 1 +[ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +[ 0.172072] Brought up 2 CPUs +[ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +[ 0.172237] CPU0 attaching sched-domain: +[ 0.172240] domain 0: span 0-1 level MC +[ 0.172242] groups: 0 1 +[ 0.172247] CPU1 attaching sched-domain: +[ 0.172249] domain 0: span 0-1 level MC +[ 0.172251] groups: 1 0 +[ 0.172319] devtmpfs: initialized +[ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +[ 0.172319] regulator: core version 0.5 +[ 0.172319] Time: 12:24:22 Date: 01/05/11 +[ 0.172319] NET: Registered protocol family 16 +[ 0.172319] EISA bus registered +[ 0.172319] Trying to unpack rootfs image as initramfs... +[ 0.172319] ACPI: bus type pci registered +[ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +[ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +[ 0.172319] PCI: Using MMCONFIG for extended config space +[ 0.172319] PCI: Using configuration type 1 for base access +[ 0.176093] bio: create slab at 0 +[ 0.176604] ACPI: EC: Look up EC in DSDT +[ 0.179477] ACPI: Interpreter enabled +[ 0.179481] ACPI: (supports S0 S3 S4 S5) +[ 0.179498] ACPI: Using IOAPIC for interrupt routing +[ 0.182958] ACPI: No dock devices found. +[ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +[ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +[ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +[ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +[ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +[ 0.183342] pci 0000:00:02.0: PME# disabled +[ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 0.183380] pci 0000:00:07.0: PME# disabled +[ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +[ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +[ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +[ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +[ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +[ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +[ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +[ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +[ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +[ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +[ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +[ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +[ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +[ 0.183927] pci 0000:00:13.5: supports D1 D2 +[ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +[ 0.183933] pci 0000:00:13.5: PME# disabled +[ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +[ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +[ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +[ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +[ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +[ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +[ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +[ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +[ 0.184211] pci 0000:00:14.2: PME# disabled +[ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +[ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +[ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +[ 0.184443] pci 0000:02:00.0: supports D1 D2 +[ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +[ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +[ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +[ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +[ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +[ 0.184629] pci 0000:3f:00.0: PME# disabled +[ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +[ 0.184755] pci 0000:00:14.4: transparent bridge +[ 0.184774] pci_bus 0000:00: on NUMA node 0 +[ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +[ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +[ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +[ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +[ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +[ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +[ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +[ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +[ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +[ 0.200343] vgaarb: loaded +[ 0.200440] SCSI subsystem initialized +[ 0.200519] libata version 3.00 loaded. +[ 0.200580] usbcore: registered new interface driver usbfs +[ 0.200595] usbcore: registered new interface driver hub +[ 0.200618] usbcore: registered new device driver usb +[ 0.200753] ACPI: WMI: Mapper loaded +[ 0.200755] PCI: Using ACPI for IRQ routing +[ 0.200903] NetLabel: Initializing +[ 0.200905] NetLabel: domain hash size = 128 +[ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +[ 0.200918] NetLabel: unlabeled traffic allowed by default +[ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +[ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +[ 0.202990] Switching to clocksource hpet +[ 0.203240] AppArmor: AppArmor Filesystem Enabled +[ 0.203240] pnp: PnP ACPI init +[ 0.203240] ACPI: bus type pnp registered +[ 0.203882] pnp: PnP ACPI: found 15 devices +[ 0.203884] ACPI: ACPI bus type pnp unregistered +[ 0.203887] PnPBIOS: Disabled by ACPI PNP +[ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +[ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +[ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +[ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +[ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +[ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +[ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +[ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +[ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +[ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +[ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +[ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +[ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +[ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +[ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +[ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +[ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +[ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +[ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +[ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +[ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +[ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +[ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +[ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +[ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +[ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +[ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +[ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +[ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +[ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +[ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +[ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +[ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +[ 0.238684] pci 0000:00:07.0: IO window: disabled +[ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +[ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +[ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +[ 0.238694] pci 0000:00:14.4: IO window: disabled +[ 0.238699] pci 0000:00:14.4: MEM window: disabled +[ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +[ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +[ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +[ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +[ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +[ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +[ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +[ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +[ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +[ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +[ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +[ 0.238780] NET: Registered protocol family 2 +[ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +[ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +[ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +[ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +[ 0.240198] TCP reno registered +[ 0.240284] NET: Registered protocol family 1 +[ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +[ 0.240370] pci 0000:02:00.0: Boot video device +[ 0.240551] cpufreq-nforce2: No nForce2 chipset. +[ 0.240574] Scanning for low memory corruption every 60 seconds +[ 0.240681] audit: initializing netlink socket (disabled) +[ 0.240691] type=2000 audit(1294230262.240:1): initialized +[ 0.249307] highmem bounce pool size: 64 pages +[ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +[ 0.250539] VFS: Disk quotas dquot_6.5.2 +[ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +[ 0.251068] fuse init (API version 7.13) +[ 0.251139] msgmni has been set to 1625 +[ 0.251329] alg: No test for stdrng (krng) +[ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +[ 0.251377] io scheduler noop registered +[ 0.251379] io scheduler anticipatory registered +[ 0.251381] io scheduler deadline registered +[ 0.251414] io scheduler cfq registered (default) +[ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +[ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +[ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +[ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +[ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +[ 0.251713] ACPI: Power Button [PBTN] +[ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +[ 0.251756] ACPI: Power Button [PWRF] +[ 0.251956] processor LNXCPU:00: registered as cooling_device0 +[ 0.252097] processor LNXCPU:01: registered as cooling_device1 +[ 0.253777] isapnp: Scanning for PnP cards... +[ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +[ 0.256308] brd: module loaded +[ 0.256698] loop: module loaded +[ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +[ 0.256921] alloc irq_desc for 16 on node -1 +[ 0.256923] alloc kstat_irqs on node -1 +[ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.257252] Fixed MDIO Bus: probed +[ 0.257286] PPP generic driver version 2.4.2 +[ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +[ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +[ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.257413] alloc irq_desc for 19 on node -1 +[ 0.257415] alloc kstat_irqs on node -1 +[ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +[ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +[ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +[ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +[ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +[ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +[ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +[ 0.269326] usb usb1: configuration #1 chosen from 1 choice +[ 0.269352] hub 1-0:1.0: USB hub found +[ 0.269360] hub 1-0:1.0: 10 ports detected +[ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +[ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +[ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +[ 0.321535] Freeing initrd memory: 6158k freed +[ 0.329388] usb usb2: configuration #1 chosen from 1 choice +[ 0.329413] hub 2-0:1.0: USB hub found +[ 0.329426] hub 2-0:1.0: 2 ports detected +[ 0.329480] alloc irq_desc for 17 on node -1 +[ 0.329482] alloc kstat_irqs on node -1 +[ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +[ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +[ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +[ 0.389066] usb usb3: configuration #1 chosen from 1 choice +[ 0.389087] hub 3-0:1.0: USB hub found +[ 0.389097] hub 3-0:1.0: 2 ports detected +[ 0.389136] alloc irq_desc for 18 on node -1 +[ 0.389138] alloc kstat_irqs on node -1 +[ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +[ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +[ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +[ 0.449065] usb usb4: configuration #1 chosen from 1 choice +[ 0.449086] hub 4-0:1.0: USB hub found +[ 0.449095] hub 4-0:1.0: 2 ports detected +[ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +[ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +[ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +[ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +[ 0.509057] usb usb5: configuration #1 chosen from 1 choice +[ 0.509078] hub 5-0:1.0: USB hub found +[ 0.509087] hub 5-0:1.0: 2 ports detected +[ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +[ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +[ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +[ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +[ 0.569055] usb usb6: configuration #1 chosen from 1 choice +[ 0.569076] hub 6-0:1.0: USB hub found +[ 0.569085] hub 6-0:1.0: 2 ports detected +[ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +[ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +[ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.571764] mice: PS/2 mouse device common for all mice +[ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +[ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +[ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +[ 0.571998] device-mapper: uevent: version 1.0.3 +[ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +[ 0.572162] device-mapper: multipath: version 1.1.0 loaded +[ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +[ 0.572263] EISA: Probing bus 0 at eisa.0 +[ 0.572270] Cannot allocate resource for EISA slot 1 +[ 0.572300] EISA: Detected 0 cards. +[ 0.572367] cpuidle: using governor ladder +[ 0.572369] cpuidle: using governor menu +[ 0.572740] TCP cubic registered +[ 0.572877] NET: Registered protocol family 10 +[ 0.573274] lo: Disabled Privacy Extensions +[ 0.573540] NET: Registered protocol family 17 +[ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +[ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +[ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +[ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +[ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +[ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +[ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +[ 0.607797] isapnp: No Plug & Play device found +[ 0.607819] powernow-k8: ph2 null fid transition 0x11 +[ 0.607844] Using IPI No-Shortcut mode +[ 0.607931] PM: Resume from disk failed. +[ 0.607947] registered taskstats version 1 +[ 0.608207] Magic number: 11:987:429 +[ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +[ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +[ 0.608301] EDD information not available. +[ 0.608351] Freeing unused kernel memory: 672k freed +[ 0.608801] Write protecting the kernel text: 4836k +[ 0.608861] Write protecting the kernel read-only data: 1880k +[ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +[ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +[ 0.663001] vesafb: protected mode interface info at c000:a01e +[ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +[ 0.663005] vesafb: scrolling: redraw +[ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +[ 0.663591] fb0: VESA VGA frame buffer device +[ 0.671307] Console: switching to colour frame buffer device 128x48 +[ 0.705121] usbcore: registered new interface driver hiddev +[ 0.705613] usbcore: registered new interface driver usbhid +[ 0.705617] usbhid: v2.6:USB HID core driver +[ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +[ 1.066113] tg3.c:v3.102 (September 1, 2009) +[ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +[ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +[ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +[ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +[ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +[ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +[ 1.184045] Bridge firewalling registered +[ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +[ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +[ 1.232247] device eth0 entered promiscuous mode +[ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +[ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +[ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +[ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +[ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +[ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +[ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +[ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +[ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +[ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +[ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +[ 4.379979] br0: port 1(eth0) entering forwarding state +[ 5.348605] RPC: Registered udp transport module. +[ 5.348609] RPC: Registered tcp transport module. +[ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 5.419953] ahci 0000:00:12.0: version 3.0 +[ 5.419971] alloc irq_desc for 22 on node -1 +[ 5.419973] alloc kstat_irqs on node -1 +[ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +[ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +[ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +[ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +[ 5.420538] scsi0 : ahci +[ 5.421424] scsi1 : ahci +[ 5.421992] scsi2 : ahci +[ 5.423101] scsi3 : ahci +[ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +[ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +[ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +[ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +[ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +[ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +[ 5.908026] ata1: softreset failed (device not ready) +[ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +[ 5.908051] ata2: softreset failed (device not ready) +[ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +[ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +[ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +[ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +[ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.073402] ata1.00: configured for UDMA/133 +[ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +[ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +[ 6.079640] ata2.00: configured for UDMA/100 +[ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +[ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +[ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +[ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +[ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 6.093820] sda: +[ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +[ 6.112956] sda1 sda2 sda3 sda4 +[ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +[ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +[ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +[ 6.544933] Uniform CD-ROM driver Revision: 3.20 +[ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +[ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +[ 6.556221] Linux agpgart interface v0.103 +[ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +[ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +[ 6.661458] scsi4 : pata_atiixp +[ 6.662649] scsi5 : pata_atiixp +[ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +[ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +[ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +[ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +[ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +[ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +[ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +[ 7.848088] ppdev: user-space parallel port driver +[ 7.917660] aufs 2-standalone.tree-20091207 +[ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +[ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +[ 7.985345] Using default: (25% of RAM). +[ 7.985348] ramzswap: disk size set to 1030140 kB +[ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +[ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 9.732649] udev: starting version 151 +[ 9.783447] lp0: using parport0 (interrupt-driven). +[ 9.963224] [drm] Initialized drm 1.1.0 20060810 +[ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +[ 10.165758] [drm] radeon defaulting to kernel modesetting. +[ 10.165761] [drm] radeon kernel modesetting enabled. +[ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +[ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +[ 10.167854] [drm] radeon: Initializing kernel modesetting. +[ 10.203499] [drm] register mmio base: 0xF0100000 +[ 10.203502] [drm] register mmio size: 65536 +[ 10.203754] ATOM BIOS: 113 +[ 10.203768] [drm] Clocks initialized ! +[ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +[ 10.203959] [drm] RAM width 64bits DDR +[ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +[ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +[ 10.207479] [drm] radeon: 256M of VRAM memory ready +[ 10.207481] [drm] radeon: 512M of GTT memory ready. +[ 10.207521] [drm] radeon: irq initialized. +[ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +[ 10.217958] [drm] Loading RV610 Microcode +[ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +[ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +[ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +[ 10.422024] [drm] ring test succeeded in 1 usecs +[ 10.426041] [drm] radeon: ib pool ready. +[ 10.426122] [drm] ib test succeeded in 0 usecs +[ 10.426125] [drm] Enabling audio support +[ 10.426155] [drm] Default TV standard: NTSC +[ 10.428628] [drm] Radeon Display Connectors +[ 10.428631] [drm] Connector 0: +[ 10.428633] [drm] DIN +[ 10.428634] [drm] Encoders: +[ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +[ 10.428637] [drm] Connector 1: +[ 10.428639] [drm] DVI-I +[ 10.428640] [drm] HPD2 +[ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +[ 10.428644] [drm] Encoders: +[ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +[ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +[ 10.428648] [drm] Connector 2: +[ 10.428650] [drm] DVI-I +[ 10.428651] [drm] HPD1 +[ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +[ 10.428654] [drm] Encoders: +[ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +[ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +[ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +[ 10.451333] vboxdrv: Successfully done. +[ 10.451335] vboxdrv: Found 2 processor cores. +[ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +[ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +[ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). diff --git a/resources/config/1/config/var/log/dmesg.0 b/resources/config/1/config/var/log/dmesg.0 new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/kdm.log b/resources/config/1/config/var/log/kdm.log new file mode 100755 index 0000000..29ac52e --- /dev/null +++ b/resources/config/1/config/var/log/kdm.log @@ -0,0 +1,77 @@ +******************************************************************************** +Note that your system uses syslog. All of kdm's internally generated messages +(i.e., not from libraries and external programs/scripts it uses) go to the +daemon.* syslog facility; check your syslog configuration to find out to which +file(s) it is logged. PAM logs messages related to authentication to authpriv.*. +******************************************************************************** + + +X.Org X Server 1.7.6 +Release Date: 2010-03-17 +X Protocol Version 11, Revision 0 +Build Operating System: Linux 2.6.24-27-server i686 Ubuntu +Current Operating System: Linux lsfks20 2.6.32-25-generic-pae #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 i686 +Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Build Date: 21 July 2010 12:47:34PM +xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) +Current version of pixman: 0.16.4 + Before reporting problems, check http://wiki.x.org + to make sure that you have the latest version. +Markers: (--) probed, (**) from config file, (==) default setting, + (++) from command line, (!!) notice, (II) informational, + (WW) warning, (EE) error, (NI) not implemented, (??) unknown. +(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 5 13:23:25 2011 +(==) Using config file: "/etc/X11/xorg.conf" +(==) Using config directory: "/usr/lib/X11/xorg.conf.d" +(II) [KMS] Kernel modesetting enabled. +(EE) Generic Keyboard: No device specified. +(EE) PreInit returned NULL for "Generic Keyboard" +QFont::fromString: Invalid description 'Serif,20,5,0,50,0' +QFont::fromString: Invalid description 'Sans Serif,10,5,0,50,0' +QFont::fromString: Invalid description 'Sans Serif,10,5,0,75,0' +QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: No such file or directory +QFileSystemWatcher: failed to add paths: /tmp/0861351660/.config/ibus/bus +Bus::open: Can not get ibus-daemon's address. +IBusInputContext::createInputContext: no connection to ibus-daemon +The XKEYBOARD keymap compiler (xkbcomp) reports: +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Duplicate shape name "" +> Using last definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +> Warning: Multiple doodads named "" +> Using first definition +Errors from xkbcomp are not fatal to the X server diff --git a/resources/config/1/config/var/log/kern.log b/resources/config/1/config/var/log/kern.log new file mode 100755 index 0000000..3489c61 --- /dev/null +++ b/resources/config/1/config/var/log/kern.log @@ -0,0 +1,725 @@ +Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. +Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns +Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct +Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory +Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer +Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls +Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks +Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine +Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. +Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f +Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. +Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access +Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT +Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) +Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. +Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge +Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs +Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub +Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb +Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default +Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP +Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device +Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. +Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds +Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... +Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed +Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice +Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. +Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder +Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu +Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions +Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found +Jan 5 13:24:31 lsfks20 kernel: [ 0.607819] powernow-k8: ph2 null fid transition 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. +Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k +Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw +Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device +Jan 5 13:24:31 lsfks20 kernel: [ 0.671307] Console: switching to colour frame buffer device 128x48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev +Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid +Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver +Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) +Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered +Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode +Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state +Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908026] ata1: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 5.908051] ata2: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: +Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.112956] sda1 sda2 sda3 sda4 +Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 +Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 +Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver +Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 +Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). +Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB +Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 +Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). +Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 +Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! +Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR +Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready +Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode +Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support +Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC +Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors +Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN +Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). +Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 +Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge +Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down +Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached +Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 +Jan 5 13:23:14 lsfks20 kernel: [ 10.738346] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 +Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 +Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team +Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device +Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier +Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing +Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present +Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k +Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present +Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found +Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present +Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present +Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present diff --git a/resources/config/1/config/var/log/lastlog b/resources/config/1/config/var/log/lastlog new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/lpr.log b/resources/config/1/config/var/log/lpr.log new file mode 100755 index 0000000..84f98f1 --- /dev/null +++ b/resources/config/1/config/var/log/lpr.log @@ -0,0 +1,4 @@ +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent diff --git a/resources/config/1/config/var/log/mail.err b/resources/config/1/config/var/log/mail.err new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/mail.info b/resources/config/1/config/var/log/mail.info new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/mail.log b/resources/config/1/config/var/log/mail.log new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/mail.warn b/resources/config/1/config/var/log/mail.warn new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/messages b/resources/config/1/config/var/log/messages new file mode 100755 index 0000000..8eaf361 --- /dev/null +++ b/resources/config/1/config/var/log/messages @@ -0,0 +1,574 @@ +Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. +Jan 5 13:24:31 lsfks20 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="2615" x-info="http://www.rsyslog.com"] (re)start +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's groupid changed to 102 +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's userid changed to 101 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. +Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns +Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct +Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory +Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer +Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls +Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks +Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine +Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. +Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f +Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. +Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access +Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) +Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. +Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge +Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs +Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub +Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb +Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default +Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP +Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. +Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds +Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... +Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed +Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice +Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. +Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder +Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu +Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions +Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found +Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k +Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw +Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device +Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev +Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid +Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver +Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) +Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered +Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode +Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state +Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: +Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 +Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 +Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver +Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 +Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). +Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB +Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 +Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). +Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 +Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! +Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR +Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready +Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode +Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support +Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC +Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors +Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN +Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 +Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 +Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 +Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team +Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device +Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier +Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present +Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k +Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found diff --git a/resources/config/1/config/var/log/news/news.crit b/resources/config/1/config/var/log/news/news.crit new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/news/news.err b/resources/config/1/config/var/log/news/news.err new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/news/news.notice b/resources/config/1/config/var/log/news/news.notice new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/pm-powersave.log b/resources/config/1/config/var/log/pm-powersave.log new file mode 100755 index 0000000..996d91c --- /dev/null +++ b/resources/config/1/config/var/log/pm-powersave.log @@ -0,0 +1,7 @@ +/usr/lib/pm-utils/power.d/95hdparm-apm false:success. +/usr/lib/pm-utils/power.d/anacron false:start: Unknown job: anacron +success. +/usr/lib/pm-utils/power.d/powersave-policy-dirty-writeback false:success. +/usr/lib/pm-utils/power.d/powersave-policy-hda-powerdown false:success. +/usr/lib/pm-utils/power.d/sched-powersave false:**sched policy powersave OFF +success. diff --git a/resources/config/1/config/var/log/syslog b/resources/config/1/config/var/log/syslog new file mode 100755 index 0000000..2261682 --- /dev/null +++ b/resources/config/1/config/var/log/syslog @@ -0,0 +1,781 @@ +Jan 5 13:24:31 lsfks20 rsyslogd: connot create '/var/spool/postfix/dev/log': No such file or directory +Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. +Jan 5 13:24:31 lsfks20 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="2615" x-info="http://www.rsyslog.com"] (re)start +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's groupid changed to 102 +Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's userid changed to 101 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT +Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. +Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) +Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns +Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct +Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory +Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer +Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls +Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks +Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine +Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. +Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f +Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. +Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs +Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs +Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). +Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: +Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC +Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space +Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access +Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT +Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) +Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. +Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error +Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot +Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold +Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge +Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] +Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS +Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) +Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none +Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. +Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs +Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub +Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb +Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing +Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default +Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter +Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init +Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices +Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered +Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP +Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved +Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f +Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff +Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] +Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device +Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. +Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds +Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) +Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized +Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages +Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) +Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] +Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... +Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A +Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed +Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky +Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround +Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 +Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 +Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller +Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 +Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 +Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found +Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected +Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver +Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice +Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs +Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com +Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded +Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. +Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder +Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu +Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered +Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions +Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) +Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa +Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb +Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd +Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf +Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found +Jan 5 13:24:31 lsfks20 kernel: [ 0.607819] powernow-k8: ph2 null fid transition 0x11 +Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode +Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. +Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 +Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) +Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found +Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. +Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed +Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k +Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k +Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e +Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw +Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 +Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device +Jan 5 13:24:31 lsfks20 kernel: [ 0.671307] Console: switching to colour frame buffer device 128x48 +Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev +Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid +Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver +Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) +Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 +Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 +Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) +Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] +Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] +Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered +Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready +Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode +Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 +Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 +Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice +Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 +Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. +Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready +Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state +Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. +Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 +Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit +Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode +Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc +Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci +Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 +Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908026] ata1: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 5.908051] ata2: softreset failed (device not ready) +Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying +Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) +Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd +Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 +Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) +Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off +Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 +Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: +Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.112956] sda1 sda2 sda3 sda4 +Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk +Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray +Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 +Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 +Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 +Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 +Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 +Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp +Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 +Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 +Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 +Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 +Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI +Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] +Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver +Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 +Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 +Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. +Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). +Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB +Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS +Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 +Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent +Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp +Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent +Jan 5 13:24:31 lsfks20 acpid: starting up with proc fs +Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 +Jan 5 13:23:14 lsfks20 acpid: 36 rules loaded +Jan 5 13:23:14 lsfks20 acpid: waiting for events: event logging is off +Jan 5 13:23:14 lsfks20 udevd-work[2819]: mknod(/dev/pktcdvd/control, 020660, (10,60) failed: Not a directory +Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. +Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 +Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 +Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. +Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 +Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! +Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M +Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR +Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready +Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 +Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode +Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin +Jan 5 13:23:14 lsfks20 sm-notify[2604]: Failed to open /var/lib/nfs/sm.bak: No such file or directory +Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin +Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Version 1.1.6 Starting +Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Flags: +Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. +Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs +Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support +Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC +Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors +Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN +Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I +Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c +Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: +Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 +Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... +Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac +Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. +Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). +Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized +Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. +Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 +Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized +Jan 5 13:23:14 lsfks20 vmnetBridge: Daemon created. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface eth0 index:2 +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface br0 index:3 +Jan 5 13:23:14 lsfks20 vmnetBridge: RTM_NEWROUTE: index:3 +Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge +Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened +Jan 5 13:23:14 lsfks20 vmnetBridge: Stopped bridge eth0 to virtual network 0. +Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge br0 to virtual network 0. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down +Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached +Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) +Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened +Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up +Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached +Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) +Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. +Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened +Jan 5 13:23:14 lsfks20 udhcpd[3127]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3127]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3127]: can't open '/var/run/vmware/udhcpd-vmnet1.leases': No such file or directory +Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 +Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 +Jan 5 13:23:14 lsfks20 kernel: [ 10.738346] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver +Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 +Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 +Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team +Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device +Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier +Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing +Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 +Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present +Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) +Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use +Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or +Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. +Jan 5 13:23:14 lsfks20 udhcpd[3195]: udhcpd (v1.17.1) started +Jan 5 13:23:14 lsfks20 udhcpd[3195]: max_leases=235 is too big, setting to 81 +Jan 5 13:23:14 lsfks20 udhcpd[3195]: can't open '/var/run/vmware/udhcpd-vmnet8.leases': No such file or directory +Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k +Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present +Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found +Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present +Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present +Jan 5 13:23:25 lsfks20 automount[3293]: read_map_source: relative path invalid in files map name +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:*-Greeter] at /etc/kde4/kdm/kdmrc:15 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'LogSource' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:29 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:31 +Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized section name [xdmcp] at /etc/kde4/kdm/kdmrc:33 +Jan 5 13:23:25 lsfks20 automount[3293]: lookup_init:136: lookup(yp): map #/etc/auto.misc: Local domain name not set +Jan 5 13:23:25 lsfks20 acpid: client connected from 3307[0:0] +Jan 5 13:23:25 lsfks20 acpid: 1 client rule loaded +Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: Could not parse desktop file /home/mp57/.config/autostart/xfconf-migration-4.6.desktop: Die Schlüsselwertedatei enthält nicht den Schlüssel »Name« +Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: could not read /home/mp57/.config/autostart/xfconf-migration-4.6.desktop +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. +Jan 5 13:28:53 lsfks20 polkitd[3760]: started daemon version 0.96 using authority implementation `local' version `0.96' +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3770 of process 3770 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3776 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3777 of process 3770 (n/a) owned by 'mp57' RT at priority 5. +Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3791 of process 3791 (n/a) owned by 'mp57' high priority at nice level -11. +Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. +Jan 5 13:28:54 lsfks20 pulseaudio[3791]: pid.c: Daemon already running. +Jan 5 13:35:46 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) +Jan 5 13:35:59 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) diff --git a/resources/config/1/config/var/log/udev b/resources/config/1/config/var/log/udev new file mode 100755 index 0000000..a441144 --- /dev/null +++ b/resources/config/1/config/var/log/udev @@ -0,0 +1,9121 @@ +monitor will print the received events for: +UDEV - the event which udev sends out after rule processing +KERNEL - the kernel uevent + +KERNEL[1294230271.657599] add /devices/virtual/vc/vcs4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs4 +SUBSYSTEM=vc +DEVNAME=vcs4 +SEQNUM=832 +MAJOR=7 +MINOR=4 + +KERNEL[1294230271.657621] add /devices/virtual/vc/vcsa4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa4 +SUBSYSTEM=vc +DEVNAME=vcsa4 +SEQNUM=833 +MAJOR=7 +MINOR=132 + +UDEV [1294230271.658269] add /devices/virtual/vc/vcsa4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa4 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa4 +SEQNUM=833 +MAJOR=7 +MINOR=132 +DEVLINKS=/dev/char/7:132 + +UDEV [1294230271.658287] add /devices/virtual/vc/vcs4 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs4 +SUBSYSTEM=vc +DEVNAME=/dev/vcs4 +SEQNUM=832 +MAJOR=7 +MINOR=4 +DEVLINKS=/dev/char/7:4 + +KERNEL[1294230271.664310] add /devices/virtual/vc/vcs5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs5 +SUBSYSTEM=vc +DEVNAME=vcs5 +SEQNUM=834 +MAJOR=7 +MINOR=5 + +KERNEL[1294230271.668907] add /devices/LNXSYSTM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYSTM: +SEQNUM=835 + +UDEV [1294230271.672620] add /devices/virtual/vc/vcs5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs5 +SUBSYSTEM=vc +DEVNAME=/dev/vcs5 +SEQNUM=834 +MAJOR=7 +MINOR=5 +DEVLINKS=/dev/char/7:5 + +KERNEL[1294230271.672963] add /devices/virtual/vc/vcsa5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa5 +SUBSYSTEM=vc +DEVNAME=vcsa5 +SEQNUM=836 +MAJOR=7 +MINOR=133 + +UDEV [1294230271.673534] add /devices/virtual/vc/vcsa5 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa5 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa5 +SEQNUM=836 +MAJOR=7 +MINOR=133 +DEVLINKS=/dev/char/7:133 + +KERNEL[1294230271.673906] add /devices/LNXSYSTM:00/LNXCPU:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:00 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=837 + +KERNEL[1294230271.673987] add /devices/LNXSYSTM:00/LNXCPU:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:01 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=838 + +KERNEL[1294230271.674055] add /devices/LNXSYSTM:00/LNXCPU:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:02 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=839 + +KERNEL[1294230271.674122] add /devices/LNXSYSTM:00/LNXCPU:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:03 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=840 + +KERNEL[1294230271.674187] add /devices/LNXSYSTM:00/LNXPWRBN:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:LNXPWRBN: +SEQNUM=841 + +KERNEL[1294230271.674265] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="LNXPWRBN/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=842 + +KERNEL[1294230271.674339] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 +SUBSYSTEM=input +DEVNAME=input/event1 +SEQNUM=843 +MAJOR=13 +MINOR=65 + +KERNEL[1294230271.674405] add /devices/LNXSYSTM:00/LNXSYBUS:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYBUS: +SEQNUM=844 + +KERNEL[1294230271.674470] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 +SUBSYSTEM=acpi +DRIVER=pci_root +MODALIAS=acpi:PNP0A08:PNP0A03: +SEQNUM=845 + +KERNEL[1294230271.674536] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=846 + +KERNEL[1294230271.674601] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=847 + +KERNEL[1294230271.674679] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=848 + +KERNEL[1294230271.674753] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=849 + +KERNEL[1294230271.674819] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=850 + +KERNEL[1294230271.674885] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=851 + +KERNEL[1294230271.674951] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=852 + +KERNEL[1294230271.675026] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=854 + +KERNEL[1294230271.675039] add /module/lp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/lp +SUBSYSTEM=module +SEQNUM=853 + +KERNEL[1294230271.675690] add /class/printer (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/printer +SUBSYSTEM=class +SEQNUM=855 + +UDEV [1294230271.675705] add /class/printer (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/printer +SUBSYSTEM=class +SEQNUM=855 + +KERNEL[1294230271.675745] add /devices/pnp0/00:07/printer/lp0 (printer) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/printer/lp0 +SUBSYSTEM=printer +DEVNAME=lp0 +SEQNUM=856 +MAJOR=6 +MINOR=0 + +KERNEL[1294230271.676233] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=857 + +KERNEL[1294230271.676311] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=858 + +KERNEL[1294230271.676379] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=859 + +KERNEL[1294230271.676447] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0000: +SEQNUM=860 + +KERNEL[1294230271.676515] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0003: +SEQNUM=861 + +KERNEL[1294230271.676582] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0100: +SEQNUM=862 + +KERNEL[1294230271.676648] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0103: +SEQNUM=863 + +KERNEL[1294230271.676743] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0200: +SEQNUM=864 + +KERNEL[1294230271.676823] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0303: +SEQNUM=865 + +KERNEL[1294230271.676889] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0401: +SEQNUM=866 + +KERNEL[1294230271.676965] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0501:PNP0500: +SEQNUM=867 + +KERNEL[1294230271.677036] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0700: +SEQNUM=868 + +KERNEL[1294230271.677106] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0800: +SEQNUM=869 + +KERNEL[1294230271.677182] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0B00: +SEQNUM=870 + +KERNEL[1294230271.677285] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C04: +SEQNUM=871 + +KERNEL[1294230271.680482] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0F13:PNP0F0E: +SEQNUM=872 + +KERNEL[1294230271.680857] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=873 + +KERNEL[1294230271.681021] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=874 + +KERNEL[1294230271.681099] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=875 + +KERNEL[1294230271.681254] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=876 + +KERNEL[1294230271.681469] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=877 + +KERNEL[1294230271.681673] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=878 + +KERNEL[1294230271.682048] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=879 + +KERNEL[1294230271.683231] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=880 + +KERNEL[1294230271.683385] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=881 + +KERNEL[1294230271.683625] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=882 + +KERNEL[1294230271.683808] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=883 + +KERNEL[1294230271.684821] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=884 + +KERNEL[1294230271.685183] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=885 + +KERNEL[1294230271.685290] add /devices/virtual/vc/vcs2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs2 +SUBSYSTEM=vc +DEVNAME=vcs2 +SEQNUM=886 +MAJOR=7 +MINOR=2 + +KERNEL[1294230271.685385] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=887 + +KERNEL[1294230271.685513] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=888 + +KERNEL[1294230271.685647] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=889 + +KERNEL[1294230271.685793] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=890 + +UDEV [1294230271.686061] add /devices/virtual/vc/vcs2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs2 +SUBSYSTEM=vc +DEVNAME=/dev/vcs2 +SEQNUM=886 +MAJOR=7 +MINOR=2 +DEVLINKS=/dev/char/7:2 + +KERNEL[1294230271.686663] add /devices/virtual/vc/vcsa2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa2 +SUBSYSTEM=vc +DEVNAME=vcsa2 +SEQNUM=892 +MAJOR=7 +MINOR=130 + +UDEV [1294230271.687078] add /devices/virtual/vc/vcsa2 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa2 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa2 +SEQNUM=892 +MAJOR=7 +MINOR=130 +DEVLINKS=/dev/char/7:130 + +KERNEL[1294230271.687097] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=891 + +KERNEL[1294230271.687175] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=893 + +KERNEL[1294230271.687296] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C01: +SEQNUM=894 + +KERNEL[1294230271.687339] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:PNP0C0C: +SEQNUM=895 + +KERNEL[1294230271.688981] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="PNP0C0C/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=896 + +KERNEL[1294230271.689084] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 +SUBSYSTEM=input +DEVNAME=input/event0 +SEQNUM=897 +MAJOR=13 +MINOR=64 + +KERNEL[1294230271.689164] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 +SUBSYSTEM=acpi +DRIVER=wmi +MODALIAS=acpi:PNP0C14: +SEQNUM=898 + +KERNEL[1294230271.689304] add /devices/LNXSYSTM:00/LNXTHERM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXTHERM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXTHERM: +SEQNUM=899 + +KERNEL[1294230271.689385] add /devices/pci0000:00/0000:00:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:00.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1002:5950 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:00.0 +MODALIAS=pci:v00001002d00005950sv0000103Csd0000280Abc06sc00i00 +SEQNUM=900 + +KERNEL[1294230271.689987] add /devices/pci0000:00/0000:00:02.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A34 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:02.0 +MODALIAS=pci:v00001002d00005A34sv00000000sd00000000bc06sc04i00 +SEQNUM=901 + +UDEV [1294230271.690809] add /devices/pci0000:00/0000:00:02.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A34 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:02.0 +MODALIAS=pci:v00001002d00005A34sv00000000sd00000000bc06sc04i00 +SEQNUM=901 + +KERNEL[1294230271.692103] add /devices/virtual/vc/vcs3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs3 +SUBSYSTEM=vc +DEVNAME=vcs3 +SEQNUM=902 +MAJOR=7 +MINOR=3 + +KERNEL[1294230271.692454] add /devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=903 + +UDEV [1294230271.692705] add /devices/virtual/vc/vcs3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs3 +SUBSYSTEM=vc +DEVNAME=/dev/vcs3 +SEQNUM=902 +MAJOR=7 +MINOR=3 +DEVLINKS=/dev/char/7:3 + +KERNEL[1294230271.692780] add /devices/virtual/vc/vcsa3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa3 +SUBSYSTEM=vc +DEVNAME=vcsa3 +SEQNUM=904 +MAJOR=7 +MINOR=131 + +UDEV [1294230271.693078] add /devices/virtual/vc/vcsa3 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa3 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa3 +SEQNUM=904 +MAJOR=7 +MINOR=131 +DEVLINKS=/dev/char/7:131 + +UDEV [1294230271.693686] add /devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=903 + +KERNEL[1294230271.694011] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0 +SUBSYSTEM=pci +PCI_CLASS=30000 +PCI_ID=1002:94C1 +PCI_SUBSYS_ID=1028:0D02 +PCI_SLOT_NAME=0000:02:00.0 +MODALIAS=pci:v00001002d000094C1sv00001028sd00000D02bc03sc00i00 +SEQNUM=905 + +KERNEL[1294230271.697955] add /devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 +SUBSYSTEM=pci_bus +SEQNUM=906 + +KERNEL[1294230271.701309] add /devices/pci0000:00/0000:00:07.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A39 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:07.0 +MODALIAS=pci:v00001002d00005A39sv00000000sd00000000bc06sc04i00 +SEQNUM=907 + +UDEV [1294230271.703167] add /module/lp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/lp +SUBSYSTEM=module +SEQNUM=853 + +UDEV [1294230271.705953] add /devices/pnp0/00:07/printer/lp0 (printer) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/printer/lp0 +SUBSYSTEM=printer +DEVNAME=/dev/lp0 +SEQNUM=856 +MAJOR=6 +MINOR=0 +DEVLINKS=/dev/char/6:0 + +KERNEL[1294230271.707877] add /devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=908 + +UDEV [1294230271.708277] add /devices/pci0000:00/0000:00:07.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0 +SUBSYSTEM=pci +DRIVER=pcieport +PCI_CLASS=60400 +PCI_ID=1002:5A39 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:07.0 +MODALIAS=pci:v00001002d00005A39sv00000000sd00000000bc06sc04i00 +SEQNUM=907 + +KERNEL[1294230271.708485] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0 +SUBSYSTEM=pci +DRIVER=tg3 +PCI_CLASS=20000 +PCI_ID=14E4:167B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:3f:00.0 +MODALIAS=pci:v000014E4d0000167Bsv0000103Csd0000280Abc02sc00i00 +SEQNUM=909 + +UDEV [1294230271.708876] add /devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 (pci_express) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 +SUBSYSTEM=pci_express +SEQNUM=908 + +KERNEL[1294230271.710227] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 +SUBSYSTEM=net +INTERFACE=eth0 +IFINDEX=2 +SEQNUM=910 + +UDEV [1294230271.710248] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0 +SUBSYSTEM=pci +DRIVER=tg3 +PCI_CLASS=20000 +PCI_ID=14E4:167B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:3f:00.0 +MODALIAS=pci:v000014E4d0000167Bsv0000103Csd0000280Abc02sc00i00 +SEQNUM=909 + +KERNEL[1294230271.710262] add /devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f +SUBSYSTEM=pci_bus +SEQNUM=911 + +UDEV [1294230271.710276] add /devices/pci0000:00/0000:00:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:00.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1002:5950 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:00.0 +MODALIAS=pci:v00001002d00005950sv0000103Csd0000280Abc06sc00i00 +SEQNUM=900 + +KERNEL[1294230271.710293] add /devices/pci0000:00/0000:00:12.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0 +SUBSYSTEM=pci +DRIVER=ahci +PCI_CLASS=10601 +PCI_ID=1002:4380 +PCI_SUBSYS_ID=103C:2813 +PCI_SLOT_NAME=0000:00:12.0 +MODALIAS=pci:v00001002d00004380sv0000103Csd00002813bc01sc06i01 +SEQNUM=912 + +KERNEL[1294230271.710307] add /devices/pci0000:00/0000:00:12.0/host0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=913 + +KERNEL[1294230271.710318] add /devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 +SUBSYSTEM=scsi_host +SEQNUM=914 + +KERNEL[1294230271.710330] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=915 + +KERNEL[1294230271.710342] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sd +MODALIAS=scsi:t-0x00 +SEQNUM=916 + +KERNEL[1294230271.710358] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +SUBSYSTEM=block +DEVNAME=sda +DEVTYPE=disk +SEQNUM=917 +MAJOR=8 +MINOR=0 + +UDEV [1294230271.710786] add /devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f +SUBSYSTEM=pci_bus +SEQNUM=911 + +KERNEL[1294230271.711345] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 +SUBSYSTEM=block +DEVNAME=sda1 +DEVTYPE=partition +SEQNUM=918 +MAJOR=8 +MINOR=1 + +UDEV [1294230271.712051] add /devices/LNXSYSTM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYSTM: +SEQNUM=835 + +UDEV [1294230271.712372] add /devices/LNXSYSTM:00/LNXCPU:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:01 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=838 + +UDEV [1294230271.712387] add /devices/LNXSYSTM:00/LNXCPU:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:00 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=837 + +UDEV [1294230271.712401] add /devices/LNXSYSTM:00/LNXCPU:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:02 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=839 + +KERNEL[1294230271.713380] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 +SUBSYSTEM=block +DEVNAME=sda2 +DEVTYPE=partition +SEQNUM=919 +MAJOR=8 +MINOR=2 + +KERNEL[1294230271.713481] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 +SUBSYSTEM=block +DEVNAME=sda3 +DEVTYPE=partition +SEQNUM=920 +MAJOR=8 +MINOR=3 + +KERNEL[1294230271.713578] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 +SUBSYSTEM=block +DEVNAME=sda4 +DEVTYPE=partition +SEQNUM=921 +MAJOR=8 +MINOR=4 + +KERNEL[1294230271.713672] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 +SUBSYSTEM=bsg +DEVNAME=bsg/0:0:0:0 +SEQNUM=922 +MAJOR=253 +MINOR=0 + +KERNEL[1294230271.713825] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=923 + +KERNEL[1294230271.713917] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 (scsi_disk) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 +SUBSYSTEM=scsi_disk +SEQNUM=924 + +KERNEL[1294230271.714000] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 +SUBSYSTEM=scsi_generic +DEVNAME=sg0 +SEQNUM=925 +MAJOR=21 +MINOR=0 + +KERNEL[1294230271.714056] add /devices/virtual/vc/vcs6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs6 +SUBSYSTEM=vc +DEVNAME=vcs6 +SEQNUM=926 +MAJOR=7 +MINOR=6 + +KERNEL[1294230271.714077] add /devices/pci0000:00/0000:00:12.0/host1 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=927 + +KERNEL[1294230271.714123] add /devices/virtual/vc/vcsa6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa6 +SUBSYSTEM=vc +DEVNAME=vcsa6 +SEQNUM=928 +MAJOR=7 +MINOR=134 + +UDEV [1294230271.714862] add /devices/virtual/vc/vcsa6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa6 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa6 +SEQNUM=928 +MAJOR=7 +MINOR=134 +DEVLINKS=/dev/char/7:134 + +UDEV [1294230271.714881] add /devices/virtual/vc/vcs6 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs6 +SUBSYSTEM=vc +DEVNAME=/dev/vcs6 +SEQNUM=926 +MAJOR=7 +MINOR=6 +DEVLINKS=/dev/char/7:6 + +KERNEL[1294230271.714982] add /devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 +SUBSYSTEM=scsi_host +SEQNUM=929 + +KERNEL[1294230271.715046] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=930 + +KERNEL[1294230271.715085] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sr +MODALIAS=scsi:t-0x05 +SEQNUM=931 + +KERNEL[1294230271.715129] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 +SUBSYSTEM=block +DEVNAME=sr0 +DEVTYPE=disk +SEQNUM=932 +MAJOR=11 +MINOR=0 + +KERNEL[1294230271.715174] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 +SUBSYSTEM=bsg +DEVNAME=bsg/1:0:0:0 +SEQNUM=933 +MAJOR=253 +MINOR=1 + +KERNEL[1294230271.715212] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=934 + +KERNEL[1294230271.715330] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 +SUBSYSTEM=scsi_generic +DEVNAME=sg1 +SEQNUM=935 +MAJOR=21 +MINOR=1 + +KERNEL[1294230271.715426] add /devices/pci0000:00/0000:00:12.0/host2 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=936 + +KERNEL[1294230271.715468] add /devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 +SUBSYSTEM=scsi_host +SEQNUM=937 + +KERNEL[1294230271.715542] add /devices/pci0000:00/0000:00:12.0/host3 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=938 + +KERNEL[1294230271.715668] add /devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 +SUBSYSTEM=scsi_host +SEQNUM=939 + +KERNEL[1294230271.715830] add /devices/pci0000:00/0000:00:13.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4387 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.0 +MODALIAS=pci:v00001002d00004387sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=940 + +KERNEL[1294230271.715957] add /devices/pci0000:00/0000:00:13.0/usb2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2 +SUBSYSTEM=usb +DEVNAME=bus/usb/002/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=002 +DEVNUM=001 +SEQNUM=941 +MAJOR=189 +MINOR=128 + +KERNEL[1294230271.716095] add /devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=942 + +UDEV [1294230271.716145] add /devices/pci0000:00/0000:00:13.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4387 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.0 +MODALIAS=pci:v00001002d00004387sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=940 + +KERNEL[1294230271.716533] add /devices/pci0000:00/0000:00:13.0/usb2/2-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1 +SUBSYSTEM=usb +DEVNAME=bus/usb/002/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +BUSNUM=002 +DEVNUM=002 +SEQNUM=943 +MAJOR=189 +MINOR=129 + +KERNEL[1294230271.716899] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=3/1/1 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic03isc01ip01 +SEQNUM=944 + +KERNEL[1294230271.717798] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:000003F0:00001024 +HID_NAME=Hewlett-Packard Company HP USB Smart Card Keyboard +HID_PHYS=usb-0000:00:13.0-1/input0 +HID_UNIQ=0817bd66 +MODALIAS=hid:b0003v000003F0p00001024 +SEQNUM=945 + +KERNEL[1294230271.718123] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 +SUBSYSTEM=hidraw +DEVNAME=hidraw0 +SEQNUM=946 +MAJOR=251 +MINOR=0 + +KERNEL[1294230271.718380] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +SUBSYSTEM=input +PRODUCT=3/3f0/1024/111 +NAME="Hewlett-Packard Company HP USB Smart Card Keyboard" +PHYS="usb-0000:00:13.0-1/input0" +UNIQ="0817bd66" +EV==120013 +KEY==10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe +MSC==10 +LED==7 +MODALIAS=input:b0003v03F0p1024e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw +SEQNUM=947 + +KERNEL[1294230271.718689] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 +SUBSYSTEM=input +DEVNAME=input/event3 +SEQNUM=948 +MAJOR=13 +MINOR=67 + +UDEV [1294230271.722952] add /devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 +SUBSYSTEM=pci_bus +SEQNUM=906 + +UDEV [1294230271.723779] add /devices/LNXSYSTM:00/LNXPWRBN:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:LNXPWRBN: +SEQNUM=841 + +UDEV [1294230271.724530] add /devices/LNXSYSTM:00/LNXCPU:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXCPU:03 +SUBSYSTEM=acpi +DRIVER=processor +MODALIAS=acpi:LNXCPU: +SEQNUM=840 + +KERNEL[1294230271.724649] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 +SUBSYSTEM=usb +DEVTYPE=usb_interface +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=11/0/0 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic0Bisc00ip00 +SEQNUM=949 + +KERNEL[1294230271.724768] add /devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 +SUBSYSTEM=usbmon +DEVNAME=usbmon2 +SEQNUM=950 +MAJOR=252 +MINOR=2 + +UDEV [1294230271.725132] add /devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon2 +SEQNUM=950 +MAJOR=252 +MINOR=2 +DEVLINKS=/dev/char/252:2 + +KERNEL[1294230271.725181] add /devices/pci0000:00/0000:00:13.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4388 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.1 +MODALIAS=pci:v00001002d00004388sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=951 + +KERNEL[1294230271.725231] add /devices/pci0000:00/0000:00:13.1/usb3 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3 +SUBSYSTEM=usb +DEVNAME=bus/usb/003/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=003 +DEVNUM=001 +SEQNUM=952 +MAJOR=189 +MINOR=256 + +KERNEL[1294230271.725278] add /devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=953 + +KERNEL[1294230271.725333] add /devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 +SUBSYSTEM=usbmon +DEVNAME=usbmon3 +SEQNUM=954 +MAJOR=252 +MINOR=3 + +KERNEL[1294230271.725375] add /devices/pci0000:00/0000:00:13.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4389 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.2 +MODALIAS=pci:v00001002d00004389sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=955 + +KERNEL[1294230271.725425] add /devices/pci0000:00/0000:00:13.2/usb4 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4 +SUBSYSTEM=usb +DEVNAME=bus/usb/004/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=004 +DEVNUM=001 +SEQNUM=956 +MAJOR=189 +MINOR=384 + +KERNEL[1294230271.725474] add /devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=957 + +KERNEL[1294230271.725524] add /devices/pci0000:00/0000:00:13.2/usb4/4-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1 +SUBSYSTEM=usb +DEVNAME=bus/usb/004/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=408/3000/0 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=002 +SEQNUM=958 +MAJOR=189 +MINOR=385 + +UDEV [1294230271.725545] add /devices/pci0000:00/0000:00:13.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4388 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.1 +MODALIAS=pci:v00001002d00004388sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=951 + +KERNEL[1294230271.725590] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=408/3000/0 +TYPE=0/0/0 +INTERFACE=3/0/0 +MODALIAS=usb:v0408p3000d0000dc00dsc00dp00ic03isc00ip00 +SEQNUM=959 + +UDEV [1294230271.725874] add /devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon3 +SEQNUM=954 +MAJOR=252 +MINOR=3 +DEVLINKS=/dev/char/252:3 + +KERNEL[1294230271.726231] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 +SUBSYSTEM=hid +HID_ID=0003:00000408:00003000 +HID_NAME=Quanta Computer Inc. Optical Touch Screen +HID_PHYS=usb-0000:00:13.2-1/input0 +MODALIAS=hid:b0003v00000408p00003000 +SEQNUM=960 + +KERNEL[1294230271.726390] add /devices/pci0000:00/0000:00:13.2/usb4/4-2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2 +SUBSYSTEM=usb +DEVNAME=bus/usb/004/003 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=461/4d20/200 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=003 +SEQNUM=961 +MAJOR=189 +MINOR=386 + +KERNEL[1294230271.726489] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=461/4d20/200 +TYPE=0/0/0 +INTERFACE=3/1/2 +MODALIAS=usb:v0461p4D20d0200dc00dsc00dp00ic03isc01ip02 +SEQNUM=962 + +KERNEL[1294230271.726626] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:00000461:00004D20 +HID_NAME=USB Optical Mouse +HID_PHYS=usb-0000:00:13.2-2/input0 +MODALIAS=hid:b0003v00000461p00004D20 +SEQNUM=963 + +UDEV [1294230271.726758] add /devices/pci0000:00/0000:00:13.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:4389 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.2 +MODALIAS=pci:v00001002d00004389sv0000103Csd0000280Abc0Csc03i10 +SEQNUM=955 + +KERNEL[1294230271.726796] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 +SUBSYSTEM=hidraw +DEVNAME=hidraw1 +SEQNUM=964 +MAJOR=251 +MINOR=1 + +KERNEL[1294230271.726899] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +SUBSYSTEM=input +PRODUCT=3/461/4d20/111 +NAME="USB Optical Mouse" +PHYS="usb-0000:00:13.2-2/input0" +UNIQ="" +EV==17 +KEY==70000 0 0 0 0 0 0 0 0 +REL==103 +MSC==10 +MODALIAS=input:b0003v0461p4D20e0111-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw +SEQNUM=965 + +KERNEL[1294230271.726994] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 +SUBSYSTEM=input +DEVNAME=input/event4 +SEQNUM=966 +MAJOR=13 +MINOR=68 + +KERNEL[1294230271.727400] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 +SUBSYSTEM=input +DEVNAME=input/mouse1 +SEQNUM=967 +MAJOR=13 +MINOR=33 + +KERNEL[1294230271.727509] add /devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 +SUBSYSTEM=usbmon +DEVNAME=usbmon4 +SEQNUM=968 +MAJOR=252 +MINOR=4 + +KERNEL[1294230271.727626] add /devices/pci0000:00/0000:00:13.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438A +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.3 +MODALIAS=pci:v00001002d0000438Asv0000103Csd0000280Abc0Csc03i10 +SEQNUM=969 + +UDEV [1294230271.728196] add /devices/pci0000:00/0000:00:13.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438A +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.3 +MODALIAS=pci:v00001002d0000438Asv0000103Csd0000280Abc0Csc03i10 +SEQNUM=969 + +UDEV [1294230271.728216] add /devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon4 +SEQNUM=968 +MAJOR=252 +MINOR=4 +DEVLINKS=/dev/char/252:4 + +KERNEL[1294230271.728279] add /devices/pci0000:00/0000:00:13.3/usb5 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5 +SUBSYSTEM=usb +DEVNAME=bus/usb/005/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=005 +DEVNUM=001 +SEQNUM=970 +MAJOR=189 +MINOR=512 + +KERNEL[1294230271.730197] add /devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=971 + +KERNEL[1294230271.730349] add /devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 +SUBSYSTEM=usbmon +DEVNAME=usbmon5 +SEQNUM=972 +MAJOR=252 +MINOR=5 + +UDEV [1294230271.730770] add /devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon5 +SEQNUM=972 +MAJOR=252 +MINOR=5 +DEVLINKS=/dev/char/252:5 + +KERNEL[1294230271.732268] add /devices/pci0000:00/0000:00:13.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.4 +MODALIAS=pci:v00001002d0000438Bsv0000103Csd0000280Abc0Csc03i10 +SEQNUM=973 + +UDEV [1294230271.740008] add /devices/pci0000:00/0000:00:13.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4 +SUBSYSTEM=pci +DRIVER=ohci_hcd +PCI_CLASS=C0310 +PCI_ID=1002:438B +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.4 +MODALIAS=pci:v00001002d0000438Bsv0000103Csd0000280Abc0Csc03i10 +SEQNUM=973 + +UDEV [1294230271.740031] add /devices/LNXSYSTM:00/LNXSYBUS:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXSYBUS: +SEQNUM=844 + +UDEV [1294230271.740043] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 +SUBSYSTEM=acpi +DRIVER=pci_root +MODALIAS=acpi:PNP0A08:PNP0A03: +SEQNUM=845 + +KERNEL[1294230271.742928] add /devices/pci0000:00/0000:00:13.4/usb6 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6 +SUBSYSTEM=usb +DEVNAME=bus/usb/006/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=006 +DEVNUM=001 +SEQNUM=974 +MAJOR=189 +MINOR=640 + +UDEV [1294230271.742955] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="LNXPWRBN/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=842 + +KERNEL[1294230271.743472] add /devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=975 + +KERNEL[1294230271.744068] add /devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 +SUBSYSTEM=usbmon +DEVNAME=usbmon6 +SEQNUM=976 +MAJOR=252 +MINOR=6 + +UDEV [1294230271.746330] add /devices/pci0000:00/0000:00:13.0/usb2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/002/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=002 +DEVNUM=001 +SEQNUM=941 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.0 +ID_SERIAL_SHORT=0000:00:13.0 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=128 +DEVLINKS=/dev/char/189:128 + +UDEV [1294230271.746534] add /devices/pci0000:00/0000:00:13.1/usb3 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/003/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=003 +DEVNUM=001 +SEQNUM=952 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.1 +ID_SERIAL_SHORT=0000:00:13.1 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=256 +DEVLINKS=/dev/char/189:256 + +KERNEL[1294230271.747174] add /module/i2c_algo_bit (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/i2c_algo_bit +SUBSYSTEM=module +SEQNUM=977 + +KERNEL[1294230271.749798] add /devices/pci0000:00/0000:00:13.5 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5 +SUBSYSTEM=pci +DRIVER=ehci_hcd +PCI_CLASS=C0320 +PCI_ID=1002:4386 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.5 +MODALIAS=pci:v00001002d00004386sv0000103Csd0000280Abc0Csc03i20 +SEQNUM=978 + +UDEV [1294230271.749820] add /devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=942 + +KERNEL[1294230271.749859] add /devices/pci0000:00/0000:00:13.5/usb1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1 +SUBSYSTEM=usb +DEVNAME=bus/usb/001/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +BUSNUM=001 +DEVNUM=001 +SEQNUM=979 +MAJOR=189 +MINOR=0 + +UDEV [1294230271.749875] add /devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon6 +SEQNUM=976 +MAJOR=252 +MINOR=6 +DEVLINKS=/dev/char/252:6 + +KERNEL[1294230271.749892] add /devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=980 + +UDEV [1294230271.749904] add /module/i2c_algo_bit (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/i2c_algo_bit +SUBSYSTEM=module +SEQNUM=977 + +KERNEL[1294230271.749917] add /devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 +SUBSYSTEM=usbmon +DEVNAME=usbmon1 +SEQNUM=981 +MAJOR=252 +MINOR=1 + +KERNEL[1294230271.749933] add /devices/pci0000:00/0000:00:14.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0 +SUBSYSTEM=pci +DRIVER=piix4_smbus +PCI_CLASS=C0500 +PCI_ID=1002:4385 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.0 +MODALIAS=pci:v00001002d00004385sv0000103Csd0000280Abc0Csc05i00 +SEQNUM=982 + +KERNEL[1294230271.749947] add /devices/pci0000:00/0000:00:14.0/i2c-0 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0/i2c-0 +SUBSYSTEM=i2c +SEQNUM=983 + +KERNEL[1294230271.749961] add /devices/pci0000:00/0000:00:14.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1 +SUBSYSTEM=pci +DRIVER=pata_atiixp +PCI_CLASS=1018F +PCI_ID=1002:438C +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.1 +MODALIAS=pci:v00001002d0000438Csv0000103Csd0000280Abc01sc01i8f +SEQNUM=984 + +KERNEL[1294230271.749975] add /devices/pci0000:00/0000:00:14.1/host4 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=985 + +KERNEL[1294230271.749987] add /devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 +SUBSYSTEM=scsi_host +SEQNUM=986 + +KERNEL[1294230271.749999] add /devices/pci0000:00/0000:00:14.1/host5 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=987 + +KERNEL[1294230271.750010] add /devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 +SUBSYSTEM=scsi_host +SEQNUM=988 + +KERNEL[1294230271.750024] add /devices/pci0000:00/0000:00:14.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2 +SUBSYSTEM=pci +DRIVER=HDA Intel +PCI_CLASS=40300 +PCI_ID=1002:4383 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.2 +MODALIAS=pci:v00001002d00004383sv0000103Csd0000280Abc04sc03i00 +SEQNUM=989 + +KERNEL[1294230271.750041] add /devices/pci0000:00/0000:00:14.2/input/input5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5 +SUBSYSTEM=input +PRODUCT=1/10ec/260/1 +NAME="HDA Digital PCBeep" +PHYS="card0/codec#3/beep0" +EV==40001 +SND==6 +MODALIAS=input:b0001v10ECp0260e0001-e0,12,kramls1,2,fw +SEQNUM=990 + +KERNEL[1294230271.750056] add /devices/pci0000:00/0000:00:14.2/input/input5/event5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5/event5 +SUBSYSTEM=input +DEVNAME=input/event5 +SEQNUM=991 +MAJOR=13 +MINOR=69 + +KERNEL[1294230271.750068] add /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=992 + +KERNEL[1294230271.750088] add /devices/pci0000:00/0000:00:14.2/sound/card0/audio (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/audio +SUBSYSTEM=sound +DEVNAME=audio +SEQNUM=993 +MAJOR=14 +MINOR=4 + +KERNEL[1294230271.750102] add /devices/pci0000:00/0000:00:14.2/sound/card0/dsp (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/dsp +SUBSYSTEM=sound +DEVNAME=dsp +SEQNUM=994 +MAJOR=14 +MINOR=3 + +KERNEL[1294230271.750116] add /devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 +SUBSYSTEM=sound +DEVNAME=snd/hwC0D3 +SEQNUM=995 +MAJOR=116 +MINOR=5 + +KERNEL[1294230271.750130] add /devices/pci0000:00/0000:00:14.2/sound/card0/mixer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/mixer +SUBSYSTEM=sound +DEVNAME=mixer +SEQNUM=996 +MAJOR=14 +MINOR=0 + +KERNEL[1294230271.750144] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c +SUBSYSTEM=sound +DEVNAME=snd/pcmC0D0c +SEQNUM=997 +MAJOR=116 +MINOR=4 + +KERNEL[1294230271.750158] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p +SUBSYSTEM=sound +DEVNAME=snd/pcmC0D0p +SEQNUM=998 +MAJOR=116 +MINOR=3 + +KERNEL[1294230271.751042] add /devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 +SUBSYSTEM=sound +DEVNAME=snd/controlC0 +SEQNUM=999 +MAJOR=116 +MINOR=6 + +KERNEL[1294230271.751192] add /devices/pci0000:00/0000:00:14.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.3 +SUBSYSTEM=pci +PCI_CLASS=60100 +PCI_ID=1002:438D +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.3 +MODALIAS=pci:v00001002d0000438Dsv0000103Csd0000280Abc06sc01i00 +SEQNUM=1000 + +KERNEL[1294230271.755958] add /devices/pci0000:00/0000:00:14.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4 +SUBSYSTEM=pci +PCI_CLASS=60401 +PCI_ID=1002:4384 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:14.4 +MODALIAS=pci:v00001002d00004384sv00000000sd00000000bc06sc04i01 +SEQNUM=1001 + +UDEV [1294230271.755979] add /devices/pci0000:00/0000:00:14.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0 +SUBSYSTEM=pci +DRIVER=piix4_smbus +PCI_CLASS=C0500 +PCI_ID=1002:4385 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.0 +MODALIAS=pci:v00001002d00004385sv0000103Csd0000280Abc0Csc05i00 +SEQNUM=982 + +KERNEL[1294230271.755994] add /devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 +SUBSYSTEM=pci_bus +SEQNUM=1002 + +UDEV [1294230271.756004] add /devices/pci0000:00/0000:00:14.0/i2c-0 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.0/i2c-0 +SUBSYSTEM=i2c +SEQNUM=983 + +KERNEL[1294230271.756017] add /devices/pci0000:00/0000:00:18.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1100 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.0 +MODALIAS=pci:v00001022d00001100sv00000000sd00000000bc06sc00i00 +SEQNUM=1003 + +KERNEL[1294230271.756033] add /devices/pci0000:00/0000:00:18.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.1 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1101 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.1 +MODALIAS=pci:v00001022d00001101sv00000000sd00000000bc06sc00i00 +SEQNUM=1004 + +KERNEL[1294230271.756049] add /devices/pci0000:00/0000:00:18.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.2 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1102 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.2 +MODALIAS=pci:v00001022d00001102sv00000000sd00000000bc06sc00i00 +SEQNUM=1005 + +KERNEL[1294230271.756065] add /devices/pci0000:00/0000:00:18.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3 +SUBSYSTEM=pci +DRIVER=k8temp +PCI_CLASS=60000 +PCI_ID=1022:1103 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.3 +MODALIAS=pci:v00001022d00001103sv00000000sd00000000bc06sc00i00 +SEQNUM=1006 + +KERNEL[1294230271.756093] add /devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 (hwmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 +SUBSYSTEM=hwmon +SEQNUM=1007 + +KERNEL[1294230271.756103] add /devices/pci0000:00/pci_bus/0000:00 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/pci_bus/0000:00 +SUBSYSTEM=pci_bus +SEQNUM=1008 + +KERNEL[1294230271.756115] add /devices/platform/Fixed MDIO bus.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0 +SUBSYSTEM=platform +MODALIAS=platform:Fixed MDIO bus +SEQNUM=1009 + +KERNEL[1294230271.756126] add /devices/platform/Fixed MDIO bus.0/mdio_bus/0 (mdio_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0/mdio_bus/0 +SUBSYSTEM=mdio_bus +SEQNUM=1010 + +KERNEL[1294230271.756137] add /devices/platform/eisa.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/eisa.0 +SUBSYSTEM=platform +MODALIAS=platform:eisa +SEQNUM=1011 + +KERNEL[1294230271.756149] add /devices/platform/i8042 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042 +SUBSYSTEM=platform +DRIVER=i8042 +MODALIAS=platform:i8042 +SEQNUM=1012 + +KERNEL[1294230271.756164] add /devices/platform/i8042/serio0 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio0 +SUBSYSTEM=serio +SERIO_TYPE=06 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty06pr00id00ex00 +SEQNUM=1013 + +KERNEL[1294230271.756180] add /devices/platform/i8042/serio1 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio1 +SUBSYSTEM=serio +SERIO_TYPE=01 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty01pr00id00ex00 +SEQNUM=1014 + +KERNEL[1294230271.756193] add /devices/platform/pcspkr (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/pcspkr +SUBSYSTEM=platform +MODALIAS=platform:pcspkr +SEQNUM=1015 + +KERNEL[1294230271.756206] add /devices/platform/serial8250 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250 +SUBSYSTEM=platform +DRIVER=serial8250 +MODALIAS=platform:serial8250 +SEQNUM=1016 + +KERNEL[1294230271.756220] add /devices/platform/serial8250/tty/ttyS1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS1 +SUBSYSTEM=tty +DEVNAME=ttyS1 +SEQNUM=1017 +MAJOR=4 +MINOR=65 + +KERNEL[1294230271.756233] add /devices/platform/serial8250/tty/ttyS2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS2 +SUBSYSTEM=tty +DEVNAME=ttyS2 +SEQNUM=1018 +MAJOR=4 +MINOR=66 + +KERNEL[1294230271.756247] add /devices/platform/serial8250/tty/ttyS3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS3 +SUBSYSTEM=tty +DEVNAME=ttyS3 +SEQNUM=1019 +MAJOR=4 +MINOR=67 + +KERNEL[1294230271.756260] add /devices/platform/vesafb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0 +SUBSYSTEM=platform +DRIVER=vesafb +MODALIAS=platform:vesafb +SEQNUM=1020 + +KERNEL[1294230271.756274] add /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=fb0 +SEQNUM=1021 +MAJOR=29 +MINOR=0 + +KERNEL[1294230271.756285] add /devices/pnp0/00:00 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:00 +SUBSYSTEM=pnp +SEQNUM=1022 + +KERNEL[1294230271.756296] add /devices/pnp0/00:01 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:01 +SUBSYSTEM=pnp +SEQNUM=1023 + +KERNEL[1294230271.756306] add /devices/pnp0/00:02 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:02 +SUBSYSTEM=pnp +SEQNUM=1024 + +KERNEL[1294230271.756317] add /devices/pnp0/00:03 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03 +SUBSYSTEM=pnp +DRIVER=rtc_cmos +SEQNUM=1025 + +KERNEL[1294230271.756330] add /devices/pnp0/00:03/rtc/rtc0 (rtc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03/rtc/rtc0 +SUBSYSTEM=rtc +DEVNAME=rtc0 +SEQNUM=1026 +MAJOR=254 +MINOR=0 + +KERNEL[1294230271.756342] add /devices/pnp0/00:04 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:04 +SUBSYSTEM=pnp +SEQNUM=1027 + +KERNEL[1294230271.756359] add /devices/pnp0/00:05 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:05 +SUBSYSTEM=pnp +DRIVER=i8042 aux +SEQNUM=1028 + +KERNEL[1294230271.756370] add /devices/pnp0/00:06 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:06 +SUBSYSTEM=pnp +DRIVER=i8042 kbd +SEQNUM=1029 + +KERNEL[1294230271.756382] add /devices/pnp0/00:07 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07 +SUBSYSTEM=pnp +DRIVER=parport_pc +SEQNUM=1030 + +KERNEL[1294230271.756395] add /devices/pnp0/00:07/ppdev/parport0 (ppdev) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/ppdev/parport0 +SUBSYSTEM=ppdev +DEVNAME=parport0 +SEQNUM=1031 +MAJOR=99 +MINOR=0 + +UDEV [1294230271.762547] add /devices/pci0000:00/0000:00:13.2/usb4 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/004/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=004 +DEVNUM=001 +SEQNUM=956 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.2 +ID_SERIAL_SHORT=0000:00:13.2 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=384 +DEVLINKS=/dev/char/189:384 + +UDEV [1294230271.764522] add /devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=957 + +UDEV [1294230271.764542] add /devices/pnp0/00:07 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07 +SUBSYSTEM=pnp +DRIVER=parport_pc +SEQNUM=1030 + +UDEV [1294230271.764556] add /devices/pnp0/00:07/ppdev/parport0 (ppdev) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:07/ppdev/parport0 +SUBSYSTEM=ppdev +DEVNAME=/dev/parport0 +SEQNUM=1031 +MAJOR=99 +MINOR=0 +DEVLINKS=/dev/char/99:0 + +UDEV [1294230271.765879] add /devices/LNXSYSTM:00/LNXTHERM:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXTHERM:00 +SUBSYSTEM=acpi +MODALIAS=acpi:LNXTHERM: +SEQNUM=899 + +UDEV [1294230271.768377] add /devices/pci0000:00/0000:00:13.3/usb5 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/005/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=005 +DEVNUM=001 +SEQNUM=970 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.3 +ID_SERIAL_SHORT=0000:00:13.3 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=512 +DEVLINKS=/dev/char/189:512 + +UDEV [1294230271.769215] add /devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=971 + +UDEV [1294230271.771978] add /devices/pci0000:00/0000:00:13.2/usb4/4-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/004/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=408/3000/0 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=002 +SEQNUM=958 +ID_VENDOR=Quanta_Computer_Inc. +ID_VENDOR_ENC=Quanta\x20Computer\x20Inc. +ID_VENDOR_ID=0408 +ID_MODEL=Optical_Touch_Screen +ID_MODEL_ENC=Optical\x20Touch\x20Screen +ID_MODEL_ID=3000 +ID_REVISION=0000 +ID_SERIAL=Quanta_Computer_Inc._Optical_Touch_Screen +ID_BUS=usb +ID_USB_INTERFACES=:030000: +MAJOR=189 +MINOR=385 +DEVLINKS=/dev/char/189:385 + +UDEV [1294230271.773073] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=408/3000/0 +TYPE=0/0/0 +INTERFACE=3/0/0 +MODALIAS=usb:v0408p3000d0000dc00dsc00dp00ic03isc00ip00 +SEQNUM=959 + +UDEV [1294230271.773707] add /devices/pnp0/00:05 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:05 +SUBSYSTEM=pnp +DRIVER=i8042 aux +SEQNUM=1028 + +UDEV [1294230271.774710] add /devices/pnp0/00:04 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:04 +SUBSYSTEM=pnp +SEQNUM=1027 + +UDEV [1294230271.777511] add /devices/pnp0/00:02 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:02 +SUBSYSTEM=pnp +SEQNUM=1024 + +UDEV [1294230271.778277] add /devices/pnp0/00:00 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:00 +SUBSYSTEM=pnp +SEQNUM=1022 + +UDEV [1294230271.778943] add /devices/pnp0/00:06 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:06 +SUBSYSTEM=pnp +DRIVER=i8042 kbd +SEQNUM=1029 + +UDEV [1294230271.779536] add /devices/platform/serial8250 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250 +SUBSYSTEM=platform +DRIVER=serial8250 +MODALIAS=platform:serial8250 +SEQNUM=1016 + +UDEV [1294230271.780281] add /devices/platform/serial8250/tty/ttyS2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS2 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS2 +SEQNUM=1018 +MAJOR=4 +MINOR=66 +DEVLINKS=/dev/char/4:66 + +UDEV [1294230271.780299] add /devices/platform/serial8250/tty/ttyS3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS3 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS3 +SEQNUM=1019 +MAJOR=4 +MINOR=67 +DEVLINKS=/dev/char/4:67 + +UDEV [1294230271.780560] add /devices/platform/serial8250/tty/ttyS1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/serial8250/tty/ttyS1 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS1 +SEQNUM=1017 +MAJOR=4 +MINOR=65 +DEVLINKS=/dev/char/4:65 + +UDEV [1294230271.781734] add /devices/platform/i8042 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042 +SUBSYSTEM=platform +DRIVER=i8042 +MODALIAS=platform:i8042 +SEQNUM=1012 + +UDEV [1294230271.783318] add /devices/pci0000:00/0000:00:18.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3 +SUBSYSTEM=pci +DRIVER=k8temp +PCI_CLASS=60000 +PCI_ID=1022:1103 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.3 +MODALIAS=pci:v00001022d00001103sv00000000sd00000000bc06sc00i00 +SEQNUM=1006 + +UDEV [1294230271.783587] add /devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 (hwmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 +SUBSYSTEM=hwmon +SEQNUM=1007 + +UDEV [1294230271.785338] add /devices/pci0000:00/0000:00:12.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0 +SUBSYSTEM=pci +DRIVER=ahci +PCI_CLASS=10601 +PCI_ID=1002:4380 +PCI_SUBSYS_ID=103C:2813 +PCI_SLOT_NAME=0000:00:12.0 +MODALIAS=pci:v00001002d00004380sv0000103Csd00002813bc01sc06i01 +SEQNUM=912 +ID_VENDOR_FROM_DATABASE=ATI Technologies Inc +ID_MODEL_FROM_DATABASE=SB600 Non-Raid-5 SATA + +UDEV [1294230271.787166] add /devices/pci0000:00/0000:00:12.0/host0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=913 + +UDEV [1294230271.787183] add /devices/pci0000:00/0000:00:12.0/host1 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=927 + +UDEV [1294230271.787195] add /devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 +SUBSYSTEM=scsi_host +SEQNUM=914 + +UDEV [1294230271.787208] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=915 + +UDEV [1294230271.787220] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sd +MODALIAS=scsi:t-0x00 +SEQNUM=916 + +UDEV [1294230271.787254] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 +SUBSYSTEM=bsg +DEVNAME=/dev/bsg/0:0:0:0 +SEQNUM=922 +MAJOR=253 +MINOR=0 +DEVLINKS=/dev/char/253:0 + +UDEV [1294230193.977227] add /devices/pci0000:00/0000:00:13.0/usb2/2-1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/002/002 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +BUSNUM=002 +DEVNUM=002 +SEQNUM=943 +ID_VENDOR=Hewlett-Packard_Company +ID_VENDOR_ENC=Hewlett-Packard\x20Company +ID_VENDOR_ID=03f0 +ID_MODEL=HP_USB_Smart_Card_Keyboard +ID_MODEL_ENC=HP\x20USB\x20Smart\x20Card\x20Keyboard +ID_MODEL_ID=1024 +ID_REVISION=0535 +ID_SERIAL=Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66 +ID_SERIAL_SHORT=0817bd66 +ID_BUS=usb +ID_USB_INTERFACES=:030101:0b0000: +MAJOR=189 +MINOR=129 +DEVLINKS=/dev/char/189:129 + +UDEV [1294230193.978525] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=3/1/1 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic03isc01ip01 +SEQNUM=944 + +UDEV [1294230193.978548] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:000003F0:00001024 +HID_NAME=Hewlett-Packard Company HP USB Smart Card Keyboard +HID_PHYS=usb-0000:00:13.0-1/input0 +HID_UNIQ=0817bd66 +MODALIAS=hid:b0003v000003F0p00001024 +SEQNUM=945 + +UDEV [1294230193.978567] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 +SUBSYSTEM=hidraw +DEVNAME=/dev/hidraw0 +SEQNUM=946 +MAJOR=251 +MINOR=0 +DEVLINKS=/dev/char/251:0 + +UDEV [1294230193.981364] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=858 + +UDEV [1294230193.982177] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=854 + +UDEV [1294230193.983589] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C01: +SEQNUM=894 + +UDEV [1294230193.984150] add /devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=953 + +UDEV [1294230193.984669] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=851 + +UDEV [1294230193.985441] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 +SUBSYSTEM=scsi_generic +DEVNAME=/dev/sg0 +SEQNUM=925 +MAJOR=21 +MINOR=0 +DEVLINKS=/dev/char/21:0 + +UDEV [1294230193.985764] add /devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 +SUBSYSTEM=scsi_host +SEQNUM=929 + +UDEV [1294230193.985779] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=849 + +UDEV [1294230193.986300] add /devices/pci0000:00/0000:00:12.0/host3 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=938 + +UDEV [1294230193.986590] add /devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 +SUBSYSTEM=scsi_host +SEQNUM=939 + +UDEV [1294230193.986788] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 (scsi_disk) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 +SUBSYSTEM=scsi_disk +SEQNUM=924 + +UDEV [1294230193.992516] add /devices/pci0000:00/0000:00:13.5 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5 +SUBSYSTEM=pci +DRIVER=ehci_hcd +PCI_CLASS=C0320 +PCI_ID=1002:4386 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:13.5 +MODALIAS=pci:v00001002d00004386sv0000103Csd0000280Abc0Csc03i20 +SEQNUM=978 + +UDEV [1294230193.992832] add /devices/pci0000:00/0000:00:14.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2 +SUBSYSTEM=pci +DRIVER=HDA Intel +PCI_CLASS=40300 +PCI_ID=1002:4383 +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.2 +MODALIAS=pci:v00001002d00004383sv0000103Csd0000280Abc04sc03i00 +SEQNUM=989 + +UDEV [1294230193.993140] add /devices/pci0000:00/0000:00:12.0/host2 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=936 + +UDEV [1294230193.993777] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 +SUBSYSTEM=acpi +DRIVER=wmi +MODALIAS=acpi:PNP0C14: +SEQNUM=898 + +UDEV [1294230193.993993] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 +SUBSYSTEM=acpi +DRIVER=button +MODALIAS=acpi:PNP0C0C: +SEQNUM=895 + +UDEV [1294230193.995929] add /devices/pnp0/00:01 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:01 +SUBSYSTEM=pnp +SEQNUM=1023 + +UDEV [1294230193.996294] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_target +SEQNUM=930 + +UDEV [1294230193.996552] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=857 + +UDEV [1294230193.996691] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=852 + +UDEV [1294230193.998244] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=850 + +UDEV [1294230193.998408] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 +SUBSYSTEM=acpi +DRIVER=pci_link +MODALIAS=acpi:PNP0C0F: +SEQNUM=848 + +UDEV [1294230194.000083] add /devices/platform/vesafb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0 +SUBSYSTEM=platform +DRIVER=vesafb +MODALIAS=platform:vesafb +SEQNUM=1020 + +UDEV [1294230194.000655] add /devices/pnp0/00:03 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03 +SUBSYSTEM=pnp +DRIVER=rtc_cmos +SEQNUM=1025 + +UDEV [1294230194.000900] add /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=992 + +UDEV [1294230194.002135] add /devices/pci0000:00/pci_bus/0000:00 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/pci_bus/0000:00 +SUBSYSTEM=pci_bus +SEQNUM=1008 + +UDEV [1294230194.002842] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=923 + +UDEV [1294230194.003850] add /devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon1 +SEQNUM=981 +MAJOR=252 +MINOR=1 +DEVLINKS=/dev/char/252:1 + +UDEV [1294230194.004355] add /devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 +SUBSYSTEM=scsi_host +SEQNUM=937 + +UDEV [1294230194.005734] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 +SUBSYSTEM=scsi +DEVTYPE=scsi_device +DRIVER=sr +MODALIAS=scsi:t-0x05 +SEQNUM=931 + +UDEV [1294230194.006458] add /devices/pnp0/00:03/rtc/rtc0 (rtc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:03/rtc/rtc0 +SUBSYSTEM=rtc +DEVNAME=/dev/rtc0 +SEQNUM=1026 +MAJOR=254 +MINOR=0 +DEVLINKS=/dev/char/254:0 /dev/rtc + +UDEV [1294230194.006753] add /devices/pci0000:00/0000:00:14.2/sound/card0/audio (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/audio +SUBSYSTEM=sound +DEVNAME=/dev/audio +SEQNUM=993 +ACL_MANAGE=1 +MAJOR=14 +MINOR=4 +DEVLINKS=/dev/char/14:4 + +UDEV [1294230194.006993] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c +SUBSYSTEM=sound +DEVNAME=/dev/snd/pcmC0D0c +SEQNUM=997 +ACL_MANAGE=1 +MAJOR=116 +MINOR=4 +DEVLINKS=/dev/char/116:4 + +UDEV [1294230194.007199] add /devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 +SUBSYSTEM=sound +DEVNAME=/dev/snd/hwC0D3 +SEQNUM=995 +ACL_MANAGE=1 +MAJOR=116 +MINOR=5 +DEVLINKS=/dev/char/116:5 + +UDEV [1294230194.007397] add /devices/pci0000:00/0000:00:14.2/sound/card0/dsp (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/dsp +SUBSYSTEM=sound +DEVNAME=/dev/dsp +SEQNUM=994 +ACL_MANAGE=1 +MAJOR=14 +MINOR=3 +DEVLINKS=/dev/char/14:3 + +UDEV [1294230194.007602] add /devices/pci0000:00/0000:00:14.2/sound/card0/mixer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/mixer +SUBSYSTEM=sound +DEVNAME=/dev/mixer +SEQNUM=996 +ACL_MANAGE=1 +MAJOR=14 +MINOR=0 +DEVLINKS=/dev/char/14:0 + +UDEV [1294230194.007853] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p +SUBSYSTEM=sound +DEVNAME=/dev/snd/pcmC0D0p +SEQNUM=998 +ACL_MANAGE=1 +MAJOR=116 +MINOR=3 +DEVLINKS=/dev/char/116:3 + +UDEV [1294230194.008744] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 (scsi_device) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 +SUBSYSTEM=scsi_device +SEQNUM=934 + +UDEV [1294230194.009360] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 (bsg) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 +SUBSYSTEM=bsg +DEVNAME=/dev/bsg/1:0:0:0 +SEQNUM=933 +MAJOR=253 +MINOR=1 +DEVLINKS=/dev/char/253:1 + +UDEV [1294230194.009631] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 (scsi_generic) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 +SUBSYSTEM=scsi_generic +DEVNAME=/dev/sg1 +SEQNUM=935 +MAJOR=21 +MINOR=1 +DEVLINKS=/dev/char/21:1 + +KERNEL[1294230194.011878] add /devices/pnp0/00:08 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08 +SUBSYSTEM=pnp +DRIVER=serial +SEQNUM=1032 + +KERNEL[1294230194.012718] add /devices/pnp0/00:08/tty/ttyS0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08/tty/ttyS0 +SUBSYSTEM=tty +DEVNAME=ttyS0 +SEQNUM=1033 +MAJOR=4 +MINOR=64 + +UDEV [1294230194.012918] add /devices/pnp0/00:08 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08 +SUBSYSTEM=pnp +DRIVER=serial +SEQNUM=1032 + +KERNEL[1294230194.014153] add /devices/pnp0/00:09 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:09 +SUBSYSTEM=pnp +SEQNUM=1034 + +KERNEL[1294230194.014273] add /devices/pnp0/00:0a (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0a +SUBSYSTEM=pnp +SEQNUM=1035 + +KERNEL[1294230194.014359] add /devices/pnp0/00:0b (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0b +SUBSYSTEM=pnp +SEQNUM=1036 + +KERNEL[1294230194.014441] add /devices/pnp0/00:0c (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0c +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1037 + +UDEV [1294230194.014702] add /devices/pnp0/00:0c (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0c +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1037 + +UDEV [1294230194.014854] add /devices/pnp0/00:09 (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:09 +SUBSYSTEM=pnp +SEQNUM=1034 + +UDEV [1294230194.014996] add /devices/pnp0/00:0a (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0a +SUBSYSTEM=pnp +SEQNUM=1035 + +UDEV [1294230194.015309] add /devices/pnp0/00:08/tty/ttyS0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:08/tty/ttyS0 +SUBSYSTEM=tty +DEVNAME=/dev/ttyS0 +SEQNUM=1033 +MAJOR=4 +MINOR=64 +DEVLINKS=/dev/char/4:64 + +UDEV [1294230194.015417] add /devices/pnp0/00:0b (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0b +SUBSYSTEM=pnp +SEQNUM=1036 + +KERNEL[1294230194.016126] add /devices/pnp0/00:0d (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0d +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1038 + +KERNEL[1294230194.016942] add /devices/pnp0/00:0e (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0e +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1039 + +KERNEL[1294230194.017032] add /devices/virtual/bdi/0:17 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:17 +SUBSYSTEM=bdi +SEQNUM=1040 + +KERNEL[1294230194.017112] add /devices/virtual/bdi/0:21 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:21 +SUBSYSTEM=bdi +SEQNUM=1041 + +KERNEL[1294230194.017191] add /devices/virtual/bdi/11:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/11:0 +SUBSYSTEM=bdi +SEQNUM=1042 + +KERNEL[1294230194.017271] add /devices/virtual/bdi/1:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:0 +SUBSYSTEM=bdi +SEQNUM=1043 + +KERNEL[1294230194.017353] add /devices/virtual/bdi/1:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:1 +SUBSYSTEM=bdi +SEQNUM=1044 + +KERNEL[1294230194.017431] add /devices/virtual/bdi/1:10 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:10 +SUBSYSTEM=bdi +SEQNUM=1045 + +KERNEL[1294230194.017511] add /devices/virtual/bdi/1:11 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:11 +SUBSYSTEM=bdi +SEQNUM=1046 + +UDEV [1294230194.017666] add /devices/virtual/bdi/11:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/11:0 +SUBSYSTEM=bdi +SEQNUM=1042 + +UDEV [1294230194.017801] add /devices/virtual/bdi/1:10 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:10 +SUBSYSTEM=bdi +SEQNUM=1045 + +UDEV [1294230194.017923] add /devices/virtual/bdi/1:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:0 +SUBSYSTEM=bdi +SEQNUM=1043 + +UDEV [1294230194.018043] add /devices/virtual/bdi/1:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:1 +SUBSYSTEM=bdi +SEQNUM=1044 + +UDEV [1294230194.018199] add /devices/pnp0/00:0e (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0e +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1039 + +UDEV [1294230194.018327] add /devices/virtual/bdi/0:17 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:17 +SUBSYSTEM=bdi +SEQNUM=1040 + +UDEV [1294230194.018448] add /devices/virtual/bdi/0:21 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/0:21 +SUBSYSTEM=bdi +SEQNUM=1041 + +UDEV [1294230194.018655] add /devices/pnp0/00:0d (pnp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pnp0/00:0d +SUBSYSTEM=pnp +DRIVER=system +SEQNUM=1038 + +KERNEL[1294230194.018872] add /devices/virtual/bdi/1:12 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:12 +SUBSYSTEM=bdi +SEQNUM=1047 + +UDEV [1294230194.019084] add /devices/virtual/bdi/1:12 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:12 +SUBSYSTEM=bdi +SEQNUM=1047 + +UDEV [1294230194.019209] add /devices/virtual/bdi/1:11 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:11 +SUBSYSTEM=bdi +SEQNUM=1046 + +KERNEL[1294230194.019403] add /devices/virtual/bdi/1:13 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:13 +SUBSYSTEM=bdi +SEQNUM=1048 + +KERNEL[1294230194.019525] add /devices/virtual/bdi/1:14 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:14 +SUBSYSTEM=bdi +SEQNUM=1049 + +KERNEL[1294230194.019606] add /devices/virtual/bdi/1:15 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:15 +SUBSYSTEM=bdi +SEQNUM=1050 + +KERNEL[1294230194.019686] add /devices/virtual/bdi/1:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:2 +SUBSYSTEM=bdi +SEQNUM=1051 + +UDEV [1294230194.019863] add /devices/virtual/bdi/1:15 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:15 +SUBSYSTEM=bdi +SEQNUM=1050 + +UDEV [1294230194.019991] add /devices/virtual/bdi/1:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:2 +SUBSYSTEM=bdi +SEQNUM=1051 + +UDEV [1294230194.020114] add /devices/virtual/bdi/1:14 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:14 +SUBSYSTEM=bdi +SEQNUM=1049 + +UDEV [1294230194.020239] add /devices/virtual/bdi/1:13 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:13 +SUBSYSTEM=bdi +SEQNUM=1048 + +KERNEL[1294230194.020685] add /devices/virtual/bdi/1:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:3 +SUBSYSTEM=bdi +SEQNUM=1052 + +KERNEL[1294230194.020972] add /devices/virtual/bdi/1:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:4 +SUBSYSTEM=bdi +SEQNUM=1053 + +UDEV [1294230194.021193] add /devices/virtual/bdi/1:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:4 +SUBSYSTEM=bdi +SEQNUM=1053 + +UDEV [1294230194.021321] add /devices/virtual/bdi/1:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:3 +SUBSYSTEM=bdi +SEQNUM=1052 + +KERNEL[1294230194.021571] add /devices/virtual/bdi/1:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:5 +SUBSYSTEM=bdi +SEQNUM=1054 + +UDEV [1294230194.021799] add /devices/virtual/bdi/1:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:5 +SUBSYSTEM=bdi +SEQNUM=1054 + +KERNEL[1294230194.022489] add /devices/virtual/bdi/1:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:6 +SUBSYSTEM=bdi +SEQNUM=1055 + +UDEV [1294230194.022833] add /devices/virtual/bdi/1:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:6 +SUBSYSTEM=bdi +SEQNUM=1055 + +KERNEL[1294230194.023628] add /devices/virtual/bdi/1:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:7 +SUBSYSTEM=bdi +SEQNUM=1056 + +KERNEL[1294230194.023761] add /devices/virtual/bdi/1:8 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:8 +SUBSYSTEM=bdi +SEQNUM=1057 + +UDEV [1294230194.023968] add /devices/virtual/bdi/1:8 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:8 +SUBSYSTEM=bdi +SEQNUM=1057 + +UDEV [1294230194.024098] add /devices/virtual/bdi/1:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:7 +SUBSYSTEM=bdi +SEQNUM=1056 + +KERNEL[1294230194.024316] add /devices/virtual/bdi/1:9 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:9 +SUBSYSTEM=bdi +SEQNUM=1058 + +KERNEL[1294230194.024588] add /devices/virtual/bdi/250:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/250:0 +SUBSYSTEM=bdi +SEQNUM=1059 + +UDEV [1294230194.024800] add /devices/virtual/bdi/250:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/250:0 +SUBSYSTEM=bdi +SEQNUM=1059 + +UDEV [1294230194.024931] add /devices/virtual/bdi/1:9 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/1:9 +SUBSYSTEM=bdi +SEQNUM=1058 + +KERNEL[1294230194.027129] add /devices/virtual/bdi/7:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:0 +SUBSYSTEM=bdi +SEQNUM=1060 + +KERNEL[1294230194.027508] add /devices/virtual/bdi/7:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:1 +SUBSYSTEM=bdi +SEQNUM=1061 + +UDEV [1294230194.028074] add /devices/virtual/bdi/7:1 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:1 +SUBSYSTEM=bdi +SEQNUM=1061 + +UDEV [1294230194.028498] add /devices/virtual/bdi/7:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:0 +SUBSYSTEM=bdi +SEQNUM=1060 + +KERNEL[1294230194.029493] add /devices/virtual/bdi/7:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:2 +SUBSYSTEM=bdi +SEQNUM=1062 + +KERNEL[1294230194.029633] add /devices/virtual/bdi/7:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:3 +SUBSYSTEM=bdi +SEQNUM=1063 + +UDEV [1294230194.030097] add /devices/virtual/bdi/7:3 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:3 +SUBSYSTEM=bdi +SEQNUM=1063 + +UDEV [1294230194.030292] add /devices/virtual/bdi/7:2 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:2 +SUBSYSTEM=bdi +SEQNUM=1062 + +KERNEL[1294230194.030969] add /devices/virtual/bdi/7:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:4 +SUBSYSTEM=bdi +SEQNUM=1064 + +KERNEL[1294230194.031103] add /devices/virtual/bdi/7:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:5 +SUBSYSTEM=bdi +SEQNUM=1065 + +UDEV [1294230194.031312] add /devices/virtual/bdi/7:5 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:5 +SUBSYSTEM=bdi +SEQNUM=1065 + +UDEV [1294230194.031439] add /devices/virtual/bdi/7:4 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:4 +SUBSYSTEM=bdi +SEQNUM=1064 + +KERNEL[1294230194.032231] add /devices/virtual/bdi/7:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:6 +SUBSYSTEM=bdi +SEQNUM=1066 + +UDEV [1294230194.032566] add /devices/virtual/bdi/7:6 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:6 +SUBSYSTEM=bdi +SEQNUM=1066 + +UDEV [1294230194.034933] add /devices/pci0000:00/0000:00:14.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1 +SUBSYSTEM=pci +DRIVER=pata_atiixp +PCI_CLASS=1018F +PCI_ID=1002:438C +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.1 +MODALIAS=pci:v00001002d0000438Csv0000103Csd0000280Abc01sc01i8f +SEQNUM=984 +ID_VENDOR_FROM_DATABASE=ATI Technologies Inc +ID_MODEL_FROM_DATABASE=SB600 IDE + +UDEV [1294230194.035287] add /devices/pci0000:00/0000:00:14.1/host5 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=987 + +UDEV [1294230194.035301] add /devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 +SUBSYSTEM=scsi_host +SEQNUM=988 + +UDEV [1294230194.035643] add /devices/pci0000:00/0000:00:14.1/host4 (scsi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4 +SUBSYSTEM=scsi +DEVTYPE=scsi_host +SEQNUM=985 + +UDEV [1294230194.035657] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=883 + +UDEV [1294230194.035668] add /devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 (scsi_host) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 +SUBSYSTEM=scsi_host +SEQNUM=986 + +KERNEL[1294230194.036243] add /devices/virtual/bdi/7:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:7 +SUBSYSTEM=bdi +SEQNUM=1067 + +UDEV [1294230194.036259] add /devices/virtual/bdi/default (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/default +SUBSYSTEM=bdi +SEQNUM=1069 + +KERNEL[1294230194.036271] add /devices/virtual/bdi/8:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/8:0 +SUBSYSTEM=bdi +SEQNUM=1068 + +KERNEL[1294230194.036282] add /devices/virtual/bdi/default (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/default +SUBSYSTEM=bdi +SEQNUM=1069 + +KERNEL[1294230194.036312] add /devices/virtual/block/loop0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop0 +SUBSYSTEM=block +DEVNAME=loop0 +DEVTYPE=disk +SEQNUM=1070 +MAJOR=7 +MINOR=0 + +KERNEL[1294230194.036327] add /devices/virtual/block/loop1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop1 +SUBSYSTEM=block +DEVNAME=loop1 +DEVTYPE=disk +SEQNUM=1071 +MAJOR=7 +MINOR=1 + +KERNEL[1294230194.036342] add /devices/virtual/block/loop2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop2 +SUBSYSTEM=block +DEVNAME=loop2 +DEVTYPE=disk +SEQNUM=1072 +MAJOR=7 +MINOR=2 + +KERNEL[1294230194.036356] add /devices/virtual/block/loop3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop3 +SUBSYSTEM=block +DEVNAME=loop3 +DEVTYPE=disk +SEQNUM=1073 +MAJOR=7 +MINOR=3 + +KERNEL[1294230194.036521] add /devices/virtual/block/loop4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop4 +SUBSYSTEM=block +DEVNAME=loop4 +DEVTYPE=disk +SEQNUM=1074 +MAJOR=7 +MINOR=4 + +KERNEL[1294230194.036714] add /module/drm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm +SUBSYSTEM=module +SEQNUM=1075 + +UDEV [1294230194.036906] add /module/drm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm +SUBSYSTEM=module +SEQNUM=1075 + +UDEV [1294230194.039375] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 +SUBSYSTEM=usb +DEVTYPE=usb_interface +PRODUCT=3f0/1024/535 +TYPE=0/0/0 +INTERFACE=11/0/0 +MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic0Bisc00ip00 +SEQNUM=949 + +KERNEL[1294230194.039708] add /devices/virtual/block/loop5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop5 +SUBSYSTEM=block +DEVNAME=loop5 +DEVTYPE=disk +SEQNUM=1076 +MAJOR=7 +MINOR=5 + +KERNEL[1294230194.040460] add /class/drm (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/drm +SUBSYSTEM=class +SEQNUM=1077 + +UDEV [1294230194.040693] add /class/drm (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/drm +SUBSYSTEM=class +SEQNUM=1077 + +KERNEL[1294230194.042887] add /devices/virtual/block/loop6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop6 +SUBSYSTEM=block +DEVNAME=loop6 +DEVTYPE=disk +SEQNUM=1078 +MAJOR=7 +MINOR=6 + +KERNEL[1294230194.043510] add /devices/virtual/block/loop7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop7 +SUBSYSTEM=block +DEVNAME=loop7 +DEVTYPE=disk +SEQNUM=1079 +MAJOR=7 +MINOR=7 + +UDEV [1294230194.043599] add /devices/virtual/bdi/8:0 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/8:0 +SUBSYSTEM=bdi +SEQNUM=1068 + +KERNEL[1294230194.044228] add /devices/virtual/block/ram0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram0 +SUBSYSTEM=block +DEVNAME=ram0 +DEVTYPE=disk +SEQNUM=1080 +MAJOR=1 +MINOR=0 + +UDEV [1294230194.044245] add /devices/platform/eisa.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/eisa.0 +SUBSYSTEM=platform +MODALIAS=platform:eisa +SEQNUM=1011 + +KERNEL[1294230194.044258] add /devices/virtual/block/ram1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram1 +SUBSYSTEM=block +DEVNAME=ram1 +DEVTYPE=disk +SEQNUM=1081 +MAJOR=1 +MINOR=1 + +KERNEL[1294230194.044663] add /devices/virtual/block/ram10 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram10 +SUBSYSTEM=block +DEVNAME=ram10 +DEVTYPE=disk +SEQNUM=1082 +MAJOR=1 +MINOR=10 + +KERNEL[1294230194.044681] add /devices/virtual/block/ram11 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram11 +SUBSYSTEM=block +DEVNAME=ram11 +DEVTYPE=disk +SEQNUM=1083 +MAJOR=1 +MINOR=11 + +KERNEL[1294230194.045313] add /devices/virtual/block/ram12 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram12 +SUBSYSTEM=block +DEVNAME=ram12 +DEVTYPE=disk +SEQNUM=1084 +MAJOR=1 +MINOR=12 + +KERNEL[1294230194.045332] add /devices/virtual/block/ram13 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram13 +SUBSYSTEM=block +DEVNAME=ram13 +DEVTYPE=disk +SEQNUM=1085 +MAJOR=1 +MINOR=13 + +KERNEL[1294230194.045845] add /devices/virtual/block/ram14 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram14 +SUBSYSTEM=block +DEVNAME=ram14 +DEVTYPE=disk +SEQNUM=1086 +MAJOR=1 +MINOR=14 + +KERNEL[1294230194.045879] add /devices/virtual/block/ram15 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram15 +SUBSYSTEM=block +DEVNAME=ram15 +DEVTYPE=disk +SEQNUM=1087 +MAJOR=1 +MINOR=15 + +KERNEL[1294230194.046421] add /devices/virtual/block/ram2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram2 +SUBSYSTEM=block +DEVNAME=ram2 +DEVTYPE=disk +SEQNUM=1088 +MAJOR=1 +MINOR=2 + +KERNEL[1294230194.046441] add /devices/virtual/block/ram3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram3 +SUBSYSTEM=block +DEVNAME=ram3 +DEVTYPE=disk +SEQNUM=1089 +MAJOR=1 +MINOR=3 + +KERNEL[1294230194.046999] add /devices/virtual/block/ram4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram4 +SUBSYSTEM=block +DEVNAME=ram4 +DEVTYPE=disk +SEQNUM=1090 +MAJOR=1 +MINOR=4 + +KERNEL[1294230194.047019] add /devices/virtual/block/ram5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram5 +SUBSYSTEM=block +DEVNAME=ram5 +DEVTYPE=disk +SEQNUM=1091 +MAJOR=1 +MINOR=5 + +KERNEL[1294230194.054567] add /devices/virtual/block/ram6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram6 +SUBSYSTEM=block +DEVNAME=ram6 +DEVTYPE=disk +SEQNUM=1092 +MAJOR=1 +MINOR=6 + +KERNEL[1294230194.054591] add /devices/virtual/block/ram7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram7 +SUBSYSTEM=block +DEVNAME=ram7 +DEVTYPE=disk +SEQNUM=1093 +MAJOR=1 +MINOR=7 + +KERNEL[1294230194.054607] add /devices/virtual/block/ram8 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram8 +SUBSYSTEM=block +DEVNAME=ram8 +DEVTYPE=disk +SEQNUM=1094 +MAJOR=1 +MINOR=8 + +KERNEL[1294230194.054622] add /devices/virtual/block/ram9 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram9 +SUBSYSTEM=block +DEVNAME=ram9 +DEVTYPE=disk +SEQNUM=1095 +MAJOR=1 +MINOR=9 + +KERNEL[1294230194.054638] add /devices/virtual/block/ramzswap0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ramzswap0 +SUBSYSTEM=block +DEVNAME=ramzswap0 +DEVTYPE=disk +SEQNUM=1096 +MAJOR=250 +MINOR=0 + +KERNEL[1294230194.054652] add /devices/virtual/dmi/id (dmi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/dmi/id +SUBSYSTEM=dmi +MODALIAS=dmi:bvnHewlett-Packard:bvr786E3v02.22:bd04/18/2007:svnHewlett-Packard:pnHPCompaqdc5750Microtower:pvr:rvnHewlett-Packard:rn0A64h:rvr:cvnHewlett-Packard:ct6:cvr: +SEQNUM=1097 + +KERNEL[1294230194.054665] add /devices/virtual/graphics/fbcon (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/graphics/fbcon +SUBSYSTEM=graphics +SEQNUM=1098 + +KERNEL[1294230194.054681] add /devices/virtual/input/input2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2 +SUBSYSTEM=input +PRODUCT=17/1/1/100 +NAME="Macintosh mouse button emulation" +EV==7 +KEY==70000 0 0 0 0 0 0 0 0 +REL==3 +MODALIAS=input:b0017v0001p0001e0100-e0,1,2,k110,111,112,r0,1,amlsfw +SEQNUM=1099 + +KERNEL[1294230194.054697] add /devices/virtual/input/input2/event2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/event2 +SUBSYSTEM=input +DEVNAME=input/event2 +SEQNUM=1100 +MAJOR=13 +MINOR=66 + +KERNEL[1294230194.054712] add /devices/virtual/input/input2/mouse0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/mouse0 +SUBSYSTEM=input +DEVNAME=input/mouse0 +SEQNUM=1101 +MAJOR=13 +MINOR=32 + +KERNEL[1294230194.054726] add /devices/virtual/input/mice (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/mice +SUBSYSTEM=input +DEVNAME=input/mice +SEQNUM=1102 +MAJOR=13 +MINOR=63 + +KERNEL[1294230194.054741] add /devices/virtual/mem/full (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/full +SUBSYSTEM=mem +DEVNAME=full +DEVMODE=0666 +SEQNUM=1103 +MAJOR=1 +MINOR=7 + +KERNEL[1294230194.054757] add /devices/virtual/mem/kmsg (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/kmsg +SUBSYSTEM=mem +DEVNAME=kmsg +SEQNUM=1104 +MAJOR=1 +MINOR=11 + +KERNEL[1294230194.054771] add /devices/virtual/mem/mem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/mem +SUBSYSTEM=mem +DEVNAME=mem +SEQNUM=1105 +MAJOR=1 +MINOR=1 + +KERNEL[1294230194.054799] add /devices/virtual/mem/null (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/null +SUBSYSTEM=mem +DEVNAME=null +DEVMODE=0666 +SEQNUM=1106 +MAJOR=1 +MINOR=3 + +KERNEL[1294230194.054814] add /devices/virtual/mem/oldmem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/oldmem +SUBSYSTEM=mem +DEVNAME=oldmem +SEQNUM=1107 +MAJOR=1 +MINOR=12 + +KERNEL[1294230194.054829] add /devices/virtual/mem/port (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/port +SUBSYSTEM=mem +DEVNAME=port +SEQNUM=1108 +MAJOR=1 +MINOR=4 + +KERNEL[1294230194.054846] add /devices/virtual/mem/random (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/random +SUBSYSTEM=mem +DEVNAME=random +DEVMODE=0666 +SEQNUM=1109 +MAJOR=1 +MINOR=8 + +KERNEL[1294230194.054861] add /devices/virtual/mem/urandom (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/urandom +SUBSYSTEM=mem +DEVNAME=urandom +DEVMODE=0666 +SEQNUM=1110 +MAJOR=1 +MINOR=9 + +KERNEL[1294230194.054877] add /devices/virtual/mem/zero (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/zero +SUBSYSTEM=mem +DEVNAME=zero +DEVMODE=0666 +SEQNUM=1111 +MAJOR=1 +MINOR=5 + +KERNEL[1294230194.054893] add /devices/virtual/misc/cpu_dma_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/cpu_dma_latency +SUBSYSTEM=misc +DEVNAME=cpu_dma_latency +SEQNUM=1112 +MAJOR=10 +MINOR=58 + +KERNEL[1294230194.054907] add /devices/virtual/misc/device-mapper (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/device-mapper +SUBSYSTEM=misc +DEVNAME=mapper/control +SEQNUM=1113 +MAJOR=10 +MINOR=59 + +KERNEL[1294230194.054922] add /devices/virtual/misc/ecryptfs (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/ecryptfs +SUBSYSTEM=misc +DEVNAME=ecryptfs +SEQNUM=1114 +MAJOR=10 +MINOR=61 + +KERNEL[1294230194.054937] add /devices/virtual/misc/fuse (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/fuse +SUBSYSTEM=misc +DEVNAME=fuse +SEQNUM=1115 +MAJOR=10 +MINOR=229 + +KERNEL[1294230194.054951] add /devices/virtual/misc/hpet (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/hpet +SUBSYSTEM=misc +DEVNAME=hpet +SEQNUM=1116 +MAJOR=10 +MINOR=228 + +KERNEL[1294230194.054966] add /devices/virtual/misc/mcelog (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/mcelog +SUBSYSTEM=misc +DEVNAME=mcelog +SEQNUM=1117 +MAJOR=10 +MINOR=227 + +KERNEL[1294230194.054981] add /devices/virtual/misc/network_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_latency +SUBSYSTEM=misc +DEVNAME=network_latency +SEQNUM=1118 +MAJOR=10 +MINOR=57 + +KERNEL[1294230194.054995] add /devices/virtual/misc/network_throughput (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_throughput +SUBSYSTEM=misc +DEVNAME=network_throughput +SEQNUM=1119 +MAJOR=10 +MINOR=56 + +KERNEL[1294230194.055010] add /devices/virtual/misc/pktcdvd (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/pktcdvd +SUBSYSTEM=misc +DEVNAME=pktcdvd/control +SEQNUM=1120 +MAJOR=10 +MINOR=60 + +KERNEL[1294230194.055025] add /devices/virtual/misc/psaux (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/psaux +SUBSYSTEM=misc +DEVNAME=psaux +SEQNUM=1121 +MAJOR=10 +MINOR=1 + +KERNEL[1294230194.055039] add /devices/virtual/misc/rfkill (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/rfkill +SUBSYSTEM=misc +DEVNAME=rfkill +SEQNUM=1122 +MAJOR=10 +MINOR=62 + +KERNEL[1294230194.055053] add /devices/virtual/misc/snapshot (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/snapshot +SUBSYSTEM=misc +DEVNAME=snapshot +SEQNUM=1123 +MAJOR=10 +MINOR=231 + +KERNEL[1294230194.055068] add /devices/virtual/misc/tun (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/tun +SUBSYSTEM=misc +DEVNAME=net/tun +SEQNUM=1124 +MAJOR=10 +MINOR=200 + +KERNEL[1294230194.055083] add /devices/virtual/misc/vga_arbiter (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vga_arbiter +SUBSYSTEM=misc +DEVNAME=vga_arbiter +SEQNUM=1125 +MAJOR=10 +MINOR=63 + +KERNEL[1294230194.055097] add /devices/virtual/net/br0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/br0 +SUBSYSTEM=net +DEVTYPE=bridge +INTERFACE=br0 +IFINDEX=3 +SEQNUM=1126 + +KERNEL[1294230194.055119] add /devices/virtual/net/lo (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/lo +SUBSYSTEM=net +INTERFACE=lo +IFINDEX=1 +SEQNUM=1127 + +KERNEL[1294230194.055134] add /devices/virtual/ppp/ppp (ppp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/ppp/ppp +SUBSYSTEM=ppp +DEVNAME=ppp +SEQNUM=1128 +MAJOR=108 +MINOR=0 + +KERNEL[1294230194.055148] add /devices/virtual/sound/timer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/sound/timer +SUBSYSTEM=sound +DEVNAME=snd/timer +SEQNUM=1129 +MAJOR=116 +MINOR=2 + +KERNEL[1294230194.055161] add /devices/virtual/thermal/cooling_device0 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device0 +SUBSYSTEM=thermal +SEQNUM=1130 + +KERNEL[1294230194.055173] add /devices/virtual/thermal/cooling_device1 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device1 +SUBSYSTEM=thermal +SEQNUM=1131 + +KERNEL[1294230194.055186] add /devices/virtual/tty/console (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/console +SUBSYSTEM=tty +DEVNAME=console +SEQNUM=1132 +MAJOR=5 +MINOR=1 + +KERNEL[1294230194.055202] add /devices/virtual/tty/ptmx (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/ptmx +SUBSYSTEM=tty +DEVNAME=ptmx +DEVMODE=0666 +SEQNUM=1133 +MAJOR=5 +MINOR=2 + +KERNEL[1294230194.055217] add /devices/virtual/tty/tty (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty +SUBSYSTEM=tty +DEVNAME=tty +DEVMODE=0666 +SEQNUM=1134 +MAJOR=5 +MINOR=0 + +KERNEL[1294230194.055232] add /devices/virtual/tty/tty0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty0 +SUBSYSTEM=tty +DEVNAME=tty0 +SEQNUM=1135 +MAJOR=4 +MINOR=0 + +KERNEL[1294230194.055246] add /devices/virtual/tty/tty1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty1 +SUBSYSTEM=tty +DEVNAME=tty1 +SEQNUM=1136 +MAJOR=4 +MINOR=1 + +KERNEL[1294230194.055261] add /devices/virtual/tty/tty10 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty10 +SUBSYSTEM=tty +DEVNAME=tty10 +SEQNUM=1137 +MAJOR=4 +MINOR=10 + +KERNEL[1294230194.055275] add /devices/virtual/tty/tty11 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty11 +SUBSYSTEM=tty +DEVNAME=tty11 +SEQNUM=1138 +MAJOR=4 +MINOR=11 + +KERNEL[1294230194.055290] add /devices/virtual/tty/tty12 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty12 +SUBSYSTEM=tty +DEVNAME=tty12 +SEQNUM=1139 +MAJOR=4 +MINOR=12 + +KERNEL[1294230194.055304] add /devices/virtual/tty/tty13 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty13 +SUBSYSTEM=tty +DEVNAME=tty13 +SEQNUM=1140 +MAJOR=4 +MINOR=13 + +KERNEL[1294230194.055318] add /devices/virtual/tty/tty14 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty14 +SUBSYSTEM=tty +DEVNAME=tty14 +SEQNUM=1141 +MAJOR=4 +MINOR=14 + +KERNEL[1294230194.055333] add /devices/virtual/tty/tty15 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty15 +SUBSYSTEM=tty +DEVNAME=tty15 +SEQNUM=1142 +MAJOR=4 +MINOR=15 + +KERNEL[1294230194.055347] add /devices/virtual/tty/tty16 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty16 +SUBSYSTEM=tty +DEVNAME=tty16 +SEQNUM=1143 +MAJOR=4 +MINOR=16 + +KERNEL[1294230194.055361] add /devices/virtual/tty/tty17 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty17 +SUBSYSTEM=tty +DEVNAME=tty17 +SEQNUM=1144 +MAJOR=4 +MINOR=17 + +KERNEL[1294230194.055376] add /devices/virtual/tty/tty18 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty18 +SUBSYSTEM=tty +DEVNAME=tty18 +SEQNUM=1145 +MAJOR=4 +MINOR=18 + +KERNEL[1294230194.055390] add /devices/virtual/tty/tty19 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty19 +SUBSYSTEM=tty +DEVNAME=tty19 +SEQNUM=1146 +MAJOR=4 +MINOR=19 + +KERNEL[1294230194.055404] add /devices/virtual/tty/tty2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty2 +SUBSYSTEM=tty +DEVNAME=tty2 +SEQNUM=1147 +MAJOR=4 +MINOR=2 + +KERNEL[1294230194.055419] add /devices/virtual/tty/tty20 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty20 +SUBSYSTEM=tty +DEVNAME=tty20 +SEQNUM=1148 +MAJOR=4 +MINOR=20 + +KERNEL[1294230194.055441] add /devices/virtual/tty/tty21 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty21 +SUBSYSTEM=tty +DEVNAME=tty21 +SEQNUM=1149 +MAJOR=4 +MINOR=21 + +KERNEL[1294230194.055456] add /devices/virtual/tty/tty22 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty22 +SUBSYSTEM=tty +DEVNAME=tty22 +SEQNUM=1150 +MAJOR=4 +MINOR=22 + +KERNEL[1294230194.055470] add /devices/virtual/tty/tty23 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty23 +SUBSYSTEM=tty +DEVNAME=tty23 +SEQNUM=1151 +MAJOR=4 +MINOR=23 + +KERNEL[1294230194.055485] add /devices/virtual/tty/tty24 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty24 +SUBSYSTEM=tty +DEVNAME=tty24 +SEQNUM=1152 +MAJOR=4 +MINOR=24 + +KERNEL[1294230194.055499] add /devices/virtual/tty/tty25 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty25 +SUBSYSTEM=tty +DEVNAME=tty25 +SEQNUM=1153 +MAJOR=4 +MINOR=25 + +KERNEL[1294230194.055513] add /devices/virtual/tty/tty26 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty26 +SUBSYSTEM=tty +DEVNAME=tty26 +SEQNUM=1154 +MAJOR=4 +MINOR=26 + +KERNEL[1294230194.055528] add /devices/virtual/tty/tty27 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty27 +SUBSYSTEM=tty +DEVNAME=tty27 +SEQNUM=1155 +MAJOR=4 +MINOR=27 + +KERNEL[1294230194.055542] add /devices/virtual/tty/tty28 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty28 +SUBSYSTEM=tty +DEVNAME=tty28 +SEQNUM=1156 +MAJOR=4 +MINOR=28 + +KERNEL[1294230194.055556] add /devices/virtual/tty/tty29 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty29 +SUBSYSTEM=tty +DEVNAME=tty29 +SEQNUM=1157 +MAJOR=4 +MINOR=29 + +KERNEL[1294230194.055571] add /devices/virtual/tty/tty3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty3 +SUBSYSTEM=tty +DEVNAME=tty3 +SEQNUM=1158 +MAJOR=4 +MINOR=3 + +KERNEL[1294230194.055585] add /devices/virtual/tty/tty30 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty30 +SUBSYSTEM=tty +DEVNAME=tty30 +SEQNUM=1159 +MAJOR=4 +MINOR=30 + +KERNEL[1294230194.055599] add /devices/virtual/tty/tty31 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty31 +SUBSYSTEM=tty +DEVNAME=tty31 +SEQNUM=1160 +MAJOR=4 +MINOR=31 + +KERNEL[1294230194.055614] add /devices/virtual/tty/tty32 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty32 +SUBSYSTEM=tty +DEVNAME=tty32 +SEQNUM=1161 +MAJOR=4 +MINOR=32 + +KERNEL[1294230194.055628] add /devices/virtual/tty/tty33 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty33 +SUBSYSTEM=tty +DEVNAME=tty33 +SEQNUM=1162 +MAJOR=4 +MINOR=33 + +KERNEL[1294230194.055642] add /devices/virtual/tty/tty34 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty34 +SUBSYSTEM=tty +DEVNAME=tty34 +SEQNUM=1163 +MAJOR=4 +MINOR=34 + +KERNEL[1294230194.055657] add /devices/virtual/tty/tty35 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty35 +SUBSYSTEM=tty +DEVNAME=tty35 +SEQNUM=1164 +MAJOR=4 +MINOR=35 + +KERNEL[1294230194.055671] add /devices/virtual/tty/tty36 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty36 +SUBSYSTEM=tty +DEVNAME=tty36 +SEQNUM=1165 +MAJOR=4 +MINOR=36 + +KERNEL[1294230194.055686] add /devices/virtual/tty/tty37 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty37 +SUBSYSTEM=tty +DEVNAME=tty37 +SEQNUM=1166 +MAJOR=4 +MINOR=37 + +KERNEL[1294230194.055700] add /devices/virtual/tty/tty38 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty38 +SUBSYSTEM=tty +DEVNAME=tty38 +SEQNUM=1167 +MAJOR=4 +MINOR=38 + +KERNEL[1294230194.055714] add /devices/virtual/tty/tty39 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty39 +SUBSYSTEM=tty +DEVNAME=tty39 +SEQNUM=1168 +MAJOR=4 +MINOR=39 + +KERNEL[1294230194.055729] add /devices/virtual/tty/tty4 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty4 +SUBSYSTEM=tty +DEVNAME=tty4 +SEQNUM=1169 +MAJOR=4 +MINOR=4 + +KERNEL[1294230194.055743] add /devices/virtual/tty/tty40 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty40 +SUBSYSTEM=tty +DEVNAME=tty40 +SEQNUM=1170 +MAJOR=4 +MINOR=40 + +KERNEL[1294230194.055766] add /devices/virtual/tty/tty41 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty41 +SUBSYSTEM=tty +DEVNAME=tty41 +SEQNUM=1171 +MAJOR=4 +MINOR=41 + +KERNEL[1294230194.055780] add /devices/virtual/tty/tty42 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty42 +SUBSYSTEM=tty +DEVNAME=tty42 +SEQNUM=1172 +MAJOR=4 +MINOR=42 + +KERNEL[1294230194.055795] add /devices/virtual/tty/tty43 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty43 +SUBSYSTEM=tty +DEVNAME=tty43 +SEQNUM=1173 +MAJOR=4 +MINOR=43 + +KERNEL[1294230194.055809] add /devices/virtual/tty/tty44 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty44 +SUBSYSTEM=tty +DEVNAME=tty44 +SEQNUM=1174 +MAJOR=4 +MINOR=44 + +KERNEL[1294230194.055823] add /devices/virtual/tty/tty45 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty45 +SUBSYSTEM=tty +DEVNAME=tty45 +SEQNUM=1175 +MAJOR=4 +MINOR=45 + +KERNEL[1294230194.055838] add /devices/virtual/tty/tty46 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty46 +SUBSYSTEM=tty +DEVNAME=tty46 +SEQNUM=1176 +MAJOR=4 +MINOR=46 + +KERNEL[1294230194.055852] add /devices/virtual/tty/tty47 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty47 +SUBSYSTEM=tty +DEVNAME=tty47 +SEQNUM=1177 +MAJOR=4 +MINOR=47 + +KERNEL[1294230194.055866] add /devices/virtual/tty/tty48 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty48 +SUBSYSTEM=tty +DEVNAME=tty48 +SEQNUM=1178 +MAJOR=4 +MINOR=48 + +KERNEL[1294230194.055881] add /devices/virtual/tty/tty49 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty49 +SUBSYSTEM=tty +DEVNAME=tty49 +SEQNUM=1179 +MAJOR=4 +MINOR=49 + +KERNEL[1294230194.055895] add /devices/virtual/tty/tty5 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty5 +SUBSYSTEM=tty +DEVNAME=tty5 +SEQNUM=1180 +MAJOR=4 +MINOR=5 + +KERNEL[1294230194.055909] add /devices/virtual/tty/tty50 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty50 +SUBSYSTEM=tty +DEVNAME=tty50 +SEQNUM=1181 +MAJOR=4 +MINOR=50 + +KERNEL[1294230194.055924] add /devices/virtual/tty/tty51 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty51 +SUBSYSTEM=tty +DEVNAME=tty51 +SEQNUM=1182 +MAJOR=4 +MINOR=51 + +KERNEL[1294230194.055939] add /devices/virtual/tty/tty52 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty52 +SUBSYSTEM=tty +DEVNAME=tty52 +SEQNUM=1183 +MAJOR=4 +MINOR=52 + +KERNEL[1294230194.055953] add /devices/virtual/tty/tty53 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty53 +SUBSYSTEM=tty +DEVNAME=tty53 +SEQNUM=1184 +MAJOR=4 +MINOR=53 + +KERNEL[1294230194.055967] add /devices/virtual/tty/tty54 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty54 +SUBSYSTEM=tty +DEVNAME=tty54 +SEQNUM=1185 +MAJOR=4 +MINOR=54 + +KERNEL[1294230194.055982] add /devices/virtual/tty/tty55 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty55 +SUBSYSTEM=tty +DEVNAME=tty55 +SEQNUM=1186 +MAJOR=4 +MINOR=55 + +KERNEL[1294230194.055996] add /devices/virtual/tty/tty56 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty56 +SUBSYSTEM=tty +DEVNAME=tty56 +SEQNUM=1187 +MAJOR=4 +MINOR=56 + +KERNEL[1294230194.056011] add /devices/virtual/tty/tty57 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty57 +SUBSYSTEM=tty +DEVNAME=tty57 +SEQNUM=1188 +MAJOR=4 +MINOR=57 + +KERNEL[1294230194.056025] add /devices/virtual/tty/tty58 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty58 +SUBSYSTEM=tty +DEVNAME=tty58 +SEQNUM=1189 +MAJOR=4 +MINOR=58 + +KERNEL[1294230194.056039] add /devices/virtual/tty/tty59 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty59 +SUBSYSTEM=tty +DEVNAME=tty59 +SEQNUM=1190 +MAJOR=4 +MINOR=59 + +KERNEL[1294230194.056053] add /devices/virtual/tty/tty6 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty6 +SUBSYSTEM=tty +DEVNAME=tty6 +SEQNUM=1191 +MAJOR=4 +MINOR=6 + +KERNEL[1294230194.056068] add /devices/virtual/tty/tty60 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty60 +SUBSYSTEM=tty +DEVNAME=tty60 +SEQNUM=1192 +MAJOR=4 +MINOR=60 + +KERNEL[1294230194.056082] add /devices/virtual/tty/tty61 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty61 +SUBSYSTEM=tty +DEVNAME=tty61 +SEQNUM=1193 +MAJOR=4 +MINOR=61 + +KERNEL[1294230194.056104] add /devices/virtual/tty/tty62 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty62 +SUBSYSTEM=tty +DEVNAME=tty62 +SEQNUM=1194 +MAJOR=4 +MINOR=62 + +KERNEL[1294230194.056119] add /devices/virtual/tty/tty63 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty63 +SUBSYSTEM=tty +DEVNAME=tty63 +SEQNUM=1195 +MAJOR=4 +MINOR=63 + +KERNEL[1294230194.056133] add /devices/virtual/tty/tty7 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty7 +SUBSYSTEM=tty +DEVNAME=tty7 +SEQNUM=1196 +MAJOR=4 +MINOR=7 + +KERNEL[1294230194.056147] add /devices/virtual/tty/tty8 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty8 +SUBSYSTEM=tty +DEVNAME=tty8 +SEQNUM=1197 +MAJOR=4 +MINOR=8 + +KERNEL[1294230194.056162] add /devices/virtual/tty/tty9 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty9 +SUBSYSTEM=tty +DEVNAME=tty9 +SEQNUM=1198 +MAJOR=4 +MINOR=9 + +KERNEL[1294230194.056176] add /devices/virtual/usbmon/usbmon0 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/usbmon/usbmon0 +SUBSYSTEM=usbmon +DEVNAME=usbmon0 +SEQNUM=1199 +MAJOR=252 +MINOR=0 + +KERNEL[1294230194.056191] add /devices/virtual/vc/vcs (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs +SUBSYSTEM=vc +DEVNAME=vcs +SEQNUM=1200 +MAJOR=7 +MINOR=0 + +KERNEL[1294230194.056205] add /devices/virtual/vc/vcs1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs1 +SUBSYSTEM=vc +DEVNAME=vcs1 +SEQNUM=1201 +MAJOR=7 +MINOR=1 + +KERNEL[1294230194.056220] add /devices/virtual/vc/vcs10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs10 +SUBSYSTEM=vc +DEVNAME=vcs10 +SEQNUM=1202 +MAJOR=7 +MINOR=10 + +KERNEL[1294230194.056234] add /devices/virtual/vc/vcsa (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa +SUBSYSTEM=vc +DEVNAME=vcsa +SEQNUM=1203 +MAJOR=7 +MINOR=128 + +KERNEL[1294230194.056249] add /devices/virtual/vc/vcsa1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa1 +SUBSYSTEM=vc +DEVNAME=vcsa1 +SEQNUM=1204 +MAJOR=7 +MINOR=129 + +KERNEL[1294230194.056263] add /devices/virtual/vc/vcsa10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa10 +SUBSYSTEM=vc +DEVNAME=vcsa10 +SEQNUM=1205 +MAJOR=7 +MINOR=138 + +KERNEL[1294230194.056276] add /devices/virtual/vtconsole/vtcon0 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon0 +SUBSYSTEM=vtconsole +SEQNUM=1206 + +KERNEL[1294230194.056287] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1207 + +UDEV [1294230194.063927] add /devices/virtual/bdi/7:7 (bdi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/bdi/7:7 +SUBSYSTEM=bdi +SEQNUM=1067 + +UDEV [1294230194.066856] add /devices/virtual/tty/tty28 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty28 +SUBSYSTEM=tty +DEVNAME=/dev/tty28 +SEQNUM=1156 +MAJOR=4 +MINOR=28 +DEVLINKS=/dev/char/4:28 + +KERNEL[1294230194.073883] add /module/drm_kms_helper (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm_kms_helper +SUBSYSTEM=module +SEQNUM=1208 + +UDEV [1294230194.079788] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=878 + +UDEV [1294230194.079810] add /devices/virtual/tty/tty36 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty36 +SUBSYSTEM=tty +DEVNAME=/dev/tty36 +SEQNUM=1165 +MAJOR=4 +MINOR=36 +DEVLINKS=/dev/char/4:36 + +UDEV [1294230194.079826] add /devices/virtual/tty/tty34 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty34 +SUBSYSTEM=tty +DEVNAME=/dev/tty34 +SEQNUM=1163 +MAJOR=4 +MINOR=34 +DEVLINKS=/dev/char/4:34 + +UDEV [1294230194.079841] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=875 + +UDEV [1294230194.079853] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=846 + +UDEV [1294230194.079886] add /devices/virtual/tty/tty27 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty27 +SUBSYSTEM=tty +DEVNAME=/dev/tty27 +SEQNUM=1155 +MAJOR=4 +MINOR=27 +DEVLINKS=/dev/char/4:27 + +UDEV [1294230194.079901] add /devices/virtual/tty/tty31 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty31 +SUBSYSTEM=tty +DEVNAME=/dev/tty31 +SEQNUM=1160 +MAJOR=4 +MINOR=31 +DEVLINKS=/dev/char/4:31 + +UDEV [1294230194.079916] add /devices/virtual/tty/tty25 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty25 +SUBSYSTEM=tty +DEVNAME=/dev/tty25 +SEQNUM=1153 +MAJOR=4 +MINOR=25 +DEVLINKS=/dev/char/4:25 + +UDEV [1294230194.079974] add /devices/virtual/tty/tty39 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty39 +SUBSYSTEM=tty +DEVNAME=/dev/tty39 +SEQNUM=1168 +MAJOR=4 +MINOR=39 +DEVLINKS=/dev/char/4:39 + +UDEV [1294230194.080017] add /devices/pci0000:00/0000:00:18.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.0 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1100 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.0 +MODALIAS=pci:v00001022d00001100sv00000000sd00000000bc06sc00i00 +SEQNUM=1003 + +UDEV [1294230194.080065] add /devices/pci0000:00/0000:00:18.2 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.2 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1102 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.2 +MODALIAS=pci:v00001022d00001102sv00000000sd00000000bc06sc00i00 +SEQNUM=1005 + +UDEV [1294230194.080395] add /devices/virtual/tty/tty37 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty37 +SUBSYSTEM=tty +DEVNAME=/dev/tty37 +SEQNUM=1166 +MAJOR=4 +MINOR=37 +DEVLINKS=/dev/char/4:37 + +UDEV [1294230194.080971] add /devices/virtual/tty/tty20 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty20 +SUBSYSTEM=tty +DEVNAME=/dev/tty20 +SEQNUM=1148 +MAJOR=4 +MINOR=20 +DEVLINKS=/dev/char/4:20 + +UDEV [1294230194.081403] add /devices/virtual/tty/tty22 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty22 +SUBSYSTEM=tty +DEVNAME=/dev/tty22 +SEQNUM=1150 +MAJOR=4 +MINOR=22 +DEVLINKS=/dev/char/4:22 + +UDEV [1294230194.082070] add /devices/virtual/tty/tty19 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty19 +SUBSYSTEM=tty +DEVNAME=/dev/tty19 +SEQNUM=1146 +MAJOR=4 +MINOR=19 +DEVLINKS=/dev/char/4:19 + +UDEV [1294230194.082822] add /devices/virtual/tty/tty23 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty23 +SUBSYSTEM=tty +DEVNAME=/dev/tty23 +SEQNUM=1151 +MAJOR=4 +MINOR=23 +DEVLINKS=/dev/char/4:23 + +UDEV [1294230194.083188] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=887 + +UDEV [1294230194.084059] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=873 + +UDEV [1294230194.084076] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=881 + +UDEV [1294230194.084091] add /devices/pci0000:00/0000:00:18.1 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:18.1 +SUBSYSTEM=pci +PCI_CLASS=60000 +PCI_ID=1022:1101 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:18.1 +MODALIAS=pci:v00001022d00001101sv00000000sd00000000bc06sc00i00 +SEQNUM=1004 + +UDEV [1294230194.084264] add /devices/virtual/tty/tty38 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty38 +SUBSYSTEM=tty +DEVNAME=/dev/tty38 +SEQNUM=1167 +MAJOR=4 +MINOR=38 +DEVLINKS=/dev/char/4:38 + +UDEV [1294230194.084536] add /devices/virtual/tty/tty35 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty35 +SUBSYSTEM=tty +DEVNAME=/dev/tty35 +SEQNUM=1164 +MAJOR=4 +MINOR=35 +DEVLINKS=/dev/char/4:35 + +UDEV [1294230194.085206] add /devices/virtual/tty/tty33 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty33 +SUBSYSTEM=tty +DEVNAME=/dev/tty33 +SEQNUM=1162 +MAJOR=4 +MINOR=33 +DEVLINKS=/dev/char/4:33 + +UDEV [1294230194.085557] add /devices/virtual/tty/tty32 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty32 +SUBSYSTEM=tty +DEVNAME=/dev/tty32 +SEQNUM=1161 +MAJOR=4 +MINOR=32 +DEVLINKS=/dev/char/4:32 + +UDEV [1294230194.085925] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=885 + +UDEV [1294230194.086047] add /devices/virtual/tty/tty30 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty30 +SUBSYSTEM=tty +DEVNAME=/dev/tty30 +SEQNUM=1159 +MAJOR=4 +MINOR=30 +DEVLINKS=/dev/char/4:30 + +UDEV [1294230194.086252] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=884 + +UDEV [1294230194.086407] add /devices/virtual/tty/tty29 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty29 +SUBSYSTEM=tty +DEVNAME=/dev/tty29 +SEQNUM=1157 +MAJOR=4 +MINOR=29 +DEVLINKS=/dev/char/4:29 + +UDEV [1294230194.086614] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=888 + +UDEV [1294230194.086706] add /devices/virtual/tty/tty26 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty26 +SUBSYSTEM=tty +DEVNAME=/dev/tty26 +SEQNUM=1154 +MAJOR=4 +MINOR=26 +DEVLINKS=/dev/char/4:26 + +UDEV [1294230194.087120] add /devices/virtual/tty/tty24 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty24 +SUBSYSTEM=tty +DEVNAME=/dev/tty24 +SEQNUM=1152 +MAJOR=4 +MINOR=24 +DEVLINKS=/dev/char/4:24 + +UDEV [1294230194.087818] add /devices/virtual/tty/tty21 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty21 +SUBSYSTEM=tty +DEVNAME=/dev/tty21 +SEQNUM=1149 +MAJOR=4 +MINOR=21 +DEVLINKS=/dev/char/4:21 + +UDEV [1294230194.088003] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=882 + +UDEV [1294230194.088315] add /devices/pci0000:00/0000:00:14.3 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.3 +SUBSYSTEM=pci +PCI_CLASS=60100 +PCI_ID=1002:438D +PCI_SUBSYS_ID=103C:280A +PCI_SLOT_NAME=0000:00:14.3 +MODALIAS=pci:v00001002d0000438Dsv0000103Csd0000280Abc06sc01i00 +SEQNUM=1000 + +UDEV [1294230194.088337] add /devices/virtual/tty/tty18 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty18 +SUBSYSTEM=tty +DEVNAME=/dev/tty18 +SEQNUM=1145 +MAJOR=4 +MINOR=18 +DEVLINKS=/dev/char/4:18 + +UDEV [1294230194.088609] add /devices/virtual/tty/tty16 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty16 +SUBSYSTEM=tty +DEVNAME=/dev/tty16 +SEQNUM=1143 +MAJOR=4 +MINOR=16 +DEVLINKS=/dev/char/4:16 + +UDEV [1294230194.088626] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=880 + +UDEV [1294230194.088914] add /devices/virtual/tty/tty14 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty14 +SUBSYSTEM=tty +DEVNAME=/dev/tty14 +SEQNUM=1141 +MAJOR=4 +MINOR=14 +DEVLINKS=/dev/char/4:14 + +UDEV [1294230194.089262] add /devices/virtual/tty/tty12 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty12 +SUBSYSTEM=tty +DEVNAME=/dev/tty12 +SEQNUM=1139 +MAJOR=4 +MINOR=12 +DEVLINKS=/dev/char/4:12 + +UDEV [1294230194.089718] add /devices/virtual/tty/tty10 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty10 +SUBSYSTEM=tty +DEVNAME=/dev/tty10 +SEQNUM=1137 +MAJOR=4 +MINOR=10 +DEVLINKS=/dev/char/4:10 + +UDEV [1294230194.090059] add /devices/virtual/tty/tty0 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty0 +SUBSYSTEM=tty +DEVNAME=/dev/tty0 +SEQNUM=1135 +MAJOR=4 +MINOR=0 +DEVLINKS=/dev/char/4:0 + +UDEV [1294230194.090362] add /devices/virtual/tty/ptmx (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/ptmx +SUBSYSTEM=tty +DEVNAME=/dev/ptmx +DEVMODE=0666 +SEQNUM=1133 +MAJOR=5 +MINOR=2 +DEVLINKS=/dev/char/5:2 + +UDEV [1294230194.090612] add /devices/virtual/net/lo (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/lo +SUBSYSTEM=net +INTERFACE=lo +IFINDEX=1 +SEQNUM=1127 + +UDEV [1294230194.090762] add /devices/virtual/thermal/cooling_device1 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device1 +SUBSYSTEM=thermal +SEQNUM=1131 + +UDEV [1294230194.091099] add /devices/virtual/misc/vga_arbiter (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vga_arbiter +SUBSYSTEM=misc +DEVNAME=/dev/vga_arbiter +SEQNUM=1125 +MAJOR=10 +MINOR=63 +DEVLINKS=/dev/char/10:63 + +UDEV [1294230194.091437] add /devices/virtual/misc/snapshot (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/snapshot +SUBSYSTEM=misc +DEVNAME=/dev/snapshot +SEQNUM=1123 +MAJOR=10 +MINOR=231 +DEVLINKS=/dev/char/10:231 + +UDEV [1294230194.091770] add /devices/virtual/misc/psaux (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/psaux +SUBSYSTEM=misc +DEVNAME=/dev/psaux +SEQNUM=1121 +MAJOR=10 +MINOR=1 +DEVLINKS=/dev/char/10:1 + +UDEV [1294230194.092040] add /devices/virtual/misc/network_throughput (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_throughput +SUBSYSTEM=misc +DEVNAME=/dev/network_throughput +SEQNUM=1119 +MAJOR=10 +MINOR=56 +DEVLINKS=/dev/char/10:56 + +UDEV [1294230194.092378] add /devices/virtual/misc/hpet (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/hpet +SUBSYSTEM=misc +DEVNAME=/dev/hpet +SEQNUM=1116 +MAJOR=10 +MINOR=228 +DEVLINKS=/dev/char/10:228 + +UDEV [1294230194.092738] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 +SUBSYSTEM=input +PRODUCT=19/0/1/0 +NAME="Power Button" +PHYS="PNP0C0C/button/input0" +EV==3 +KEY==100000 0 0 0 +MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw +SEQNUM=896 + +UDEV [1294230194.092818] add /devices/virtual/misc/ecryptfs (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/ecryptfs +SUBSYSTEM=misc +DEVNAME=/dev/ecryptfs +SEQNUM=1114 +MAJOR=10 +MINOR=61 +DEVLINKS=/dev/char/10:61 + +UDEV [1294230194.093165] add /devices/virtual/misc/cpu_dma_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/cpu_dma_latency +SUBSYSTEM=misc +DEVNAME=/dev/cpu_dma_latency +SEQNUM=1112 +MAJOR=10 +MINOR=58 +DEVLINKS=/dev/char/10:58 + +UDEV [1294230194.093527] add /devices/virtual/mem/urandom (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/urandom +SUBSYSTEM=mem +DEVNAME=/dev/urandom +DEVMODE=0666 +SEQNUM=1110 +MAJOR=1 +MINOR=9 +DEVLINKS=/dev/char/1:9 + +UDEV [1294230194.093871] add /devices/virtual/mem/port (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/port +SUBSYSTEM=mem +DEVNAME=/dev/port +SEQNUM=1108 +MAJOR=1 +MINOR=4 +DEVLINKS=/dev/char/1:4 + +UDEV [1294230194.093983] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=876 + +UDEV [1294230194.094259] add /devices/virtual/mem/null (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/null +SUBSYSTEM=mem +DEVNAME=/dev/null +DEVMODE=0666 +SEQNUM=1106 +MAJOR=1 +MINOR=3 +DEVLINKS=/dev/char/1:3 + +UDEV [1294230194.094311] add /devices/virtual/tty/tty17 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty17 +SUBSYSTEM=tty +DEVNAME=/dev/tty17 +SEQNUM=1144 +MAJOR=4 +MINOR=17 +DEVLINKS=/dev/char/4:17 + +UDEV [1294230194.094718] add /devices/virtual/tty/tty13 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty13 +SUBSYSTEM=tty +DEVNAME=/dev/tty13 +SEQNUM=1140 +MAJOR=4 +MINOR=13 +DEVLINKS=/dev/char/4:13 + +UDEV [1294230194.095029] add /devices/virtual/tty/tty11 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty11 +SUBSYSTEM=tty +DEVNAME=/dev/tty11 +SEQNUM=1138 +MAJOR=4 +MINOR=11 +DEVLINKS=/dev/char/4:11 + +UDEV [1294230194.095750] add /devices/virtual/mem/kmsg (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/kmsg +SUBSYSTEM=mem +DEVNAME=/dev/kmsg +SEQNUM=1104 +MAJOR=1 +MINOR=11 +DEVLINKS=/dev/char/1:11 + +UDEV [1294230194.096030] add /devices/virtual/thermal/cooling_device0 (thermal) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/thermal/cooling_device0 +SUBSYSTEM=thermal +SEQNUM=1130 + +UDEV [1294230194.101694] add /devices/virtual/tty/tty (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty +SUBSYSTEM=tty +DEVNAME=/dev/tty +DEVMODE=0666 +SEQNUM=1134 +MAJOR=5 +MINOR=0 +DEVLINKS=/dev/char/5:0 + +UDEV [1294230194.101904] add /devices/virtual/tty/tty15 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty15 +SUBSYSTEM=tty +DEVNAME=/dev/tty15 +SEQNUM=1142 +MAJOR=4 +MINOR=15 +DEVLINKS=/dev/char/4:15 + +UDEV [1294230194.103156] add /devices/virtual/tty/console (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/console +SUBSYSTEM=tty +DEVNAME=/dev/console +SEQNUM=1132 +MAJOR=5 +MINOR=1 +DEVLINKS=/dev/char/5:1 + +UDEV [1294230194.103319] add /devices/virtual/net/br0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/br0 +SUBSYSTEM=net +DEVTYPE=bridge +INTERFACE=br0 +IFINDEX=3 +SEQNUM=1126 + +UDEV [1294230194.103588] add /devices/virtual/sound/timer (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/sound/timer +SUBSYSTEM=sound +DEVNAME=/dev/snd/timer +SEQNUM=1129 +ACL_MANAGE=1 +MAJOR=116 +MINOR=2 +DEVLINKS=/dev/char/116:2 + +UDEV [1294230194.103788] add /devices/virtual/ppp/ppp (ppp) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/ppp/ppp +SUBSYSTEM=ppp +DEVNAME=/dev/ppp +SEQNUM=1128 +MAJOR=108 +MINOR=0 +DEVLINKS=/dev/char/108:0 + +UDEV [1294230194.104328] add /devices/virtual/misc/tun (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/tun +SUBSYSTEM=misc +DEVNAME=/dev/net/tun +SEQNUM=1124 +MAJOR=10 +MINOR=200 +DEVLINKS=/dev/char/10:200 + +UDEV [1294230194.105004] add /devices/virtual/misc/rfkill (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/rfkill +SUBSYSTEM=misc +DEVNAME=/dev/rfkill +SEQNUM=1122 +ACL_MANAGE=1 +MAJOR=10 +MINOR=62 +DEVLINKS=/dev/char/10:62 + +UDEV [1294230194.105549] add /devices/virtual/misc/network_latency (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/network_latency +SUBSYSTEM=misc +DEVNAME=/dev/network_latency +SEQNUM=1118 +MAJOR=10 +MINOR=57 +DEVLINKS=/dev/char/10:57 + +UDEV [1294230194.105741] add /devices/virtual/misc/mcelog (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/mcelog +SUBSYSTEM=misc +DEVNAME=/dev/mcelog +SEQNUM=1117 +MAJOR=10 +MINOR=227 +DEVLINKS=/dev/char/10:227 + +UDEV [1294230194.105947] add /devices/virtual/misc/fuse (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/fuse +SUBSYSTEM=misc +DEVNAME=/dev/fuse +SEQNUM=1115 +MAJOR=10 +MINOR=229 +DEVLINKS=/dev/char/10:229 + +UDEV [1294230194.106017] add /devices/virtual/misc/pktcdvd (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/pktcdvd +SUBSYSTEM=misc +DEVNAME=/dev/pktcdvd/control +SEQNUM=1120 +MAJOR=10 +MINOR=60 +DEVLINKS=/dev/char/10:60 + +UDEV [1294230194.106169] add /devices/virtual/misc/device-mapper (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/device-mapper +SUBSYSTEM=misc +DEVNAME=/dev/mapper/control +SEQNUM=1113 +MAJOR=10 +MINOR=59 +DEVLINKS=/dev/char/10:59 + +UDEV [1294230194.106361] add /devices/virtual/mem/zero (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/zero +SUBSYSTEM=mem +DEVNAME=/dev/zero +DEVMODE=0666 +SEQNUM=1111 +MAJOR=1 +MINOR=5 +DEVLINKS=/dev/char/1:5 + +UDEV [1294230194.106589] add /devices/virtual/mem/random (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/random +SUBSYSTEM=mem +DEVNAME=/dev/random +DEVMODE=0666 +SEQNUM=1109 +MAJOR=1 +MINOR=8 +DEVLINKS=/dev/char/1:8 + +UDEV [1294230194.106835] add /devices/virtual/mem/oldmem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/oldmem +SUBSYSTEM=mem +DEVNAME=/dev/oldmem +SEQNUM=1107 +MAJOR=1 +MINOR=12 +DEVLINKS=/dev/char/1:12 + +UDEV [1294230194.107033] add /devices/virtual/mem/mem (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/mem +SUBSYSTEM=mem +DEVNAME=/dev/mem +SEQNUM=1105 +MAJOR=1 +MINOR=1 +DEVLINKS=/dev/char/1:1 + +UDEV [1294230194.107254] add /devices/virtual/mem/full (mem) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/mem/full +SUBSYSTEM=mem +DEVNAME=/dev/full +DEVMODE=0666 +SEQNUM=1103 +MAJOR=1 +MINOR=7 +DEVLINKS=/dev/char/1:7 + +KERNEL[1294230194.108625] change /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=1209 + +UDEV [1294230194.109986] add /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=/dev/fb0 +SEQNUM=1021 +PRIMARY_DEVICE_FOR_DISPLAY=1 +MAJOR=29 +MINOR=0 +DEVLINKS=/dev/char/29:0 + +UDEV [1294230194.110010] add /devices/pci0000:00/0000:00:14.4 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4 +SUBSYSTEM=pci +PCI_CLASS=60401 +PCI_ID=1002:4384 +PCI_SUBSYS_ID=0000:0000 +PCI_SLOT_NAME=0000:00:14.4 +MODALIAS=pci:v00001002d00004384sv00000000sd00000000bc06sc04i01 +SEQNUM=1001 + +UDEV [1294230194.114957] add /devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 (pci_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 +SUBSYSTEM=pci_bus +SEQNUM=1002 + +UDEV [1294230194.114992] add /devices/virtual/tty/tty41 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty41 +SUBSYSTEM=tty +DEVNAME=/dev/tty41 +SEQNUM=1171 +MAJOR=4 +MINOR=41 +DEVLINKS=/dev/char/4:41 + +UDEV [1294230194.115009] add /devices/virtual/tty/tty42 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty42 +SUBSYSTEM=tty +DEVNAME=/dev/tty42 +SEQNUM=1172 +MAJOR=4 +MINOR=42 +DEVLINKS=/dev/char/4:42 + +UDEV [1294230194.115024] add /devices/virtual/tty/tty43 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty43 +SUBSYSTEM=tty +DEVNAME=/dev/tty43 +SEQNUM=1173 +MAJOR=4 +MINOR=43 +DEVLINKS=/dev/char/4:43 + +UDEV [1294230194.115039] add /devices/virtual/tty/tty44 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty44 +SUBSYSTEM=tty +DEVNAME=/dev/tty44 +SEQNUM=1174 +MAJOR=4 +MINOR=44 +DEVLINKS=/dev/char/4:44 + +UDEV [1294230194.115053] add /devices/virtual/tty/tty45 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty45 +SUBSYSTEM=tty +DEVNAME=/dev/tty45 +SEQNUM=1175 +MAJOR=4 +MINOR=45 +DEVLINKS=/dev/char/4:45 + +UDEV [1294230194.115410] add /devices/virtual/tty/tty46 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty46 +SUBSYSTEM=tty +DEVNAME=/dev/tty46 +SEQNUM=1176 +MAJOR=4 +MINOR=46 +DEVLINKS=/dev/char/4:46 + +UDEV [1294230194.115632] add /devices/virtual/tty/tty47 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty47 +SUBSYSTEM=tty +DEVNAME=/dev/tty47 +SEQNUM=1177 +MAJOR=4 +MINOR=47 +DEVLINKS=/dev/char/4:47 + +UDEV [1294230194.115834] add /module/drm_kms_helper (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/drm_kms_helper +SUBSYSTEM=module +SEQNUM=1208 + +UDEV [1294230194.116915] add /devices/virtual/tty/tty48 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty48 +SUBSYSTEM=tty +DEVNAME=/dev/tty48 +SEQNUM=1178 +MAJOR=4 +MINOR=48 +DEVLINKS=/dev/char/4:48 + +UDEV [1294230194.117547] add /devices/virtual/tty/tty49 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty49 +SUBSYSTEM=tty +DEVNAME=/dev/tty49 +SEQNUM=1179 +MAJOR=4 +MINOR=49 +DEVLINKS=/dev/char/4:49 + +UDEV [1294230194.118703] add /devices/virtual/tty/tty50 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty50 +SUBSYSTEM=tty +DEVNAME=/dev/tty50 +SEQNUM=1181 +MAJOR=4 +MINOR=50 +DEVLINKS=/dev/char/4:50 + +UDEV [1294230194.118724] add /devices/virtual/tty/tty51 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty51 +SUBSYSTEM=tty +DEVNAME=/dev/tty51 +SEQNUM=1182 +MAJOR=4 +MINOR=51 +DEVLINKS=/dev/char/4:51 + +UDEV [1294230194.119468] add /devices/virtual/tty/tty52 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty52 +SUBSYSTEM=tty +DEVNAME=/dev/tty52 +SEQNUM=1183 +MAJOR=4 +MINOR=52 +DEVLINKS=/dev/char/4:52 + +UDEV [1294230194.119504] add /devices/virtual/tty/tty53 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty53 +SUBSYSTEM=tty +DEVNAME=/dev/tty53 +SEQNUM=1184 +MAJOR=4 +MINOR=53 +DEVLINKS=/dev/char/4:53 + +UDEV [1294230194.119519] add /devices/virtual/tty/tty54 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty54 +SUBSYSTEM=tty +DEVNAME=/dev/tty54 +SEQNUM=1185 +MAJOR=4 +MINOR=54 +DEVLINKS=/dev/char/4:54 + +UDEV [1294230194.120001] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1207 + +UDEV [1294230194.120436] add /devices/virtual/tty/tty55 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty55 +SUBSYSTEM=tty +DEVNAME=/dev/tty55 +SEQNUM=1186 +MAJOR=4 +MINOR=55 +DEVLINKS=/dev/char/4:55 + +UDEV [1294230194.120923] add /devices/virtual/tty/tty59 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty59 +SUBSYSTEM=tty +DEVNAME=/dev/tty59 +SEQNUM=1190 +MAJOR=4 +MINOR=59 +DEVLINKS=/dev/char/4:59 + +UDEV [1294230194.121385] add /devices/virtual/vc/vcs10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs10 +SUBSYSTEM=vc +DEVNAME=/dev/vcs10 +SEQNUM=1202 +MAJOR=7 +MINOR=10 +DEVLINKS=/dev/char/7:10 + +UDEV [1294230194.121727] add /devices/virtual/vc/vcsa (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa +SUBSYSTEM=vc +DEVNAME=/dev/vcsa +SEQNUM=1203 +MAJOR=7 +MINOR=128 +DEVLINKS=/dev/char/7:128 + +UDEV [1294230194.121890] add /devices/virtual/vc/vcsa1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa1 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa1 +SEQNUM=1204 +MAJOR=7 +MINOR=129 +DEVLINKS=/dev/char/7:129 + +UDEV [1294230194.122136] add /devices/virtual/vc/vcs (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs +SUBSYSTEM=vc +DEVNAME=/dev/vcs +SEQNUM=1200 +MAJOR=7 +MINOR=0 +DEVLINKS=/dev/char/7:0 + +UDEV [1294230194.122301] add /devices/platform/Fixed MDIO bus.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0 +SUBSYSTEM=platform +MODALIAS=platform:Fixed MDIO bus +SEQNUM=1009 + +UDEV [1294230194.122472] add /devices/virtual/tty/tty7 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty7 +SUBSYSTEM=tty +DEVNAME=/dev/tty7 +SEQNUM=1196 +MAJOR=4 +MINOR=7 +DEVLINKS=/dev/char/4:7 + +UDEV [1294230194.122665] add /devices/virtual/tty/tty9 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty9 +SUBSYSTEM=tty +DEVNAME=/dev/tty9 +SEQNUM=1198 +MAJOR=4 +MINOR=9 +DEVLINKS=/dev/char/4:9 + +UDEV [1294230194.122831] add /devices/virtual/tty/tty60 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty60 +SUBSYSTEM=tty +DEVNAME=/dev/tty60 +SEQNUM=1192 +MAJOR=4 +MINOR=60 +DEVLINKS=/dev/char/4:60 + +UDEV [1294230194.123001] add /devices/virtual/tty/tty58 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty58 +SUBSYSTEM=tty +DEVNAME=/dev/tty58 +SEQNUM=1189 +MAJOR=4 +MINOR=58 +DEVLINKS=/dev/char/4:58 + +UDEV [1294230194.123166] add /devices/virtual/tty/tty62 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty62 +SUBSYSTEM=tty +DEVNAME=/dev/tty62 +SEQNUM=1194 +MAJOR=4 +MINOR=62 +DEVLINKS=/dev/char/4:62 + +UDEV [1294230194.123471] add /devices/virtual/vc/vcsa10 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcsa10 +SUBSYSTEM=vc +DEVNAME=/dev/vcsa10 +SEQNUM=1205 +MAJOR=7 +MINOR=138 +DEVLINKS=/dev/char/7:138 + +UDEV [1294230194.123644] add /devices/virtual/usbmon/usbmon0 (usbmon) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/usbmon/usbmon0 +SUBSYSTEM=usbmon +DEVNAME=/dev/usbmon0 +SEQNUM=1199 +MAJOR=252 +MINOR=0 +DEVLINKS=/dev/char/252:0 + +UDEV [1294230194.123821] add /devices/virtual/tty/tty8 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty8 +SUBSYSTEM=tty +DEVNAME=/dev/tty8 +SEQNUM=1197 +MAJOR=4 +MINOR=8 +DEVLINKS=/dev/char/4:8 + +UDEV [1294230194.124346] add /devices/virtual/tty/tty63 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty63 +SUBSYSTEM=tty +DEVNAME=/dev/tty63 +SEQNUM=1195 +MAJOR=4 +MINOR=63 +DEVLINKS=/dev/char/4:63 + +UDEV [1294230194.124520] add /devices/virtual/tty/tty56 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty56 +SUBSYSTEM=tty +DEVNAME=/dev/tty56 +SEQNUM=1187 +MAJOR=4 +MINOR=56 +DEVLINKS=/dev/char/4:56 + +UDEV [1294230194.124752] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 +SUBSYSTEM=input +PRODUCT=3/3f0/1024/111 +NAME="Hewlett-Packard Company HP USB Smart Card Keyboard" +PHYS="usb-0000:00:13.0-1/input0" +UNIQ="0817bd66" +EV==120013 +KEY==10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe +MSC==10 +LED==7 +MODALIAS=input:b0003v03F0p1024e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw +SEQNUM=947 + +UDEV [1294230194.124770] add /devices/virtual/vc/vcs1 (vc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vc/vcs1 +SUBSYSTEM=vc +DEVNAME=/dev/vcs1 +SEQNUM=1201 +MAJOR=7 +MINOR=1 +DEVLINKS=/dev/char/7:1 + +UDEV [1294230194.125348] add /devices/virtual/tty/tty61 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty61 +SUBSYSTEM=tty +DEVNAME=/dev/tty61 +SEQNUM=1193 +MAJOR=4 +MINOR=61 +DEVLINKS=/dev/char/4:61 + +UDEV [1294230194.125593] add /devices/platform/Fixed MDIO bus.0/mdio_bus/0 (mdio_bus) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/Fixed MDIO bus.0/mdio_bus/0 +SUBSYSTEM=mdio_bus +SEQNUM=1010 + +UDEV [1294230194.127722] add /devices/pci0000:00/0000:00:13.5/usb1 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/001/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +BUSNUM=001 +DEVNUM=001 +SEQNUM=979 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ehci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ehci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=EHCI_Host_Controller +ID_MODEL_ENC=EHCI\x20Host\x20Controller +ID_MODEL_ID=0002 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ehci_hcd_EHCI_Host_Controller_0000:00:13.5 +ID_SERIAL_SHORT=0000:00:13.5 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=0 +DEVLINKS=/dev/char/189:0 + +UDEV [1294230194.127751] add /devices/virtual/tty/tty57 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty57 +SUBSYSTEM=tty +DEVNAME=/dev/tty57 +SEQNUM=1188 +MAJOR=4 +MINOR=57 +DEVLINKS=/dev/char/4:57 + +UDEV [1294230194.127765] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C02: +SEQNUM=847 + +UDEV [1294230194.128108] add /devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/2/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=980 + +KERNEL[1294230194.130653] add /module/serio_raw (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/serio_raw +SUBSYSTEM=module +SEQNUM=1210 + +UDEV [1294230194.130674] add /devices/pci0000:00/0000:00:14.2/input/input5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5 +SUBSYSTEM=input +PRODUCT=1/10ec/260/1 +NAME="HDA Digital PCBeep" +PHYS="card0/codec#3/beep0" +EV==40001 +SND==6 +MODALIAS=input:b0001v10ECp0260e0001-e0,12,kramls1,2,fw +SEQNUM=990 + +KERNEL[1294230194.130689] add /bus/serio/drivers/serio_raw (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/serio/drivers/serio_raw +SUBSYSTEM=drivers +SEQNUM=1211 + +UDEV [1294230194.130702] add /devices/platform/i8042/serio1 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio1 +SUBSYSTEM=serio +SERIO_TYPE=01 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty01pr00id00ex00 +SEQNUM=1014 + +UDEV [1294230194.130902] add /devices/platform/i8042/serio0 (serio) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/i8042/serio0 +SUBSYSTEM=serio +SERIO_TYPE=06 +SERIO_PROTO=00 +SERIO_ID=00 +SERIO_EXTRA=00 +MODALIAS=serio:ty06pr00id00ex00 +SEQNUM=1013 + +KERNEL[1294230194.131602] add /module/hid_quanta (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/hid_quanta +SUBSYSTEM=module +SEQNUM=1212 + +UDEV [1294230194.132515] add /module/serio_raw (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/serio_raw +SUBSYSTEM=module +SEQNUM=1210 + +UDEV [1294230194.132547] add /bus/serio/drivers/serio_raw (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/serio/drivers/serio_raw +SUBSYSTEM=drivers +SEQNUM=1211 + +UDEV [1294230194.132557] add /module/hid_quanta (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/hid_quanta +SUBSYSTEM=module +SEQNUM=1212 + +UDEV [1294230194.133898] add /devices/pci0000:00/0000:00:13.4/usb6 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/006/001 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +BUSNUM=006 +DEVNUM=001 +SEQNUM=974 +ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd +ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd +ID_VENDOR_ID=1d6b +ID_MODEL=OHCI_Host_Controller +ID_MODEL_ENC=OHCI\x20Host\x20Controller +ID_MODEL_ID=0001 +ID_REVISION=0206 +ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.4 +ID_SERIAL_SHORT=0000:00:13.4 +ID_BUS=usb +ID_USB_INTERFACES=:090000: +MAJOR=189 +MINOR=640 +DEVLINKS=/dev/char/189:640 + +UDEV [1294230194.134006] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 +SUBSYSTEM=input +DEVNAME=/dev/input/event1 +SEQNUM=843 +ID_INPUT=1 +ID_INPUT_KEY=1 +XKBMODEL=pc105 +XKBLAYOUT=de +MAJOR=13 +MINOR=65 +DEVLINKS=/dev/char/13:65 +DMI_VENDOR=Hewlett-Packard + +UDEV [1294230194.134301] add /devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=hub +PRODUCT=1d6b/1/206 +TYPE=9/0/0 +INTERFACE=9/0/0 +MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 +SEQNUM=975 + +UDEV [1294230194.137230] add /devices/platform/pcspkr (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/pcspkr +SUBSYSTEM=platform +MODALIAS=platform:pcspkr +SEQNUM=1015 + +UDEV [1294230194.137347] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=859 + +UDEV [1294230194.137530] add /devices/virtual/vtconsole/vtcon0 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon0 +SUBSYSTEM=vtconsole +SEQNUM=1206 + +UDEV [1294230194.141601] add /devices/virtual/block/ram2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram2 +SUBSYSTEM=block +DEVNAME=/dev/ram2 +DEVTYPE=disk +SEQNUM=1088 +MAJOR=1 +MINOR=2 +DEVLINKS=/dev/block/1:2 + +UDEV [1294230194.145610] add /devices/virtual/block/ram10 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram10 +SUBSYSTEM=block +DEVNAME=/dev/ram10 +DEVTYPE=disk +SEQNUM=1082 +MAJOR=1 +MINOR=10 +DEVLINKS=/dev/block/1:10 + +UDEV [1294230194.147765] add /devices/virtual/block/ram1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram1 +SUBSYSTEM=block +DEVNAME=/dev/ram1 +DEVTYPE=disk +SEQNUM=1081 +MAJOR=1 +MINOR=1 +DEVLINKS=/dev/block/1:1 + +UDEV [1294230194.149658] add /devices/virtual/block/ram11 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram11 +SUBSYSTEM=block +DEVNAME=/dev/ram11 +DEVTYPE=disk +SEQNUM=1083 +MAJOR=1 +MINOR=11 +DEVLINKS=/dev/block/1:11 + +UDEV [1294230194.151084] add /devices/virtual/block/ram15 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram15 +SUBSYSTEM=block +DEVNAME=/dev/ram15 +DEVTYPE=disk +SEQNUM=1087 +MAJOR=1 +MINOR=15 +DEVLINKS=/dev/block/1:15 + +UDEV [1294230194.152576] add /devices/virtual/block/ram4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram4 +SUBSYSTEM=block +DEVNAME=/dev/ram4 +DEVTYPE=disk +SEQNUM=1090 +MAJOR=1 +MINOR=4 +DEVLINKS=/dev/block/1:4 + +UDEV [1294230194.152597] add /devices/virtual/block/ram6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram6 +SUBSYSTEM=block +DEVNAME=/dev/ram6 +DEVTYPE=disk +SEQNUM=1092 +MAJOR=1 +MINOR=6 +DEVLINKS=/dev/block/1:6 + +UDEV [1294230194.152614] add /devices/virtual/block/ram12 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram12 +SUBSYSTEM=block +DEVNAME=/dev/ram12 +DEVTYPE=disk +SEQNUM=1084 +MAJOR=1 +MINOR=12 +DEVLINKS=/dev/block/1:12 + +UDEV [1294230194.152641] add /devices/virtual/block/ram8 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram8 +SUBSYSTEM=block +DEVNAME=/dev/ram8 +DEVTYPE=disk +SEQNUM=1094 +MAJOR=1 +MINOR=8 +DEVLINKS=/dev/block/1:8 + +UDEV [1294230194.152657] add /devices/virtual/block/ram0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram0 +SUBSYSTEM=block +DEVNAME=/dev/ram0 +DEVTYPE=disk +SEQNUM=1080 +MAJOR=1 +MINOR=0 +DEVLINKS=/dev/block/1:0 + +UDEV [1294230194.153551] add /devices/virtual/block/ram5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram5 +SUBSYSTEM=block +DEVNAME=/dev/ram5 +DEVTYPE=disk +SEQNUM=1091 +MAJOR=1 +MINOR=5 +DEVLINKS=/dev/block/1:5 + +UDEV [1294230194.154236] add /devices/virtual/block/ram3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram3 +SUBSYSTEM=block +DEVNAME=/dev/ram3 +DEVTYPE=disk +SEQNUM=1089 +MAJOR=1 +MINOR=3 +DEVLINKS=/dev/block/1:3 + +UDEV [1294230194.155044] add /devices/virtual/block/ram7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram7 +SUBSYSTEM=block +DEVNAME=/dev/ram7 +DEVTYPE=disk +SEQNUM=1093 +MAJOR=1 +MINOR=7 +DEVLINKS=/dev/block/1:7 + +UDEV [1294230194.155920] add /devices/virtual/block/ram13 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram13 +SUBSYSTEM=block +DEVNAME=/dev/ram13 +DEVTYPE=disk +SEQNUM=1085 +MAJOR=1 +MINOR=13 +DEVLINKS=/dev/block/1:13 + +UDEV [1294230194.158874] add /devices/virtual/block/ram14 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram14 +SUBSYSTEM=block +DEVNAME=/dev/ram14 +DEVTYPE=disk +SEQNUM=1086 +MAJOR=1 +MINOR=14 +DEVLINKS=/dev/block/1:14 + +KERNEL[1294230194.159052] add /class/usb (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/usb +SUBSYSTEM=class +SEQNUM=1213 + +KERNEL[1294230194.159067] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 +SUBSYSTEM=usb +DEVNAME=usb/hiddev0 +SEQNUM=1214 +MAJOR=180 +MINOR=96 + +KERNEL[1294230194.159082] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 +SUBSYSTEM=hidraw +DEVNAME=hidraw2 +SEQNUM=1215 +MAJOR=251 +MINOR=2 + +KERNEL[1294230194.159094] add /bus/hid/drivers/quanta-touch (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/hid/drivers/quanta-touch +SUBSYSTEM=drivers +SEQNUM=1216 + +UDEV [1294230194.160417] add /class/usb (class) +UDEV_LOG=3 +ACTION=add +DEVPATH=/class/usb +SUBSYSTEM=class +SEQNUM=1213 + +UDEV [1294230194.160987] add /devices/pci0000:00/0000:00:13.2/usb4/4-2 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2 +SUBSYSTEM=usb +DEVNAME=/dev/bus/usb/004/003 +DEVTYPE=usb_device +DRIVER=usb +PRODUCT=461/4d20/200 +TYPE=0/0/0 +BUSNUM=004 +DEVNUM=003 +SEQNUM=961 +ID_VENDOR=0461 +ID_VENDOR_ENC=0461 +ID_VENDOR_ID=0461 +ID_MODEL=USB_Optical_Mouse +ID_MODEL_ENC=USB\x20Optical\x20Mouse +ID_MODEL_ID=4d20 +ID_REVISION=0200 +ID_SERIAL=0461_USB_Optical_Mouse +ID_BUS=usb +ID_USB_INTERFACES=:030102: +MAJOR=189 +MINOR=386 +DEVLINKS=/dev/char/189:386 + +UDEV [1294230194.161010] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 +SUBSYSTEM=usb +DEVNAME=/dev/usb/hiddev0 +SEQNUM=1214 +MAJOR=180 +MINOR=96 +DEVLINKS=/dev/char/180:96 + +UDEV [1294230194.161344] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 (usb) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 +SUBSYSTEM=usb +DEVTYPE=usb_interface +DRIVER=usbhid +PRODUCT=461/4d20/200 +TYPE=0/0/0 +INTERFACE=3/1/2 +MODALIAS=usb:v0461p4D20d0200dc00dsc00dp00ic03isc01ip02 +SEQNUM=962 + +UDEV [1294230194.161745] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 +SUBSYSTEM=hid +DRIVER=generic-usb +HID_ID=0003:00000461:00004D20 +HID_NAME=USB Optical Mouse +HID_PHYS=usb-0000:00:13.2-2/input0 +MODALIAS=hid:b0003v00000461p00004D20 +SEQNUM=963 + +UDEV [1294230194.162197] add /bus/hid/drivers/quanta-touch (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/hid/drivers/quanta-touch +SUBSYSTEM=drivers +SEQNUM=1216 + +UDEV [1294230194.162818] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 +SUBSYSTEM=hidraw +DEVNAME=/dev/hidraw1 +SEQNUM=964 +MAJOR=251 +MINOR=1 +DEVLINKS=/dev/char/251:1 + +UDEV [1294230194.163653] add /devices/virtual/tty/tty40 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty40 +SUBSYSTEM=tty +DEVNAME=/dev/tty40 +SEQNUM=1170 +MAJOR=4 +MINOR=40 +DEVLINKS=/dev/char/4:40 + +KERNEL[1294230194.170046] add /module/ttm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ttm +SUBSYSTEM=module +SEQNUM=1217 + +UDEV [1294230194.170425] add /module/ttm (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ttm +SUBSYSTEM=module +SEQNUM=1217 + +UDEV [1294230194.171793] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 (hid) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 +SUBSYSTEM=hid +HID_ID=0003:00000408:00003000 +HID_NAME=Quanta Computer Inc. Optical Touch Screen +HID_PHYS=usb-0000:00:13.2-1/input0 +MODALIAS=hid:b0003v00000408p00003000 +SEQNUM=960 + +UDEV [1294230194.171817] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 (hidraw) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 +SUBSYSTEM=hidraw +DEVNAME=/dev/hidraw2 +SEQNUM=1215 +MAJOR=251 +MINOR=2 +DEVLINKS=/dev/char/251:2 + +KERNEL[1294230194.172693] add /devices/virtual/drm/ttm (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/drm/ttm +SUBSYSTEM=drm +DEVTYPE=ttm +SEQNUM=1218 + +UDEV [1294230194.172956] add /devices/virtual/drm/ttm (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/drm/ttm +SUBSYSTEM=drm +DEVTYPE=ttm +SEQNUM=1218 + +UDEV [1294230194.185017] add /devices/virtual/dmi/id (dmi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/dmi/id +SUBSYSTEM=dmi +MODALIAS=dmi:bvnHewlett-Packard:bvr786E3v02.22:bd04/18/2007:svnHewlett-Packard:pnHPCompaqdc5750Microtower:pvr:rvnHewlett-Packard:rn0A64h:rvr:cvnHewlett-Packard:ct6:cvr: +SEQNUM=1097 + +UDEV [1294230194.187869] add /devices/virtual/input/mice (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/mice +SUBSYSTEM=input +DEVNAME=/dev/input/mice +SEQNUM=1102 +MAJOR=13 +MINOR=63 +DEVLINKS=/dev/char/13:63 + +UDEV [1294230194.196027] add /devices/virtual/block/ram9 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ram9 +SUBSYSTEM=block +DEVNAME=/dev/ram9 +DEVTYPE=disk +SEQNUM=1095 +MAJOR=1 +MINOR=9 +DEVLINKS=/dev/block/1:9 + +UDEV [1294230194.200183] add /devices/pci0000:00/0000:00:14.2/input/input5/event5 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5/event5 +SUBSYSTEM=input +DEVNAME=/dev/input/event5 +SEQNUM=991 +ID_INPUT=1 +DMI_VENDOR=Hewlett-Packard +MAJOR=13 +MINOR=69 +DEVLINKS=/dev/char/13:69 + +UDEV [1294230194.204053] add /devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 (sound) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 +SUBSYSTEM=sound +DEVNAME=/dev/snd/controlC0 +SEQNUM=999 +ID_PATH=pci-0000:00:14.2 +ACL_MANAGE=1 +MAJOR=116 +MINOR=6 +DEVLINKS=/dev/char/116:6 /dev/snd/by-path/pci-0000:00:14.2 + +KERNEL[1294230194.242647] add /module/radeon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/radeon +SUBSYSTEM=module +SEQNUM=1219 + +KERNEL[1294230194.245147] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 +SUBSYSTEM=drm +DEVNAME=dri/controlD64 +DEVTYPE=drm_minor +SEQNUM=1220 +MAJOR=226 +MINOR=64 + +KERNEL[1294230194.245312] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1221 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.295493] add /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1222 + +KERNEL[1294230194.295514] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1223 + +UDEV [1294230194.298755] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0501:PNP0500: +SEQNUM=867 + +UDEV [1294230194.298774] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=889 + +UDEV [1294230194.298786] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=879 + +UDEV [1294230194.298798] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0F13:PNP0F0E: +SEQNUM=872 + +UDEV [1294230194.301934] add /devices/virtual/tty/tty5 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty5 +SUBSYSTEM=tty +DEVNAME=/dev/tty5 +SEQNUM=1180 +MAJOR=4 +MINOR=5 +DEVLINKS=/dev/char/4:5 + +UDEV [1294230194.302826] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0000: +SEQNUM=860 + +UDEV [1294230194.302847] add /devices/virtual/tty/tty3 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty3 +SUBSYSTEM=tty +DEVNAME=/dev/tty3 +SEQNUM=1158 +MAJOR=4 +MINOR=3 +DEVLINKS=/dev/char/4:3 + +UDEV [1294230194.302863] add /devices/virtual/tty/tty4 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty4 +SUBSYSTEM=tty +DEVNAME=/dev/tty4 +SEQNUM=1169 +MAJOR=4 +MINOR=4 +DEVLINKS=/dev/char/4:4 + +UDEV [1294230194.307757] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0200: +SEQNUM=864 + +UDEV [1294230194.313051] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0C04: +SEQNUM=871 + +UDEV [1294230194.313167] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 +SUBSYSTEM=input +DEVNAME=/dev/input/event0 +SEQNUM=897 +ID_INPUT=1 +ID_INPUT_KEY=1 +XKBMODEL=pc105 +XKBLAYOUT=de +MAJOR=13 +MINOR=64 +DEVLINKS=/dev/char/13:64 +DMI_VENDOR=Hewlett-Packard + +UDEV [1294230194.313186] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=874 + +UDEV [1294230194.316178] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0401: +SEQNUM=866 + +UDEV [1294230194.327835] add /devices/virtual/input/input2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2 +SUBSYSTEM=input +PRODUCT=17/1/1/100 +NAME="Macintosh mouse button emulation" +EV==7 +KEY==70000 0 0 0 0 0 0 0 0 +REL==3 +MODALIAS=input:b0017v0001p0001e0100-e0,1,2,k110,111,112,r0,1,amlsfw +SEQNUM=1099 + +UDEV [1294230194.337009] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 +SUBSYSTEM=input +PRODUCT=3/461/4d20/111 +NAME="USB Optical Mouse" +PHYS="usb-0000:00:13.2-2/input0" +UNIQ="" +EV==17 +KEY==70000 0 0 0 0 0 0 0 0 +REL==103 +MSC==10 +MODALIAS=input:b0003v0461p4D20e0111-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw +SEQNUM=965 + +UDEV [1294230194.340076] add /devices/virtual/tty/tty2 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty2 +SUBSYSTEM=tty +DEVNAME=/dev/tty2 +SEQNUM=1147 +MAJOR=4 +MINOR=2 +DEVLINKS=/dev/char/4:2 + +UDEV [1294230194.340097] add /devices/virtual/tty/tty1 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty1 +SUBSYSTEM=tty +DEVNAME=/dev/tty1 +SEQNUM=1136 +MAJOR=4 +MINOR=1 +DEVLINKS=/dev/char/4:1 + +UDEV [1294230194.341847] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0100: +SEQNUM=862 + +UDEV [1294230194.343270] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0103: +SEQNUM=863 + +UDEV [1294230194.343290] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0003: +SEQNUM=861 + +UDEV [1294230194.343303] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=877 + +UDEV [1294230194.343316] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0B00: +SEQNUM=870 + +UDEV [1294230194.343328] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0800: +SEQNUM=869 + +UDEV [1294230194.343516] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0303: +SEQNUM=865 + +UDEV [1294230194.343953] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=891 + +KERNEL[1294230194.348047] add /module/floppy (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1224 + +KERNEL[1294230194.348278] add /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1225 + +UDEV [1294230194.350217] add /devices/virtual/block/ramzswap0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/ramzswap0 +SUBSYSTEM=block +DEVNAME=/dev/ramzswap0 +DEVTYPE=disk +SEQNUM=1096 +ID_FS_VERSION=2 +ID_FS_TYPE=swap +ID_FS_USAGE=other +MAJOR=250 +MINOR=0 +DEVLINKS=/dev/block/250:0 + +UDEV [1294230194.350849] add /devices/virtual/tty/tty6 (tty) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/tty/tty6 +SUBSYSTEM=tty +DEVNAME=/dev/tty6 +SEQNUM=1191 +MAJOR=4 +MINOR=6 +DEVLINKS=/dev/char/4:6 + +UDEV [1294230194.356565] change /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 +SUBSYSTEM=sound +SEQNUM=1209 +SOUND_INITIALIZED=1 +ID_VENDOR_FROM_DATABASE=ATI Technologies Inc +ID_MODEL_FROM_DATABASE=SBx00 Azalia (Intel HDA) +ID_BUS=pci +ID_VENDOR_ID=0x1002 +ID_MODEL_ID=0x4383 +ID_PATH=pci-0000:00:14.2 +SOUND_FORM_FACTOR=internal + +UDEV [1294230194.360460] add /devices/virtual/block/loop7 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop7 +SUBSYSTEM=block +DEVNAME=/dev/loop7 +DEVTYPE=disk +SEQNUM=1079 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=7 +DEVLINKS=/dev/block/7:7 + +UDEV [1294230194.360612] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 +SUBSYSTEM=input +DEVNAME=/dev/input/event3 +SEQNUM=948 +ID_INPUT=1 +ID_INPUT_KEY=1 +ID_INPUT_KEYBOARD=1 +ID_VENDOR=Hewlett-Packard_Company +ID_VENDOR_ENC=Hewlett-Packard\x20Company +ID_VENDOR_ID=03f0 +ID_MODEL=HP_USB_Smart_Card_Keyboard +ID_MODEL_ENC=HP\x20USB\x20Smart\x20Card\x20Keyboard +ID_MODEL_ID=1024 +ID_REVISION=0535 +ID_SERIAL=Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66 +ID_SERIAL_SHORT=0817bd66 +ID_TYPE=hid +ID_BUS=usb +ID_USB_INTERFACES=:030101:0b0000: +ID_USB_INTERFACE_NUM=00 +ID_USB_DRIVER=usbhid +ID_PATH=pci-0000:00:13.0-usb-0:1:1.0 +XKBMODEL=pc105 +XKBLAYOUT=de +MAJOR=13 +MINOR=67 +DEVLINKS=/dev/char/13:67 /dev/input/by-id/usb-Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66-event-kbd /dev/input/by-path/pci-0000:00:13.0-usb-0:1:1.0-event-kbd + +UDEV [1294230194.362286] add /devices/virtual/block/loop1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop1 +SUBSYSTEM=block +DEVNAME=/dev/loop1 +DEVTYPE=disk +SEQNUM=1071 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=1 +DEVLINKS=/dev/block/7:1 + +UDEV [1294230194.363753] add /devices/virtual/block/loop4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop4 +SUBSYSTEM=block +DEVNAME=/dev/loop4 +DEVTYPE=disk +SEQNUM=1074 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=4 +DEVLINKS=/dev/block/7:4 + +UDEV [1294230194.364487] add /devices/virtual/block/loop6 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop6 +SUBSYSTEM=block +DEVNAME=/dev/loop6 +DEVTYPE=disk +SEQNUM=1078 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=6 +DEVLINKS=/dev/block/7:6 + +UDEV [1294230194.365254] add /devices/virtual/block/loop5 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop5 +SUBSYSTEM=block +DEVNAME=/dev/loop5 +DEVTYPE=disk +SEQNUM=1076 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=5 +DEVLINKS=/dev/block/7:5 + +UDEV [1294230194.365995] add /devices/virtual/block/loop3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop3 +SUBSYSTEM=block +DEVNAME=/dev/loop3 +DEVTYPE=disk +SEQNUM=1073 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=3 +DEVLINKS=/dev/block/7:3 + +UDEV [1294230194.366724] add /devices/virtual/block/loop0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop0 +SUBSYSTEM=block +DEVNAME=/dev/loop0 +DEVTYPE=disk +SEQNUM=1070 +ID_FS_UUID=4D24-62FE +ID_FS_UUID_ENC=4D24-62FE +ID_FS_VERSION=FAT32 +ID_FS_TYPE=vfat +ID_FS_USAGE=filesystem +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=0 +DEVLINKS=/dev/block/7:0 /dev/disk/by-uuid/4D24-62FE + +UDEV [1294230194.368292] add /devices/virtual/block/loop2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/block/loop2 +SUBSYSTEM=block +DEVNAME=/dev/loop2 +DEVTYPE=disk +SEQNUM=1072 +UDISKS_PRESENTATION_NOPOLICY=1 +MAJOR=7 +MINOR=2 +DEVLINKS=/dev/block/7:2 + +UDEV [1294230194.377054] add /module/radeon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/radeon +SUBSYSTEM=module +SEQNUM=1219 + +UDEV [1294230194.377243] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 +SUBSYSTEM=net +INTERFACE=eth0 +IFINDEX=2 +SEQNUM=910 +ID_VENDOR_FROM_DATABASE=Broadcom Corporation +ID_MODEL_FROM_DATABASE=NetXtreme BCM5755 Gigabit Ethernet PCI Express +ID_BUS=pci +ID_VENDOR_ID=0x14e4 +ID_MODEL_ID=0x167b +MATCHADDR=00:1e:0b:27:f4:99 +MATCHIFTYPE=1 +MATCHDEVID=0x0 +COMMENT=PCI device 0x14e4:0x167b (tg3) + +UDEV [1294230194.391169] add /devices/virtual/input/input2/event2 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/event2 +SUBSYSTEM=input +DEVNAME=/dev/input/event2 +SEQNUM=1100 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_SERIAL=noserial +DMI_VENDOR=Hewlett-Packard +MAJOR=13 +MINOR=66 +DEVLINKS=/dev/char/13:66 + +UDEV [1294230194.393053] add /devices/virtual/input/input2/mouse0 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/input/input2/mouse0 +SUBSYSTEM=input +DEVNAME=/dev/input/mouse0 +SEQNUM=1101 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_SERIAL=noserial +MAJOR=13 +MINOR=32 +DEVLINKS=/dev/char/13:32 + +UDEV [1294230194.395611] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=890 + +UDEV [1294230194.399356] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 +SUBSYSTEM=acpi +MODALIAS=acpi:device: +SEQNUM=893 + +UDEV [1294230194.410102] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 +SUBSYSTEM=input +DEVNAME=/dev/input/mouse1 +SEQNUM=967 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_VENDOR=0461 +ID_VENDOR_ENC=0461 +ID_VENDOR_ID=0461 +ID_MODEL=USB_Optical_Mouse +ID_MODEL_ENC=USB\x20Optical\x20Mouse +ID_MODEL_ID=4d20 +ID_REVISION=0200 +ID_SERIAL=0461_USB_Optical_Mouse +ID_TYPE=hid +ID_BUS=usb +ID_USB_INTERFACES=:030102: +ID_USB_INTERFACE_NUM=00 +ID_USB_DRIVER=usbhid +ID_PATH=pci-0000:00:13.2-usb-0:2:1.0 +MAJOR=13 +MINOR=33 +DEVLINKS=/dev/char/13:33 /dev/input/by-id/usb-0461_USB_Optical_Mouse-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:2:1.0-mouse + +UDEV [1294230194.412973] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 (input) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 +SUBSYSTEM=input +DEVNAME=/dev/input/event4 +SEQNUM=966 +ID_INPUT=1 +ID_INPUT_MOUSE=1 +ID_VENDOR=0461 +ID_VENDOR_ENC=0461 +ID_VENDOR_ID=0461 +ID_MODEL=USB_Optical_Mouse +ID_MODEL_ENC=USB\x20Optical\x20Mouse +ID_MODEL_ID=4d20 +ID_REVISION=0200 +ID_SERIAL=0461_USB_Optical_Mouse +ID_TYPE=hid +ID_BUS=usb +ID_USB_INTERFACES=:030102: +ID_USB_INTERFACE_NUM=00 +ID_USB_DRIVER=usbhid +ID_PATH=pci-0000:00:13.2-usb-0:2:1.0 +MAJOR=13 +MINOR=68 +DEVLINKS=/dev/char/13:68 /dev/input/by-id/usb-0461_USB_Optical_Mouse-event-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:2:1.0-event-mouse + +UDEV [1294230194.416066] add /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1225 + +UDEV [1294230194.416488] add /module/floppy (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1224 + +UDEV [1294230194.422570] add /devices/virtual/graphics/fbcon (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/graphics/fbcon +SUBSYSTEM=graphics +SEQNUM=1098 + +UDEV [1294230194.431850] add /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1222 + +KERNEL[1294230194.437573] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1226 + +KERNEL[1294230194.437591] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1227 + +UDEV [1294230194.438535] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1223 + +UDEV [1294230194.444521] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_pfp.bin +SEQNUM=1226 + +KERNEL[1294230194.445484] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1228 + +KERNEL[1294230194.445505] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1229 + +UDEV [1294230194.445994] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1227 + +UDEV [1294230194.451766] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/RV610_me.bin +SEQNUM=1228 + +KERNEL[1294230194.479150] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1230 + +UDEV [1294230194.479167] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1230 + +KERNEL[1294230194.479180] remove /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1231 + +UDEV [1294230194.479785] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 +SUBSYSTEM=firmware +FIRMWARE=radeon/R600_rlc.bin +SEQNUM=1229 + +UDEV [1294230194.480755] remove /devices/platform/radeon_cp.0 (platform) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/radeon_cp.0 +SUBSYSTEM=platform +MODALIAS=platform:radeon_cp +SEQNUM=1231 + +KERNEL[1294230194.503725] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 +SUBSYSTEM=drm +SEQNUM=1232 + +KERNEL[1294230194.503882] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1233 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.504013] add /devices/i2c-1 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-1 +SUBSYSTEM=i2c +SEQNUM=1234 + +UDEV [1294230194.504556] add /devices/i2c-1 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-1 +SUBSYSTEM=i2c +SEQNUM=1234 + +KERNEL[1294230194.504716] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 +SUBSYSTEM=drm +SEQNUM=1235 + +KERNEL[1294230194.504802] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1236 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.504961] add /devices/i2c-2 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-2 +SUBSYSTEM=i2c +SEQNUM=1237 + +UDEV [1294230194.505134] add /devices/i2c-2 (i2c) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/i2c-2 +SUBSYSTEM=i2c +SEQNUM=1237 + +KERNEL[1294230194.505928] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 +SUBSYSTEM=drm +SEQNUM=1238 + +KERNEL[1294230194.506043] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=dri/card0 +DEVTYPE=drm_minor +SEQNUM=1239 +MAJOR=226 +MINOR=0 + +KERNEL[1294230194.528521] add /module/vboxdrv (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxdrv +SUBSYSTEM=module +SEQNUM=1240 + +KERNEL[1294230194.528909] add /devices/virtual/misc/vboxdrv (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxdrv +SUBSYSTEM=misc +DEVNAME=vboxdrv +SEQNUM=1241 +MAJOR=10 +MINOR=55 + +KERNEL[1294230194.529015] add /bus/platform/drivers/vboxdrv (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vboxdrv +SUBSYSTEM=drivers +SEQNUM=1242 + +KERNEL[1294230194.529051] add /devices/platform/vboxdrv.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vboxdrv.0 +SUBSYSTEM=platform +MODALIAS=platform:vboxdrv +SEQNUM=1243 + +UDEV [1294230194.531422] add /module/vboxdrv (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxdrv +SUBSYSTEM=module +SEQNUM=1240 + +UDEV [1294230194.532655] add /bus/platform/drivers/vboxdrv (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vboxdrv +SUBSYSTEM=drivers +SEQNUM=1242 + +UDEV [1294230194.533083] add /devices/virtual/misc/vboxdrv (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxdrv +SUBSYSTEM=misc +DEVNAME=/dev/vboxdrv +SEQNUM=1241 +MAJOR=10 +MINOR=55 +DEVLINKS=/dev/char/10:55 + +UDEV [1294230194.536691] add /devices/platform/vboxdrv.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vboxdrv.0 +SUBSYSTEM=platform +MODALIAS=platform:vboxdrv +SEQNUM=1243 + +KERNEL[1294230194.538814] add /module/rpcsec_gss_krb5 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/rpcsec_gss_krb5 +SUBSYSTEM=module +SEQNUM=1244 + +UDEV [1294230194.538830] add /module/rpcsec_gss_krb5 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/rpcsec_gss_krb5 +SUBSYSTEM=module +SEQNUM=1244 + +KERNEL[1294230194.545812] add /module/vboxnetflt (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetflt +SUBSYSTEM=module +SEQNUM=1245 + +UDEV [1294230194.546317] add /module/vboxnetflt (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetflt +SUBSYSTEM=module +SEQNUM=1245 + +KERNEL[1294230194.564522] add /module/vboxnetadp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetadp +SUBSYSTEM=module +SEQNUM=1246 + +UDEV [1294230194.565271] add /module/vboxnetadp (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vboxnetadp +SUBSYSTEM=module +SEQNUM=1246 + +KERNEL[1294230194.568066] add /devices/virtual/net/vboxnet0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vboxnet0 +SUBSYSTEM=net +INTERFACE=vboxnet0 +IFINDEX=4 +SEQNUM=1247 + +UDEV [1294230194.568731] add /devices/virtual/net/vboxnet0 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vboxnet0 +SUBSYSTEM=net +INTERFACE=vboxnet0 +IFINDEX=4 +SEQNUM=1247 + +KERNEL[1294230194.569888] add /devices/virtual/misc/vboxnetctl (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxnetctl +SUBSYSTEM=misc +DEVNAME=vboxnetctl +SEQNUM=1248 +MAJOR=10 +MINOR=54 + +UDEV [1294230194.570859] add /devices/virtual/misc/vboxnetctl (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vboxnetctl +SUBSYSTEM=misc +DEVNAME=/dev/vboxnetctl +SEQNUM=1248 +MAJOR=10 +MINOR=54 +DEVLINKS=/dev/char/10:54 + +KERNEL[1294230194.616724] add /module/vmmon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmmon +SUBSYSTEM=module +SEQNUM=1249 + +KERNEL[1294230194.616997] add /devices/virtual/misc/vmmon (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmmon +SUBSYSTEM=misc +DEVNAME=vmmon +SEQNUM=1250 +MAJOR=10 +MINOR=165 + +UDEV [1294230194.617827] add /module/vmmon (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmmon +SUBSYSTEM=module +SEQNUM=1249 + +UDEV [1294230194.617847] add /devices/virtual/misc/vmmon (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmmon +SUBSYSTEM=misc +DEVNAME=/dev/vmmon +SEQNUM=1250 +MAJOR=10 +MINOR=165 +DEVLINKS=/dev/char/10:165 + +KERNEL[1294230194.638268] add /module/vmnet (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmnet +SUBSYSTEM=module +SEQNUM=1251 + +UDEV [1294230194.638879] add /module/vmnet (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmnet +SUBSYSTEM=module +SEQNUM=1251 + +KERNEL[1294230194.652737] add /module/vmci (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmci +SUBSYSTEM=module +SEQNUM=1252 + +UDEV [1294230194.653330] add /module/vmci (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmci +SUBSYSTEM=module +SEQNUM=1252 + +KERNEL[1294230194.653714] add /devices/virtual/misc/vmci (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmci +SUBSYSTEM=misc +DEVNAME=vmci +SEQNUM=1253 +MAJOR=10 +MINOR=53 + +UDEV [1294230194.654075] add /devices/virtual/misc/vmci (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vmci +SUBSYSTEM=misc +DEVNAME=/dev/vmci +SEQNUM=1253 +MAJOR=10 +MINOR=53 +DEVLINKS=/dev/char/10:53 + +KERNEL[1294230194.669917] add /module/vmblock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmblock +SUBSYSTEM=module +SEQNUM=1254 + +KERNEL[1294230194.670335] add /kernel/slab/:t-0004160 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0004160 +SUBSYSTEM=slab +SEQNUM=1255 + +UDEV [1294230194.670353] add /module/vmblock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vmblock +SUBSYSTEM=module +SEQNUM=1254 + +KERNEL[1294230194.670366] add /kernel/slab/VMBlockInodeCache (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/VMBlockInodeCache +SUBSYSTEM=slab +SEQNUM=1256 + +UDEV [1294230194.670376] add /kernel/slab/VMBlockInodeCache (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/VMBlockInodeCache +SUBSYSTEM=slab +SEQNUM=1256 + +UDEV [1294230194.670387] add /kernel/slab/:t-0004160 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0004160 +SUBSYSTEM=slab +SEQNUM=1255 + +KERNEL[1294230194.677479] add /module/vsock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vsock +SUBSYSTEM=module +SEQNUM=1257 + +UDEV [1294230194.678113] add /module/vsock (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vsock +SUBSYSTEM=module +SEQNUM=1257 + +KERNEL[1294230194.693320] add /devices/virtual/misc/vsock (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vsock +SUBSYSTEM=misc +DEVNAME=vsock +SEQNUM=1258 +MAJOR=10 +MINOR=52 + +UDEV [1294230194.694253] add /devices/virtual/misc/vsock (misc) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/misc/vsock +SUBSYSTEM=misc +DEVNAME=/dev/vsock +SEQNUM=1258 +MAJOR=10 +MINOR=52 +DEVLINKS=/dev/char/10:52 + +KERNEL[1294230194.723676] add /devices/virtual/net/vmnet1 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet1 +SUBSYSTEM=net +INTERFACE=vmnet1 +IFINDEX=5 +SEQNUM=1259 + +UDEV [1294230194.724313] add /devices/virtual/net/vmnet1 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet1 +SUBSYSTEM=net +INTERFACE=vmnet1 +IFINDEX=5 +SEQNUM=1259 + +KERNEL[1294230194.758324] add /devices/virtual/net/vmnet8 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet8 +SUBSYSTEM=net +INTERFACE=vmnet8 +IFINDEX=6 +SEQNUM=1260 + +UDEV [1294230194.760239] add /devices/virtual/net/vmnet8 (net) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/net/vmnet8 +SUBSYSTEM=net +INTERFACE=vmnet8 +IFINDEX=6 +SEQNUM=1260 + +UDEV [1294230194.788037] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +SUBSYSTEM=block +DEVNAME=/dev/sda +DEVTYPE=disk +SEQNUM=917 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION_TABLE=1 +UDISKS_PARTITION_TABLE_SCHEME=mbr +UDISKS_PARTITION_TABLE_COUNT=4 +UDISKS_ATA_SMART_IS_AVAILABLE=1 +MAJOR=8 +MINOR=0 +DEVLINKS=/dev/block/8:0 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0 + +KERNEL[1294230194.816156] remove /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=fb0 +SEQNUM=1261 +MAJOR=29 +MINOR=0 + +KERNEL[1294230194.816570] remove /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1262 + +KERNEL[1294230194.817059] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=fb0 +SEQNUM=1263 +MAJOR=29 +MINOR=0 + +UDEV [1294230194.817683] remove /devices/platform/vesafb.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/platform/vesafb.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=/dev/fb0 +SEQNUM=1261 +PRIMARY_DEVICE_FOR_DISPLAY=1 +MAJOR=29 +MINOR=0 +DEVLINKS=/dev/char/29:0 + +KERNEL[1294230194.817706] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1264 + +UDEV [1294230194.818728] remove /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1262 + +UDEV [1294230194.820011] add /devices/virtual/vtconsole/vtcon1 (vtconsole) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/virtual/vtconsole/vtcon1 +SUBSYSTEM=vtconsole +SEQNUM=1264 + +KERNEL[1294230194.830213] add /module/x_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/x_tables +SUBSYSTEM=module +SEQNUM=1265 + +UDEV [1294230194.830647] add /module/x_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/x_tables +SUBSYSTEM=module +SEQNUM=1265 + +KERNEL[1294230194.835089] add /module/ip_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ip_tables +SUBSYSTEM=module +SEQNUM=1266 + +UDEV [1294230194.835333] add /module/ip_tables (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ip_tables +SUBSYSTEM=module +SEQNUM=1266 + +KERNEL[1294230194.852366] add /bus/pci/drivers/radeon (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/pci/drivers/radeon +SUBSYSTEM=drivers +SEQNUM=1267 + +UDEV [1294230194.852884] add /bus/pci/drivers/radeon (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/pci/drivers/radeon +SUBSYSTEM=drivers +SEQNUM=1267 + +KERNEL[1294230194.855311] add /module/nf_defrag_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_defrag_ipv4 +SUBSYSTEM=module +SEQNUM=1268 + +UDEV [1294230194.855563] add /module/nf_defrag_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_defrag_ipv4 +SUBSYSTEM=module +SEQNUM=1268 + +KERNEL[1294230194.856411] add /module/vgastate (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vgastate +SUBSYSTEM=module +SEQNUM=1269 + +UDEV [1294230194.856638] add /module/vgastate (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vgastate +SUBSYSTEM=module +SEQNUM=1269 + +KERNEL[1294230194.859825] add /module/vga16fb (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vga16fb +SUBSYSTEM=module +SEQNUM=1270 + +KERNEL[1294230194.860010] add /bus/platform/drivers/vga16fb (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vga16fb +SUBSYSTEM=drivers +SEQNUM=1271 + +UDEV [1294230194.860093] add /module/vga16fb (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/vga16fb +SUBSYSTEM=module +SEQNUM=1270 + +UDEV [1294230194.860363] add /bus/platform/drivers/vga16fb (drivers) +UDEV_LOG=3 +ACTION=add +DEVPATH=/bus/platform/drivers/vga16fb +SUBSYSTEM=drivers +SEQNUM=1271 + +KERNEL[1294230194.860517] add /devices/platform/vga16fb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vga16fb.0 +SUBSYSTEM=platform +MODALIAS=platform:vga16fb +SEQNUM=1272 + +UDEV [1294230194.861254] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0 (pci) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0 +SUBSYSTEM=pci +PCI_CLASS=30000 +PCI_ID=1002:94C1 +PCI_SUBSYS_ID=1028:0D02 +PCI_SLOT_NAME=0000:02:00.0 +MODALIAS=pci:v00001002d000094C1sv00001028sd00000D02bc03sc00i00 +SEQNUM=905 + +UDEV [1294230194.861273] add /devices/platform/vga16fb.0 (platform) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/platform/vga16fb.0 +SUBSYSTEM=platform +MODALIAS=platform:vga16fb +SEQNUM=1272 + +UDEV [1294230194.861845] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1221 +ACL_MANAGE=1 +PRIMARY_DEVICE_FOR_DISPLAY=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.862111] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 +SUBSYSTEM=drm +DEVNAME=/dev/dri/controlD64 +DEVTYPE=drm_minor +SEQNUM=1220 +MAJOR=226 +MINOR=64 +DEVLINKS=/dev/char/226:64 + +UDEV [1294230194.862327] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 +SUBSYSTEM=drm +SEQNUM=1232 + +UDEV [1294230194.862683] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1233 +ACL_MANAGE=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.862867] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 +SUBSYSTEM=drm +SEQNUM=1235 + +UDEV [1294230194.863161] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1236 +ACL_MANAGE=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.863335] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 (drm) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 +SUBSYSTEM=drm +SEQNUM=1238 + +UDEV [1294230194.863616] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) +UDEV_LOG=3 +ACTION=change +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 +SUBSYSTEM=drm +HOTPLUG=1 +DEVNAME=/dev/dri/card0 +DEVTYPE=drm_minor +SEQNUM=1239 +ACL_MANAGE=1 +MAJOR=226 +MINOR=0 +DEVLINKS=/dev/char/226:0 + +UDEV [1294230194.868901] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 (graphics) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 +SUBSYSTEM=graphics +DEVNAME=/dev/fb0 +SEQNUM=1263 +MAJOR=29 +MINOR=0 +DEVLINKS=/dev/char/29:0 + +KERNEL[1294230194.875337] add /module/nf_conntrack (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack +SUBSYSTEM=module +SEQNUM=1273 + +UDEV [1294230194.875582] add /module/nf_conntrack (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack +SUBSYSTEM=module +SEQNUM=1273 + +KERNEL[1294230194.875812] add /kernel/slab/nf_conntrack_c0932380 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/nf_conntrack_c0932380 +SUBSYSTEM=slab +SEQNUM=1274 + +UDEV [1294230194.875976] add /kernel/slab/nf_conntrack_c0932380 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/nf_conntrack_c0932380 +SUBSYSTEM=slab +SEQNUM=1274 + +KERNEL[1294230194.876091] add /kernel/slab/:t-0000168 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0000168 +SUBSYSTEM=slab +SEQNUM=1275 + +UDEV [1294230194.876266] add /kernel/slab/:t-0000168 (slab) +UDEV_LOG=3 +ACTION=add +DEVPATH=/kernel/slab/:t-0000168 +SUBSYSTEM=slab +SEQNUM=1275 + +KERNEL[1294230194.881395] add /module/nf_conntrack_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack_ipv4 +SUBSYSTEM=module +SEQNUM=1276 + +UDEV [1294230194.881645] add /module/nf_conntrack_ipv4 (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_conntrack_ipv4 +SUBSYSTEM=module +SEQNUM=1276 + +KERNEL[1294230194.887184] add /module/nf_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_nat +SUBSYSTEM=module +SEQNUM=1277 + +UDEV [1294230194.888088] add /module/nf_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/nf_nat +SUBSYSTEM=module +SEQNUM=1277 + +KERNEL[1294230194.893958] add /module/iptable_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/iptable_nat +SUBSYSTEM=module +SEQNUM=1278 + +UDEV [1294230194.894249] add /module/iptable_nat (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/iptable_nat +SUBSYSTEM=module +SEQNUM=1278 + +UDEV [1294230194.898348] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 +SUBSYSTEM=block +DEVNAME=/dev/sda3 +DEVTYPE=partition +SEQNUM=920 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d +ID_FS_UUID_ENC=b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d +ID_FS_VERSION=1.0 +ID_FS_TYPE=ext4 +ID_FS_USAGE=filesystem +FSTAB_NAME=/dev/sda3 +FSTAB_DIR=/media/sda3 +FSTAB_TYPE=auto +FSTAB_OPTS=noauto,noexec +FSTAB_FREQ=0 +FSTAB_PASSNO=0 +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=3 +UDISKS_PARTITION_TYPE=0x83 +UDISKS_PARTITION_SIZE=140002490880 +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=104000440320 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=3 +DEVLINKS=/dev/block/8:3 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part3 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part3 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part3 /dev/disk/by-uuid/b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d + +KERNEL[1294230194.902123] add /module/ipt_MASQUERADE (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ipt_MASQUERADE +SUBSYSTEM=module +SEQNUM=1279 + +UDEV [1294230194.902764] add /module/ipt_MASQUERADE (module) +UDEV_LOG=3 +ACTION=add +DEVPATH=/module/ipt_MASQUERADE +SUBSYSTEM=module +SEQNUM=1279 + +UDEV [1294230194.972170] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 +SUBSYSTEM=block +DEVNAME=/dev/sda2 +DEVTYPE=partition +SEQNUM=919 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=1c8dda07-d0ae-4ced-b276-62d499df3b21 +ID_FS_UUID_ENC=1c8dda07-d0ae-4ced-b276-62d499df3b21 +ID_FS_VERSION=1.0 +ID_FS_TYPE=ext4 +ID_FS_USAGE=filesystem +FSTAB_NAME=/dev/sda2 +FSTAB_DIR=/media/sda2 +FSTAB_TYPE=auto +FSTAB_OPTS=noauto,noexec +FSTAB_FREQ=0 +FSTAB_PASSNO=0 +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=2 +UDISKS_PARTITION_TYPE=0x83 +UDISKS_PARTITION_SIZE=100002954240 +UDISKS_PARTITION_FLAGS=boot +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=3997486080 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=2 +DEVLINKS=/dev/block/8:2 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part2 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part2 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part2 /dev/disk/by-uuid/1c8dda07-d0ae-4ced-b276-62d499df3b21 + +UDEV [1294230195.028287] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 +SUBSYSTEM=block +DEVNAME=/dev/sda4 +DEVTYPE=partition +SEQNUM=921 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=51c1376a-926f-4687-879a-22bb137f843c +ID_FS_UUID_ENC=51c1376a-926f-4687-879a-22bb137f843c +ID_FS_VERSION=1.0 +ID_FS_TYPE=ext2 +ID_FS_USAGE=filesystem +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=4 +UDISKS_PARTITION_TYPE=0x44 +UDISKS_PARTITION_SIZE=5996229120 +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=244002931200 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=4 +DEVLINKS=/dev/block/8:4 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part4 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part4 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part4 /dev/disk/by-uuid/51c1376a-926f-4687-879a-22bb137f843c + +UDEV [1294230195.074068] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 +SUBSYSTEM=block +DEVNAME=/dev/sda1 +DEVTYPE=partition +SEQNUM=918 +ID_ATA=1 +ID_TYPE=disk +ID_BUS=ata +ID_MODEL=ST3250310AS +ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 +ID_REVISION=4.ADA +ID_SERIAL=ST3250310AS_6RYHFE2N +ID_SERIAL_SHORT=6RYHFE2N +ID_ATA_WRITE_CACHE=1 +ID_ATA_WRITE_CACHE_ENABLED=1 +ID_ATA_FEATURE_SET_HPA=1 +ID_ATA_FEATURE_SET_HPA_ENABLED=1 +ID_ATA_FEATURE_SET_PM=1 +ID_ATA_FEATURE_SET_PM_ENABLED=1 +ID_ATA_FEATURE_SET_SECURITY=1 +ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 +ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 +ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 +ID_ATA_FEATURE_SET_SMART=1 +ID_ATA_FEATURE_SET_SMART_ENABLED=1 +ID_ATA_FEATURE_SET_AAM=1 +ID_ATA_FEATURE_SET_AAM_ENABLED=0 +ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 +ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 +ID_ATA_DOWNLOAD_MICROCODE=1 +ID_ATA_SATA=1 +ID_ATA_SATA_SIGNAL_RATE_GEN2=1 +ID_ATA_SATA_SIGNAL_RATE_GEN1=1 +ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N +ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 +ID_PART_TABLE_TYPE=dos +ID_FS_UUID=a1baed6c-2b7d-452b-b894-1d1b8edf321a +ID_FS_UUID_ENC=a1baed6c-2b7d-452b-b894-1d1b8edf321a +ID_FS_VERSION=2 +ID_FS_TYPE=swap +ID_FS_USAGE=other +FSTAB_NAME=/dev/sda1 +FSTAB_DIR=swap +FSTAB_TYPE=swap +FSTAB_OPTS=defaults +FSTAB_FREQ=0 +FSTAB_PASSNO=0 +UDISKS_PRESENTATION_NOPOLICY=0 +UDISKS_PARTITION=1 +UDISKS_PARTITION_SCHEME=mbr +UDISKS_PARTITION_NUMBER=1 +UDISKS_PARTITION_TYPE=0x82 +UDISKS_PARTITION_SIZE=3997453824 +UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda +UDISKS_PARTITION_OFFSET=32256 +UDISKS_PARTITION_ALIGNMENT_OFFSET=0 +MAJOR=8 +MINOR=1 +DEVLINKS=/dev/block/8:1 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part1 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part1 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part1 /dev/disk/by-uuid/a1baed6c-2b7d-452b-b894-1d1b8edf321a + +UDEV [1294230195.240447] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 (block) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 +SUBSYSTEM=block +DEVNAME=/dev/sr0 +DEVTYPE=disk +SEQNUM=932 +ID_CDROM=1 +ID_CDROM_CD_R=1 +ID_CDROM_CD_RW=1 +ID_CDROM_DVD=1 +ID_CDROM_DVD_R=1 +ID_CDROM_DVD_RW=1 +ID_CDROM_DVD_RAM=1 +ID_CDROM_DVD_PLUS_R=1 +ID_CDROM_DVD_PLUS_RW=1 +ID_CDROM_DVD_PLUS_R_DL=1 +ID_CDROM_MRW=1 +ID_CDROM_MRW_W=1 +ID_SCSI=1 +ID_VENDOR=HL-DT-ST +ID_VENDOR_ENC=HL-DT-ST +ID_MODEL=DVD-RAM_GSA-H60L +ID_MODEL_ENC=DVD-RAM\x20GSA-H60L +ID_REVISION=R90C +ID_TYPE=cd +ID_BUS=scsi +ID_PATH=pci-0000:00:12.0-scsi-1:0:0:0 +ACL_MANAGE=1 +UDISKS_PRESENTATION_NOPOLICY=0 +MAJOR=11 +MINOR=0 +DEVLINKS=/dev/block/11:0 /dev/scd0 /dev/disk/by-path/pci-0000:00:12.0-scsi-1:0:0:0 /dev/cdrom /dev/cdrw /dev/dvd /dev/dvdrw + +KERNEL[1294230197.361633] remove /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1280 + +UDEV [1294230197.362085] remove /bus/platform/drivers/floppy (drivers) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/bus/platform/drivers/floppy +SUBSYSTEM=drivers +SEQNUM=1280 + +KERNEL[1294230197.378024] remove /module/floppy (module) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1281 + +UDEV [1294230197.378043] remove /module/floppy (module) +UDEV_LOG=3 +ACTION=remove +DEVPATH=/module/floppy +SUBSYSTEM=module +SEQNUM=1281 + +UDEV [1294230197.378558] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 (acpi) +UDEV_LOG=3 +ACTION=add +DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 +SUBSYSTEM=acpi +MODALIAS=acpi:PNP0700: +SEQNUM=868 + diff --git a/resources/config/1/config/var/log/ufw.log b/resources/config/1/config/var/log/ufw.log new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/log/user.log b/resources/config/1/config/var/log/user.log new file mode 100755 index 0000000..0da47ed --- /dev/null +++ b/resources/config/1/config/var/log/user.log @@ -0,0 +1,3 @@ +Jan 5 13:28:54 lsfks20 pulseaudio[3791]: pid.c: Daemon already running. +Jan 5 13:35:46 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) +Jan 5 13:35:59 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) diff --git a/resources/config/1/config/var/log/wtmp b/resources/config/1/config/var/log/wtmp new file mode 100755 index 0000000..a1666e3 Binary files /dev/null and b/resources/config/1/config/var/log/wtmp differ diff --git a/resources/config/1/config/var/opt/openslx/bin/vmplayer b/resources/config/1/config/var/opt/openslx/bin/vmplayer new file mode 100755 index 0000000..c9b57a6 --- /dev/null +++ b/resources/config/1/config/var/opt/openslx/bin/vmplayer @@ -0,0 +1,8 @@ +#!/bin/sh +# written by OpenSLX-plugin 'vmware' in Stage1 +# radically simplified version of the original script vmplayer by VMware Inc. +PREFIX=/usr/lib/vmware # depends on the vmware location +exec "$PREFIX"'/lib/wrapper-gtk24.sh' \ + "$PREFIX"'/lib' \ + "$PREFIX"'/bin/vmplayer' \ + "$PREFIX"'/libconf' "$@" diff --git a/resources/config/1/config/var/opt/openslx/bin/vmware b/resources/config/1/config/var/opt/openslx/bin/vmware new file mode 100755 index 0000000..8b568f5 --- /dev/null +++ b/resources/config/1/config/var/opt/openslx/bin/vmware @@ -0,0 +1,8 @@ +#!/bin/sh +# written by OpenSLX-plugin 'vmware' in Stage1 +# radically simplified version of the original script vmware by VMware Inc. +PREFIX=/usr/lib/vmware # depends on the vmware location +exec "$PREFIX"'/lib/wrapper-gtk24.sh' \ + "$PREFIX"'/lib' \ + "$PREFIX"'/bin/vmware' \ + "$PREFIX"'/libconf' "$@" diff --git a/resources/config/1/config/var/run/utmp b/resources/config/1/config/var/run/utmp new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/run/vmware/udhcpd-vmnet1.leases b/resources/config/1/config/var/run/vmware/udhcpd-vmnet1.leases new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/run/vmware/udhcpd-vmnet8.leases b/resources/config/1/config/var/run/vmware/udhcpd-vmnet8.leases new file mode 100755 index 0000000..e69de29 diff --git a/resources/config/1/config/var/tmp/host_0 b/resources/config/1/config/var/tmp/host_0 new file mode 100755 index 0000000..5743e64 Binary files /dev/null and b/resources/config/1/config/var/tmp/host_0 differ diff --git a/resources/config/1/config/whitelist.sh b/resources/config/1/config/whitelist.sh new file mode 100755 index 0000000..d75410e --- /dev/null +++ b/resources/config/1/config/whitelist.sh @@ -0,0 +1,306 @@ +#!/bin/sh +chmod 644 blacklist.txt +chmod 755 etc +chmod 755 etc/rc0.d +chmod 755 etc/rc6.d +chmod 755 etc/rc3.d +chmod 777 etc/rc3.d/K002nscd +chmod 777 etc/rc3.d/K02vmware-env +chmod 777 etc/rc3.d/S20vbox-slx +chmod 777 etc/rc3.d/S20vmware-env +chmod 777 etc/rc3.d/S20nscd +chmod 777 etc/rc3.d/K02vbox-slx +chmod 644 etc/logfile +chmod 644 etc/profile +chmod 755 etc/udev +chmod 755 etc/udev/rules.d +chmod 644 etc/udev/rules.d/70-persistent-cd.rules +chmod 644 etc/udev/rules.d/70-persistent-net.rules +chmod 644 etc/udev/rules.d/90-vboxusb.rules +chmod 755 etc/opt +chmod 755 etc/opt/openslx +chmod 755 etc/opt/openslx/plugins +chmod 755 etc/opt/openslx/plugins/virtualbox +chmod 644 etc/opt/openslx/plugins/virtualbox/virtualbox.include +chmod 644 etc/opt/openslx/plugins/virtualbox/run-virt.include +chmod 644 etc/opt/openslx/plugins/virtualbox/virtualbox.conf +chmod 644 etc/opt/openslx/plugins/virtualbox/machine.include +chmod 755 etc/opt/openslx/plugins/sysrqshutdown +chmod 644 etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf +chmod 755 etc/opt/openslx/plugins/vmchooser +chmod 644 etc/opt/openslx/plugins/vmchooser/vmchooser.conf +chmod 755 etc/opt/openslx/plugins/vmchooser/loopimg +chmod 1777 etc/opt/openslx/plugins/vmchooser/fd-loop +chmod 755 etc/opt/openslx/plugins/vmware +chmod 644 etc/opt/openslx/plugins/vmware/run-virt.include +chmod 644 etc/opt/openslx/plugins/vmware/vmware.conf +chmod 755 etc/opt/openslx/plugins/virtualization +chmod 644 etc/opt/openslx/plugins/virtualization/virtualization.conf +chmod 644 etc/opt/openslx/udhcpd.conf +chmod 755 etc/alternatives +chmod 777 etc/alternatives/x-session-manager.1.gz +chmod 777 etc/alternatives/x-session-manager +chmod 777 etc/alternatives/x-window-manager +chmod 755 etc/rc4.d +chmod 644 etc/fstab +chmod 777 etc/ldap.conf +chmod 755 etc/rc1.d +chmod 755 etc/pam.d +chmod 644 etc/pam.d/common-account +chmod 644 etc/pam.d/common-auth +chmod 644 etc/pam.d/common-session +chmod 755 etc/kde4 +chmod 755 etc/kde4/kdm +chmod 644 etc/kde4/kdm/kdmrc +chmod 755 etc/kde4/kdm/Xreset +chmod 755 etc/kde4/kdm/Xreset.system +chmod 755 etc/dbus-1 +chmod 755 etc/dbus-1/system.d +chmod 644 etc/dbus-1/system.d/hal.conf +chmod 755 etc/rc5.d +chmod 600 etc/krb5.keytab +chmod 644 etc/auto.misc +chmod 755 etc/default +chmod 644 etc/default/nfs-common +chmod 644 etc/default/locale +chmod 644 etc/default/autofs +chmod 755 etc/init.d +chmod 777 etc/init.d/vmware-env +chmod 777 etc/init.d/vbox-slx +chmod 744 etc/init.d/boot.slx +chmod 755 etc/security +chmod 644 etc/security/group.conf +chmod 755 etc/X11 +chmod 755 etc/X11/xorg.conf.d +chmod 644 etc/X11/default-display-manager +chmod 777 etc/X11/X +chmod 644 etc/X11/xorg.conf +chmod 644 etc/machine-setup +chmod 644 etc/krb5.conf +chmod 640 etc/shadow +chmod 644 etc/idmapd.conf +chmod 755 etc/modprobe.d +chmod 644 etc/modprobe.d/aliases.conf +chmod 644 etc/modprobe.d/blacklist-pcspkr.conf +chmod 755 etc/vmware +chmod 644 etc/vmware/vmnet-natd-8.mac +chmod 644 etc/vmware/config +chmod 644 etc/vmware/nat.conf +chmod 755 etc/vmware/udhcpd +chmod 644 etc/vmware/udhcpd/udhcpd-vmnet1.conf +chmod 644 etc/vmware/udhcpd/udhcpd-vmnet8.conf +chmod 755 etc/ldap +chmod 644 etc/ldap/ldap.conf +chmod 644 etc/nsswitch.conf +chmod 644 etc/mtab +chmod 644 etc/auto.master +chmod 644 etc/issue +chmod 644 etc/hosts +chmod 755 etc/init.inactive +chmod 644 etc/init.inactive/ufw.conf +chmod 644 etc/init.inactive/mountall-shell.conf +chmod 644 etc/init.inactive/network-manager.conf +chmod 644 etc/init.inactive/anacron.conf +chmod 644 etc/init.inactive/mountall-net.conf +chmod 644 etc/init.inactive/avahi-daemon.conf +chmod 644 etc/init.inactive/network-interface-security.conf +chmod 644 etc/init.inactive/ureadahead.conf +chmod 644 etc/init.inactive/network-interface.conf +chmod 644 etc/init.inactive/cryptdisks-udev.conf +chmod 644 etc/init.inactive/atd.conf +chmod 644 etc/init.inactive/apport.conf +chmod 644 etc/init.inactive/bridge-network-interface.conf +chmod 644 etc/init.inactive/plymouth-log.conf +chmod 644 etc/init.inactive/gdm.conf +chmod 644 etc/init.inactive/qemu-kvm.conf +chmod 644 etc/init.inactive/cryptdisks-enable.conf +chmod 644 etc/init.inactive/cron.conf +chmod 644 etc/init.inactive/screen-cleanup.conf +chmod 644 etc/init.inactive/README +chmod 644 etc/init.inactive/plymouth-stop.conf +chmod 644 etc/init.inactive/mountall-reboot.conf +chmod 644 etc/init.inactive/plymouth-splash.conf +chmod 644 etc/init.inactive/ureadahead-other.conf +chmod 644 etc/init.inactive/hostname.conf +chmod 644 etc/init.inactive/plymouth.conf +chmod 644 etc/init.inactive/failsafe-x.conf +chmod 755 etc/rcS.d +chmod 755 etc/init +chmod 644 etc/init/hwclock.conf +chmod 644 etc/init/dmesg.conf +chmod 644 etc/init/rcS.conf +chmod 644 etc/init/udevmonitor.conf +chmod 644 etc/init/upstart-udev-bridge.conf +chmod 644 etc/init/udev-finish.conf +chmod 644 etc/init/rsyslog.conf +chmod 644 etc/init/tty5.conf +chmod 644 etc/init/rpc_pipefs.conf +chmod 644 etc/init/tty6.conf +chmod 644 etc/init/tty1.conf +chmod 644 etc/init/mounted-dev.conf +chmod 644 etc/init/tty4.conf +chmod 644 etc/init/procps.conf +chmod 644 etc/init/gssd.conf +chmod 644 etc/init/tty2.conf +chmod 644 etc/init/hwclock-save.conf +chmod 644 etc/init/module-init-tools.conf +chmod 644 etc/init/networking.conf +chmod 644 etc/init/udev.conf +chmod 644 etc/init/udevtrigger.conf +chmod 644 etc/init/console-setup.conf +chmod 644 etc/init/rc-sysinit.conf +chmod 644 etc/init/rc.conf +chmod 644 etc/init/ssh.conf +chmod 644 etc/init/irqbalance.conf +chmod 644 etc/init/alsa-mixer-save.conf +chmod 644 etc/init/idmapd.conf +chmod 644 etc/init/acpid.conf +chmod 644 etc/init/mounted-tmp.conf +chmod 644 etc/init/mounted-varrun.conf +chmod 644 etc/init/control-alt-delete.conf +chmod 644 etc/init/mountall.conf +chmod 644 etc/init/portmap.conf +chmod 644 etc/init/tty3.conf +chmod 644 etc/init/dbus.conf +chmod 644 etc/init/statd.conf +chmod 644 etc/init/autofs.conf +chmod 644 etc/init/kdm.conf +chmod 777 etc/localtime +chmod 755 etc/rc2.d +chmod 777 etc/rc2.d/K002nscd +chmod 777 etc/rc2.d/K02vmware-env +chmod 777 etc/rc2.d/S20vbox-slx +chmod 777 etc/rc2.d/S20vmware-env +chmod 777 etc/rc2.d/S20nscd +chmod 777 etc/rc2.d/K02vbox-slx +chmod 644 etc/passwd +chmod 644 etc/resolv.conf +chmod 755 lib +chmod 755 lib/init +chmod 755 lib/init/rw +chmod 755 media +chmod 755 media/sda2 +chmod 755 media/sda3 +chmod 555 misc +chmod 755 root +chmod 700 root/.kde +chmod 777 root/.kde/tmp-lsfks20 +chmod 777 root/.kde/cache-lsfks20 +chmod 755 root/.ssh +chmod 644 root/.ssh/authorized_keys +chmod 1777 tmp +chmod 700 tmp/orbit-mp57 +chmod 700 tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock +chmod 644 tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior +chmod 700 tmp/vmware-root +chmod 644 tmp/vmware-root/usbarb-3200.log +chmod 600 tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE +chmod 700 tmp/kde-root +chmod 600 tmp/krb5cc_14620_43Qjbp +chmod 644 tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile +chmod 700 tmp/pulse-b9qYDvw8bJls +chmod 600 tmp/pulse-b9qYDvw8bJls/pid +chmod 1777 tmp/.ICE-unix +chmod 700 tmp/.esd-14620 +chmod 700 tmp/plugtmp +chmod 600 tmp/plugtmp/plugin-all_V25_spec_160_600.xml +chmod 644 tmp/whitelist +chmod 700 tmp/ssh-vKkIiL3434 +chmod 1777 tmp/.X11-unix +chmod 700 tmp/keyring-tEWVbP +chmod 700 tmp/virtual-mp57.s0ExfM +chmod 444 tmp/.X0-lock +chmod 755 uniontmp +chmod 755 uniontmp/uniontmp +chmod 755 usr +chmod 755 usr/share +chmod 755 usr/share/xsessions +chmod 755 usr/share/man +chmod 755 usr/share/man/man1 +chmod 777 usr/share/man/man1/x-session-manager.1.gz +chmod 755 usr/bin +chmod 777 usr/bin/x-session-manager +chmod 777 usr/bin/x-window-manager +chmod 755 var +chmod 755 var/opt +chmod 755 var/opt/openslx +chmod 755 var/opt/openslx/bin +chmod 755 var/opt/openslx/bin/vmplayer +chmod 777 var/opt/openslx/bin/vmchooser +chmod 755 var/opt/openslx/bin/vmware +chmod 777 var/opt/openslx/bin/run-virt.sh +chmod 755 var/cache +chmod 755 var/cache/nscd +chmod 600 var/cache/nscd/services +chmod 600 var/cache/nscd/group +chmod 600 var/cache/nscd/passwd +chmod 755 var/cache/apt +chmod 755 var/cache/apt/archives +chmod 755 var/cache/apt/archives/partial +chmod 755 var/spool +chmod 755 var/spool/cron +chmod 1777 var/tmp +chmod 700 var/tmp/kdecache-root +chmod 600 var/tmp/host_0 +chmod 755 var/log +chmod 640 var/log/daemon.log +chmod 640 var/log/mail.log +chmod 640 var/log/mail.warn +chmod 640 var/log/mail.info +chmod 644 var/log/dmesg.0 +chmod 644 var/log/udev +chmod 640 var/log/user.log +chmod 644 var/log/lastlog +chmod 755 var/log/ConsoleKit +chmod 644 var/log/ConsoleKit/history +chmod 640 var/log/kern.log +chmod 640 var/log/debug +chmod 640 var/log/syslog +chmod 640 var/log/messages +chmod 755 var/log/news +chmod 640 var/log/news/news.err +chmod 640 var/log/news/news.crit +chmod 640 var/log/news/news.notice +chmod 644 var/log/kdm.log +chmod 640 var/log/mail.err +chmod 644 var/log/dmesg +chmod 644 var/log/Xorg.0.log +chmod 640 var/log/ufw.log +chmod 644 var/log/wtmp +chmod 640 var/log/lpr.log +chmod 1777 var/log/openslx +chmod 644 var/log/pm-powersave.log +chmod 640 var/log/auth.log +chmod 755 var/run +chmod 755 var/run/rsyslog +chmod 755 var/run/kdm +chmod 755 var/run/xauth +chmod 644 var/run/utmp +chmod 1777 var/run/vmware +chmod 644 var/run/vmware/udhcpd-vmnet8.leases +chmod 644 var/run/vmware/udhcpd-vmnet1.leases +chmod 777 var/run/screen +chmod 755 var/run/sysconfig +chmod 755 var/run/sysconfig/tmp +chmod 755 var/run/sshd +chmod 755 var/X11R6 +chmod 755 var/X11R6/lib +chmod 755 var/lib +chmod 755 var/lib/bluetooth +chmod 755 var/lib/acpi_support +chmod 755 var/lib/dpkg +chmod 755 var/lib/dpkg/alternatives +chmod 644 var/lib/dpkg/alternatives/x-session-manager +chmod 644 var/lib/dpkg/alternatives/x-window-manager +chmod 755 var/lib/xkb +chmod 644 var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm +chmod 644 var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm +chmod 755 var/lib/virt +chmod 755 var/lib/virt/vmware +chmod 755 var/lib/nobody +chmod 755 var/lib/openslx +chmod 755 var/lib/openslx/bin +chmod 755 var/lib/openslx/bin/automount-home.pl +chmod 755 var/lib/openslx/bin/krb5_mount_mode.pl +chmod 755 var/lib/openslx/bin/sslconnect +chmod 644 whitelist.sh diff --git a/resources/config/1/uniontmp/blacklist.txt b/resources/config/1/uniontmp/blacklist.txt deleted file mode 100755 index 18bc411..0000000 --- a/resources/config/1/uniontmp/blacklist.txt +++ /dev/null @@ -1,265 +0,0 @@ -/usr/share/xsessions/.xterm.desktop -/usr/share/xsessions/.guest-restricted.desktop -/usr/share/xsessions/.gnome-failsafe.desktop -/usr/share/xsessions/.xubuntu.desktop -/usr/share/xsessions/.openbox-kde.desktop -/usr/share/xsessions/.openbox-gnome.desktop -/usr/share/man/man1/.x-window-manager.1.gz -/etc/alternatives/.x-window-manager.1.gz -/etc/dbus-1/system.d/.nm-vpnc-service.conf -/etc/dbus-1/system.d/.nm-pptp-service.conf -/etc/dbus-1/system.d/.nm-openvpn-service.conf -/etc/dbus-1/system.d/.nm-dispatcher.conf -/etc/dbus-1/system.d/.nm-dhcp-client.conf -/etc/dbus-1/system.d/.nm-avahi-autoipd.conf -/etc/dbus-1/system.d/.nm-applet.conf -/etc/dbus-1/system.d/.NetworkManager.conf -/etc/init/.ureadahead.conf -/etc/init/.ureadahead-other.conf -/etc/init/.ufw.conf -/etc/init/.screen-cleanup.conf -/etc/init/.qemu-kvm.conf -/etc/init/.plymouth.conf -/etc/init/.plymouth-stop.conf -/etc/init/.plymouth-splash.conf -/etc/init/.plymouth-log.conf -/etc/init/.network-manager.conf -/etc/init/.network-interface.conf -/etc/init/.network-interface-security.conf -/etc/init/.mountall-shell.conf -/etc/init/.mountall-reboot.conf -/etc/init/.mountall-net.conf -/etc/init/.hostname.conf -/etc/init/.gdm.conf -/etc/init/.failsafe-x.conf -/etc/init/.cryptdisks-udev.conf -/etc/init/.cryptdisks-enable.conf -/etc/init/.cron.conf -/etc/init/.bridge-network-interface.conf -/etc/init/.avahi-daemon.conf -/etc/init/.atd.conf -/etc/init/.apport.conf -/etc/init/.anacron.conf -/etc/rcS.d/.S75policykit -/etc/rcS.d/.S70x11-common -/etc/rcS.d/.S55urandom -/etc/rcS.d/.S47lm-sensors -/etc/rcS.d/.S46setserial -/etc/rcS.d/.S41nbd-client -/etc/rcS.d/.S37setkey -/etc/rcS.d/.S37apparmor -/etc/rcS.d/.S30etc-setserial -/etc/rcS.d/.S25brltty -/etc/rcS.d/.S13pcmciautils -/etc/rcS.d/.S07resolvconf -/etc/rcS.d/.S05keymap.sh -/etc/rcS.d/.README -/etc/rc6.d/.S90reboot -/etc/rc6.d/.S85kexec -/etc/rc6.d/.S60umountroot -/etc/rc6.d/.S59cryptdisks-early -/etc/rc6.d/.S48cryptdisks -/etc/rc6.d/.S40umountfs -/etc/rc6.d/.S35networking -/etc/rc6.d/.S34nbd-client -/etc/rc6.d/.S31umountnfs.sh -/etc/rc6.d/.S30urandom -/etc/rc6.d/.S20sendsigs -/etc/rc6.d/.S15wpa-ifupdown -/etc/rc6.d/.S10unattended-upgrades -/etc/rc6.d/.README -/etc/rc6.d/.K80openvpn -/etc/rc6.d/.K74bluetooth -/etc/rc6.d/.K30etc-setserial -/etc/rc6.d/.K20winbind -/etc/rc6.d/.K20virtuoso-opensource-6.0 -/etc/rc6.d/.K20vboxweb-service -/etc/rc6.d/.K20vboxdrv -/etc/rc6.d/.K20postfix -/etc/rc6.d/.K20nscd -/etc/rc6.d/.K20libnss-ldap -/etc/rc6.d/.K20kerneloops -/etc/rc6.d/.K20jetty -/etc/rc6.d/.K20darkstat -/etc/rc6.d/.K19setserial -/etc/rc6.d/.K19aumix -/etc/rc6.d/.K18kexec-load -/etc/rc6.d/.K01slim -/etc/rc5.d/.S99slim -/etc/rc5.d/.S99rc.local -/etc/rc5.d/.S99ondemand -/etc/rc5.d/.S99grub-common -/etc/rc5.d/.S99acpi-support -/etc/rc5.d/.S90binfmt-support -/etc/rc5.d/.S70pppd-dns -/etc/rc5.d/.S70dns-clean -/etc/rc5.d/.S50saned -/etc/rc5.d/.S50rsync -/etc/rc5.d/.S50pulseaudio -/etc/rc5.d/.S50cups -/etc/rc5.d/.S25bluetooth -/etc/rc5.d/.S21aumix -/etc/rc5.d/.S20winbind -/etc/rc5.d/.S20virtuoso-opensource-6.0 -/etc/rc5.d/.S20vboxweb-service -/etc/rc5.d/.S20vboxdrv -/etc/rc5.d/.S20sysstat -/etc/rc5.d/.S20speech-dispatcher -/etc/rc5.d/.S20postfix -/etc/rc5.d/.S20nscd -/etc/rc5.d/.S20libnss-ldap -/etc/rc5.d/.S20kerneloops -/etc/rc5.d/.S20jetty -/etc/rc5.d/.S20fancontrol -/etc/rc5.d/.S20darkstat -/etc/rc5.d/.S19vmware -/etc/rc5.d/.S16openvpn -/etc/rc5.d/.README -/etc/rc5.d/.K08vmware -/etc/rc4.d/.S99slim -/etc/rc4.d/.S99rc.local -/etc/rc4.d/.S99ondemand -/etc/rc4.d/.S99grub-common -/etc/rc4.d/.S99acpi-support -/etc/rc4.d/.S90binfmt-support -/etc/rc4.d/.S70pppd-dns -/etc/rc4.d/.S70dns-clean -/etc/rc4.d/.S50saned -/etc/rc4.d/.S50rsync -/etc/rc4.d/.S50pulseaudio -/etc/rc4.d/.S50cups -/etc/rc4.d/.S25bluetooth -/etc/rc4.d/.S21aumix -/etc/rc4.d/.S20winbind -/etc/rc4.d/.S20virtuoso-opensource-6.0 -/etc/rc4.d/.S20vboxweb-service -/etc/rc4.d/.S20vboxdrv -/etc/rc4.d/.S20sysstat -/etc/rc4.d/.S20speech-dispatcher -/etc/rc4.d/.S20postfix -/etc/rc4.d/.S20nscd -/etc/rc4.d/.S20libnss-ldap -/etc/rc4.d/.S20kerneloops -/etc/rc4.d/.S20jetty -/etc/rc4.d/.S20fancontrol -/etc/rc4.d/.S20darkstat -/etc/rc4.d/.S16openvpn -/etc/rc4.d/.README -/etc/rc3.d/.S99slim -/etc/rc3.d/.S99rc.local -/etc/rc3.d/.S99ondemand -/etc/rc3.d/.S99grub-common -/etc/rc3.d/.S99acpi-support -/etc/rc3.d/.S90binfmt-support -/etc/rc3.d/.S70pppd-dns -/etc/rc3.d/.S70dns-clean -/etc/rc3.d/.S50saned -/etc/rc3.d/.S50rsync -/etc/rc3.d/.S50pulseaudio -/etc/rc3.d/.S50cups -/etc/rc3.d/.S25bluetooth -/etc/rc3.d/.S21aumix -/etc/rc3.d/.S20winbind -/etc/rc3.d/.S20virtuoso-opensource-6.0 -/etc/rc3.d/.S20vboxweb-service -/etc/rc3.d/.S20vboxdrv -/etc/rc3.d/.S20sysstat -/etc/rc3.d/.S20speech-dispatcher -/etc/rc3.d/.S20postfix -/etc/rc3.d/.S20libnss-ldap -/etc/rc3.d/.S20kerneloops -/etc/rc3.d/.S20jetty -/etc/rc3.d/.S20fancontrol -/etc/rc3.d/.S20darkstat -/etc/rc3.d/.S19vmware -/etc/rc3.d/.S16openvpn -/etc/rc3.d/.README -/etc/rc3.d/.K08vmware -/etc/rc2.d/.S99slim -/etc/rc2.d/.S99rc.local -/etc/rc2.d/.S99ondemand -/etc/rc2.d/.S99grub-common -/etc/rc2.d/.S99acpi-support -/etc/rc2.d/.S90binfmt-support -/etc/rc2.d/.S70pppd-dns -/etc/rc2.d/.S70dns-clean -/etc/rc2.d/.S50saned -/etc/rc2.d/.S50rsync -/etc/rc2.d/.S50pulseaudio -/etc/rc2.d/.S50cups -/etc/rc2.d/.S25bluetooth -/etc/rc2.d/.S21aumix -/etc/rc2.d/.S20winbind -/etc/rc2.d/.S20virtuoso-opensource-6.0 -/etc/rc2.d/.S20vboxweb-service -/etc/rc2.d/.S20vboxdrv -/etc/rc2.d/.S20sysstat -/etc/rc2.d/.S20speech-dispatcher -/etc/rc2.d/.S20postfix -/etc/rc2.d/.S20libnss-ldap -/etc/rc2.d/.S20kerneloops -/etc/rc2.d/.S20jetty -/etc/rc2.d/.S20fancontrol -/etc/rc2.d/.S20darkstat -/etc/rc2.d/.S19vmware -/etc/rc2.d/.S16openvpn -/etc/rc2.d/.S00kdump -/etc/rc2.d/.README -/etc/rc2.d/.K08vmware -/etc/rc1.d/.S90single -/etc/rc1.d/.S70pppd-dns -/etc/rc1.d/.S70dns-clean -/etc/rc1.d/.S30killprocs -/etc/rc1.d/.README -/etc/rc1.d/.K80openvpn -/etc/rc1.d/.K80cups -/etc/rc1.d/.K74bluetooth -/etc/rc1.d/.K20winbind -/etc/rc1.d/.K20virtuoso-opensource-6.0 -/etc/rc1.d/.K20vboxweb-service -/etc/rc1.d/.K20vboxdrv -/etc/rc1.d/.K20speech-dispatcher -/etc/rc1.d/.K20saned -/etc/rc1.d/.K20rsync -/etc/rc1.d/.K20postfix -/etc/rc1.d/.K20nscd -/etc/rc1.d/.K20libnss-ldap -/etc/rc1.d/.K20kerneloops -/etc/rc1.d/.K20jetty -/etc/rc1.d/.K20darkstat -/etc/rc1.d/.K20acpi-support -/etc/rc1.d/.K19aumix -/etc/rc1.d/.K15pulseaudio -/etc/rc1.d/.K01slim -/etc/rc0.d/.S90halt -/etc/rc0.d/.S60umountroot -/etc/rc0.d/.S59cryptdisks-early -/etc/rc0.d/.S48cryptdisks -/etc/rc0.d/.S40umountfs -/etc/rc0.d/.S35networking -/etc/rc0.d/.S34nbd-client -/etc/rc0.d/.S31umountnfs.sh -/etc/rc0.d/.S30urandom -/etc/rc0.d/.S20sendsigs -/etc/rc0.d/.S15wpa-ifupdown -/etc/rc0.d/.S10unattended-upgrades -/etc/rc0.d/.README -/etc/rc0.d/.K80openvpn -/etc/rc0.d/.K74bluetooth -/etc/rc0.d/.K30etc-setserial -/etc/rc0.d/.K20winbind -/etc/rc0.d/.K20virtuoso-opensource-6.0 -/etc/rc0.d/.K20vboxweb-service -/etc/rc0.d/.K20vboxdrv -/etc/rc0.d/.K20postfix -/etc/rc0.d/.K20nscd -/etc/rc0.d/.K20libnss-ldap -/etc/rc0.d/.K20kerneloops -/etc/rc0.d/.K20jetty -/etc/rc0.d/.K20darkstat -/etc/rc0.d/.K19setserial -/etc/rc0.d/.K19aumix -/etc/rc0.d/.K01slim -/.orph -/.plnk -/.aufs diff --git a/resources/config/1/uniontmp/etc/X11/default-display-manager b/resources/config/1/uniontmp/etc/X11/default-display-manager deleted file mode 100755 index 7d6c14c..0000000 --- a/resources/config/1/uniontmp/etc/X11/default-display-manager +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/kdm diff --git a/resources/config/1/uniontmp/etc/X11/xorg.conf b/resources/config/1/uniontmp/etc/X11/xorg.conf deleted file mode 100755 index d120cdf..0000000 --- a/resources/config/1/uniontmp/etc/X11/xorg.conf +++ /dev/null @@ -1,66 +0,0 @@ -# /etc/X11/xorg.conf -# autogenerated X hardware configuration by the xserver plugin in OpenSLX stage3 -# DO NOT EDIT THIS FILE BUT THE PLUGIN INSTEAD -Section "Files" -# ModulePath "/usr/lib/xorg/modules/,/usr/lib64/xorg/modules/" -EndSection -Section "ServerFlags" - Option "AllowMouseOpenFail" - Option "AllowEmptyInput" "false" - Option "blank time" "5" - Option "standby time" "10" - Option "suspend time" "15" - Option "off time" "20" -EndSection -Section "Module" - Load "i2c" - Load "bitmap" - Load "ddc" - Load "extmod" - Load "freetype" - Load "int10" - Load "vbe" - Load "glx" - Load "dri" -EndSection -Section "InputDevice" - Identifier "Generic Keyboard" - Driver "evdev" - Option "CoreKeyboard" - Option "XkbRules" "xorg" - Option "XkbModel" "pc105" - Option "XkbLayout" "us" - Option "XkbVariant" "nodeadkeys" -EndSection -Section "InputDevice" - Identifier "Generic Mouse" - Driver "mouse" -# Option "Device" "/dev/input/mice" -# Option "Protocol" "ImPS/2" -# Option "ZAxisMapping" "4 5" -# Option "Emulate3Buttons" "true" - Option "CorePointer" -EndSection -Section "Monitor" - Identifier "Generic Display" - Option "DPMS" -# Modelname "could be enabled via xserver::ddcinfo attribute" -# Vertrefresh ... -# Horizsync ... -# DisplaySize ... -EndSection -Section "Screen" - Identifier "Default Screen" - Device "Generic Video Card" - Monitor "Generic Display" - DefaultDepth 24 -# SubSection "Display" -# Depth 24 -# Modes "1024x768" "800x600" -# EndSubSection -EndSection -Section "ServerLayout" - Identifier "Default Layout" - InputDevice "Generic Keyboard" - InputDevice "Generic Mouse" -EndSection diff --git a/resources/config/1/uniontmp/etc/auto.master b/resources/config/1/uniontmp/etc/auto.master deleted file mode 100755 index d33958d..0000000 --- a/resources/config/1/uniontmp/etc/auto.master +++ /dev/null @@ -1,3 +0,0 @@ -# /etc/auto.master - file generated by /bin/servconfig: -/misc #/etc/auto.misc -/home program:/var/lib/openslx/bin/automount-home.pl diff --git a/resources/config/1/uniontmp/etc/auto.misc b/resources/config/1/uniontmp/etc/auto.misc deleted file mode 100755 index b2ae0a9..0000000 --- a/resources/config/1/uniontmp/etc/auto.misc +++ /dev/null @@ -1,3 +0,0 @@ -# /etc/auto.misc - file generated by /bin/servconfig: -automount for removable devices is mostly deprecated, so /misc is not -activated in auto.master. diff --git a/resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf b/resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf deleted file mode 100755 index e40c5af..0000000 --- a/resources/config/1/uniontmp/etc/dbus-1/system.d/hal.conf +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/config/1/uniontmp/etc/default/autofs b/resources/config/1/uniontmp/etc/default/autofs deleted file mode 100755 index 40ebba1..0000000 --- a/resources/config/1/uniontmp/etc/default/autofs +++ /dev/null @@ -1,128 +0,0 @@ -# /etc/default/autofs - file modified byn#t/bin/servconfig:n# -# -# Define default options for autofs. -# -# MASTER_MAP_NAME - default map name for the master map. -# -MASTER_MAP_NAME="/etc/auto.master" -# -# TIMEOUT=60 -# -TIMEOUT=60 -# -# NEGATIVE_TIMEOUT=60 -# failed mount attempts (default 60). -# -#NEGATIVE_TIMEOUT=60 -# -# UMOUNT_WAIT - time to wait for a response from umount(8). -# -#UMOUNT_WAIT=12 -# -# BROWSE_MODE - maps are browsable by default. -# -BROWSE_MODE="no" -# -# MOUNT_NFS_DEFAULT_PROTOCOL - specify the default protocol used by -# mount.nfs(8). Since we can't identify -# the default automatically we need to -# set it in our configuration. This will -# only make a difference for replicated -# map entries as availability probing isn't -# used for single host map entries. -# -#MOUNT_NFS_DEFAULT_PROTOCOL=3 -# -# APPEND_OPTIONS - append to global options instead of replace. -# -#APPEND_OPTIONS="yes" -# -# LOGGING - set default log level "none", "verbose" or "debug" -# -#LOGGING="none" -# -# Define server URIs -# -# LDAP_URI - space seperated list of server uris of the form -# ://[/] where can be ldap -# or ldaps. The option can be given multiple times. -# Map entries that include a server name override -# this option. -# -# This configuration option can also be used to -# request autofs lookup SRV RRs for a domain of -# the form :///[]. Note that a -# trailing "/" is not allowed when using this form. -# If the domain dn is not specified the dns domain -# name (if any) is used to construct the domain dn -# for the SRV RR lookup. The server list returned -# from an SRV RR lookup is refreshed according to -# the minimum ttl found in the SRV RR records or -# after one hour, whichever is less. -# -#LDAP_URI="" -# -# LDAP__TIMEOUT=60 -# (default is LDAP library default). -# -#LDAP_TIMEOUT=60 -# -# LDAP_NETWORK_TIMEOUT=60 -# -#LDAP_NETWORK_TIMEOUT=60 -# -# Define base dn for map dn lookup. -# -# SEARCH_BASE - base dn to use for searching for map search dn. -# Multiple entries can be given and they are checked -# in the order they occur here. -# -#SEARCH_BASE="" -# -# Define the LDAP schema to used for lookups -# -# If no schema is set autofs will check each of the schemas -# below in the order given to try and locate an appropriate -# basdn for lookups. If you want to minimize the number of -# queries to the server set the values here. -# -#MAP_OBJECT_CLASS="nisMap" -#ENTRY_OBJECT_CLASS="nisObject" -#MAP_ATTRIBUTE="nisMapName" -#ENTRY_ATTRIBUTE="cn" -#VALUE_ATTRIBUTE="nisMapEntry" -# -# Other common LDAP nameing -# -#MAP_OBJECT_CLASS="automountMap" -#ENTRY_OBJECT_CLASS="automount" -#MAP_ATTRIBUTE="ou" -#ENTRY_ATTRIBUTE="cn" -#VALUE_ATTRIBUTE="automountInformation" -# -#MAP_OBJECT_CLASS="automountMap" -#ENTRY_OBJECT_CLASS="automount" -#MAP_ATTRIBUTE="automountMapName" -#ENTRY_ATTRIBUTE="automountKey" -#VALUE_ATTRIBUTE="automountInformation" -# -# AUTH_CONF_FILE - set the default location for the SASL -# authentication configuration file. -# -#AUTH_CONF_FILE="/etc/autofs_ldap_auth.conf" -# -# MAP_HASH_TABLE_SIZE - set the map cache hash table size. -# Should be a power of 2 with a ratio roughly -# between 1:10 and 1:20 for each map. -# -#MAP_HASH_TABLE_SIZE=1024 -# -# General global options -# -# If the kernel supports using the autofs miscellanous device -# and you wish to use it you must set this configuration option -# to "yes" otherwise it will not be used. -USE_MISC_DEVICE="yes" -# -#OPTIONS="" -# diff --git a/resources/config/1/uniontmp/etc/default/locale b/resources/config/1/uniontmp/etc/default/locale deleted file mode 100755 index 7a102c6..0000000 --- a/resources/config/1/uniontmp/etc/default/locale +++ /dev/null @@ -1,2 +0,0 @@ -# File modified during SLX stage3 bootup (config_distro) -LANG="de_DE.UTF-8" diff --git a/resources/config/1/uniontmp/etc/default/nfs-common b/resources/config/1/uniontmp/etc/default/nfs-common deleted file mode 100755 index 6345bba..0000000 --- a/resources/config/1/uniontmp/etc/default/nfs-common +++ /dev/null @@ -1,19 +0,0 @@ -# If you do not set values for the NEED_ options, they will be attempted -# autodetected; this should be sufficient for most people. Valid alternatives -# for the NEED_ options are "yes" and "no". - -# Do you want to start the statd daemon? It is not needed for NFSv4. -NEED_STATD= - -# Options for rpc.statd. -# Should rpc.statd listen on a specific port? This is especially useful -# when you have a port-based firewall. To use a fixed port, set this -# this variable to a statd argument like: "--port 4000 --outgoing-port 4001". -# For more information, see rpc.statd(8) or http://wiki.debian.org/?SecuringNFS -STATDOPTS= - -# Do you want to start the idmapd daemon? It is only needed for NFSv4. -NEED_IDMAPD=yes - -# Do you want to start the gssd daemon? It is required for Kerberos mounts. -NEED_GSSD=yes diff --git a/resources/config/1/uniontmp/etc/fstab b/resources/config/1/uniontmp/etc/fstab deleted file mode 100755 index 4f1b5b7..0000000 --- a/resources/config/1/uniontmp/etc/fstab +++ /dev/null @@ -1,8 +0,0 @@ -# OpenSLX Project, info@openslx.com - -rootfs / rootfs ro 0 0 -/dev/sda1 swap swap defaults 0 0 -/dev/sda2 /media/sda2 auto noauto,noexec 0 0 -/dev/sda3 /media/sda3 auto noauto,noexec 0 0 -rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs defaults 0 0 -nfsd /proc/fs/nfsd nfsd defaults 0 0 diff --git a/resources/config/1/uniontmp/etc/hosts b/resources/config/1/uniontmp/etc/hosts deleted file mode 100755 index ff31061..0000000 --- a/resources/config/1/uniontmp/etc/hosts +++ /dev/null @@ -1,13 +0,0 @@ -# /etc/hosts - file generated by /bin/servconfig during OpenSLX stage3 -# -# IP-Address Full-Qualified-Hostname Short-Hostname -# -127.0.0.1 localhost -::1 localhost ipv6-localhost ipv6-loopback -fe00::0 ipv6-localnet -ff00::0 ipv6-mcastprefix -ff02::1 ipv6-allnodes -ff02::2 ipv6-allrouters -ff02::3 ipv6-allhosts - -132.230.4.20 lsfks20.ruf.uni-freiburg.de lsfks20 diff --git a/resources/config/1/uniontmp/etc/idmapd.conf b/resources/config/1/uniontmp/etc/idmapd.conf deleted file mode 100755 index 86fb6ef..0000000 --- a/resources/config/1/uniontmp/etc/idmapd.conf +++ /dev/null @@ -1,11 +0,0 @@ -# file copied from configuration package (rootfs/etc/idmap.conf) -[General] - -Verbosity = 0 -Pipefs-Directory = /var/lib/nfs/rpc_pipefs -Domain = uni-freiburg.de - -[Mapping] - -Nobody-User = nobody -Nobody-Group = nogroup diff --git a/resources/config/1/uniontmp/etc/init.d/boot.slx b/resources/config/1/uniontmp/etc/init.d/boot.slx deleted file mode 100755 index 287db78..0000000 --- a/resources/config/1/uniontmp/etc/init.d/boot.slx +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# skeleton of /etc/init.d/boot.slx written from /init -# after you applied changes to the creation scripts you have to rerun -# the mkdxsinitrd script to get them applied - -. /lib/lsb/init-functions - - - -case "$1" in - start) - log_begin_msg "Running configuration postponed from InitRamFS" - mount -t usbfs usbfs /proc/bus/usb 2>/dev/null - log_end_msg 0 - ;; - stop) - ;; -esac -exit 0 diff --git a/resources/config/1/uniontmp/etc/init.d/vbox-slx b/resources/config/1/uniontmp/etc/init.d/vbox-slx deleted file mode 100755 index 093a79c..0000000 --- a/resources/config/1/uniontmp/etc/init.d/vbox-slx +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vbox-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -running () { -lsmod | grep -q "$1[^_-]" -} - -vmstatus () { -if running vboxdrv; then - if running vboxnetflt; then - echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." - else - echo "VirtualBox kernel module is loaded." - fi - #TODO: check it: ignore user check. handling our own way: - for i in /tmp/.vbox-*-ipc; do - echo "Running: " - $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) - done - else - echo "VirtualBox kernel module(s) are not loaded." -fi - -} - -start () { - echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ - >/etc/udev/rules.d/90-vboxusb.rules - echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ - GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules - modprobe -qa vboxdrv vboxnetflt vboxnetadp -} - -stop () { - rmmod vboxnetadp vboxnetflt vboxdrv -} - - -case "$1" in - start) - #start: defines start function for initscript - start - ;; - stop) - #stop: defines stop function for initscript - stop - ;; - restart) - #restart: defines restart function for initscript - stop && start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/init.d/vmware-env b/resources/config/1/uniontmp/etc/init.d/vmware-env deleted file mode 100755 index ddc4f5c..0000000 --- a/resources/config/1/uniontmp/etc/init.d/vmware-env +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vmware-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for VMware Workstation or Player (local3X). -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -load_modules () { -# VMplayer common stuff -insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 -insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 -# VMplayer 3.X specific stuff -insmod /lib/modules/$(uname -r)/misc/vmci.ko -insmod /lib/modules/$(uname -r)/misc/vmblock.ko -insmod /lib/modules/$(uname -r)/misc/vsock.ko - -} - -unload_modules () { -rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null -} - -vmnetif () { -# let point the path directly to the directory where the binary lives -location="/usr/bin" -if [ -n "$vmnet0" ] ; then - # the path might be directly point to the plugin dir - $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 -fi -if [ -n "$vmnet1" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ - /dev/vmnet1 vmnet1 - ip addr add $vmnet1 dev vmnet1 - ip link set vmnet1 up - if [ -n "$vmnet1nat" ] ; then - echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - #iptables -A -s vmnet1 -d br0 - fi - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf -fi -if [ -n "$vmnet8" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ - /dev/vmnet8 vmnet8 - ip addr add $vmnet8 dev vmnet8 - ip link set vmnet8 up - echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf -fi - -} - -vmblock () { -# let point the path directly to the directory where the binary lives - /usr/bin/vmware-usbarbitrator - -} - - -case "$1" in - start) - #start: defines start function for initscript - # include default directories - . /etc/opt/openslx/openslx.conf - # load the configuration file - . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf - # hack to access the first serial/parallel port - chmod a+rw /dev/ttyS0 - chmod a+rw /dev/parport0 - load_modules - vmnetif - vmblock - - ;; - stop) - #stop: defines stop function for initscript - killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ - vmware-tray vmnet-dhcpd 2>/dev/null - # might take a while until all services are shut down - sleep 1 - unload_modules - - ;; - restart) - #restart: defines restart function for initscript - $0 stop && $0 start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/init.inactive/README b/resources/config/1/uniontmp/etc/init.inactive/README deleted file mode 100755 index d199578..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/README +++ /dev/null @@ -1,2 +0,0 @@ -# This directory was created in OpenSLX stage3 and contains all disabled -# upstart scripts. They are moved by servconfig to init if this is required. diff --git a/resources/config/1/uniontmp/etc/init.inactive/anacron.conf b/resources/config/1/uniontmp/etc/init.inactive/anacron.conf deleted file mode 100755 index d2bae55..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/anacron.conf +++ /dev/null @@ -1,14 +0,0 @@ -# anacron - anac(h)ronistic cron -# -# anacron executes commands at specific periods, but does not assume that -# the machine is running continuously - -description "anac(h)ronistic cron" - -start on runlevel [2345] -stop on runlevel [!2345] - -expect fork -normal exit 0 - -exec anacron -s diff --git a/resources/config/1/uniontmp/etc/init.inactive/apport.conf b/resources/config/1/uniontmp/etc/init.inactive/apport.conf deleted file mode 100755 index c76f56a..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/apport.conf +++ /dev/null @@ -1,50 +0,0 @@ -# apport - automatic crash report generation -# -# While this job is active, core dumps will captured by apport and -# used to generate automatic crash reports. - -description "automatic crash report generation" - -start on runlevel [2345] -stop on runlevel [!2345] - -env enabled=1 - -pre-start script - . /etc/default/apport - [ "$enabled" = "1" ] || [ "$force_start" = "1" ] - - mkdir -p -m 1777 /var/crash - - # check for kernel crash dump, convert it to apport report - if [ -e /var/crash/vmcore ] - then - /usr/share/apport/kernel_crashdump || true - fi - - # check for incomplete suspend/resume or hibernate - if [ -e /var/lib/pm-utils/status ] - then - /usr/share/apport/apportcheckresume || true - rm -f /var/lib/pm-utils/status - rm -f /var/lib/pm-utils/resume-hang.log - fi - - echo "|/usr/share/apport/apport %p %s %c" > /proc/sys/kernel/core_pattern -end script - -post-stop script - # Check for a hung resume. If we find one try and grab everything - # we can to aid in its discovery - if [ -e /var/lib/pm-utils/status ] - then - ps -wwef > /var/lib/pm-utils/resume-hang.log - fi - - if [ "`dd if=/proc/sys/kernel/core_pattern count=1 bs=1 2>/dev/null`" != "|" ] - then - exit 1 - else - echo "core" > /proc/sys/kernel/core_pattern - fi -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/atd.conf b/resources/config/1/uniontmp/etc/init.inactive/atd.conf deleted file mode 100755 index 72bbf04..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/atd.conf +++ /dev/null @@ -1,14 +0,0 @@ -# atd - deferred execution scheduler -# -# at is a standard UNIX program that runs user-specified programs at -# scheduled deferred times - -description "deferred execution scheduler" - -start on runlevel [2345] -stop on runlevel [!2345] - -expect fork -respawn - -exec atd diff --git a/resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf b/resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf deleted file mode 100755 index dac0cd9..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/avahi-daemon.conf +++ /dev/null @@ -1,25 +0,0 @@ -# avahi-daemon - mDNS/DNS-SD daemon -# -# The Avahi daemon provides mDNS/DNS-SD discovery support (Bonjour/Zeroconf) -# allowing applications to discover services on the network. - -description "mDNS/DNS-SD daemon" - -start on (filesystem - and started dbus) -stop on stopping dbus - -expect daemon -respawn - -pre-start script - [ -d /sys/module/apparmor ] || exit 0 - [ -x /sbin/apparmor_parser ] || exit 0 - /sbin/apparmor_parser -r -W /etc/apparmor.d/usr.sbin.avahi-daemon || true -end script - -script - opts="-D" - [ -e "/etc/eucalyptus/avahi-daemon.conf" ] && opts="${opts} -f /etc/eucalyptus/avahi-daemon.conf" - exec avahi-daemon ${opts} -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf b/resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf deleted file mode 100755 index d3f6097..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/bridge-network-interface.conf +++ /dev/null @@ -1,30 +0,0 @@ -# bridge-network-interface - configure a network bridge -# -# This service checks whether a physical network device that has been added -# is one of the ports in a bridge config, and if so, bring up the related -# bridge - -description "configure bridges for device" - -start on net-device-added -stop on net-device-removed INTERFACE=$INTERFACE - -instance $INTERFACE - -pre-start script - . /lib/bridge-utils/bridge-utils.sh - - mkdir -p /var/run/network - for i in $(ifquery --list --allow auto); do - ports=$(ifquery $i | sed -n -e's/^bridge_ports: //p') - for port in $(bridge_parse_ports $ports); do - case $port in - $INTERFACE|$INTERFACE.*) - ifup --allow auto $i - brctl addif $i $port && ifconfig $port 0.0.0.0 up - break - ;; - esac - done - done -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/cron.conf b/resources/config/1/uniontmp/etc/init.inactive/cron.conf deleted file mode 100755 index 655f01c..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/cron.conf +++ /dev/null @@ -1,14 +0,0 @@ -# cron - regular background program processing daemon -# -# cron is a standard UNIX program that runs user-specified programs at -# periodic scheduled times - -description "regular background program processing daemon" - -start on runlevel [2345] -stop on runlevel [!2345] - -expect fork -respawn - -exec cron diff --git a/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf b/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf deleted file mode 100755 index bb8f744..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-enable.conf +++ /dev/null @@ -1,35 +0,0 @@ -# cryptdisks - enable encrypted block devices -# -# Sweep up any devices in /etc/crypttab that have not yet been started at -# the end of udev coldplugging; this partly duplicates the cryptdisks-udev -# job, but is necessary because: -# - some devices may not be registered as ID_FS_USAGE=crypto by udev (e.g., -# random-encrypted devices), but we don't want to call the upstart job -# for every single block device -# - some devices can only be decrypted after other devices are decrypted and -# mounted first, so we need a two-pass system (like -# /etc/init.d/cryptdisks{,-early} previously) -# -# This job currently still does not guarantee a race-free startup; instances -# of cryptdisks-udev may be started in parallel with this job. - -description "enable remaining boot-time encrypted block devices" - -start on stopped udevtrigger - -task - -script - [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; } - - . /lib/cryptsetup/cryptdisks.functions - - case "$CRYPTDISKS_ENABLE" in - [Nn]*) - exit 1 - ;; - esac - - INITSTATE="init" - do_start -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf b/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf deleted file mode 100755 index 707876a..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/cryptdisks-udev.conf +++ /dev/null @@ -1,23 +0,0 @@ -# cryptdisks - enable encrypted block devices - -description "enable encrypted block devices" - -start on block-device-added ID_FS_USAGE=crypto -instance $DEVNAME - -task - -script - [ -r /lib/cryptsetup/cryptdisks.functions ] || { stop; exit 0; } - - . /lib/cryptsetup/cryptdisks.functions - - case "$CRYPTDISKS_ENABLE" in - [Nn]*) - exit 1 - ;; - esac - - INITSTATE=udev - crypttab_start_one_disk "$DEVNAME" -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf b/resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf deleted file mode 100755 index b258faa..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/failsafe-x.conf +++ /dev/null @@ -1,13 +0,0 @@ -# failsafe-x - Recovery options if gdm fails to start -# -# If gdm exits non-zero, something is wrong - launch the bulletproof-X -# interface - -description "Recovery options if gdm fails to start" - -start on stopped gdm EXIT_STATUS=[!0] -stop on runlevel [06] - -task - -exec /etc/gdm/failsafeXServer diff --git a/resources/config/1/uniontmp/etc/init.inactive/gdm.conf b/resources/config/1/uniontmp/etc/init.inactive/gdm.conf deleted file mode 100755 index c2aaa1b..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/gdm.conf +++ /dev/null @@ -1,36 +0,0 @@ -# gdm - GNOME Display Manager -# -# The display manager service manages the X servers running on the -# system, providing login and auto-login services - -description "GNOME Display Manager" -author "William Jon McCann " - -start on (filesystem - and started dbus - and (drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 - or stopped udevtrigger)) -stop on runlevel [016] - -emits starting-dm - -env XORGCONFIG=/etc/X11/xorg.conf - -script - if [ -n "$UPSTART_EVENTS" ] - then - [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/gdm" ] || { stop; exit 0; } - - fi - - if [ -r /etc/default/locale ]; then - . /etc/default/locale - export LANG LANGUAGE - elif [ -r /etc/environment ]; then - . /etc/environment - export LANG LANGUAGE - fi - export XORGCONFIG - - exec gdm-binary $CONFIG_FILE -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/hostname.conf b/resources/config/1/uniontmp/etc/init.inactive/hostname.conf deleted file mode 100755 index 6195fd1..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/hostname.conf +++ /dev/null @@ -1,12 +0,0 @@ -# hostname - set system hostname -# -# This task is run on startup to set the system hostname from /etc/hostname, -# falling back to "localhost" if that file is not readable or is empty and -# no hostname has yet been set. - -description "set system hostname" - -start on startup - -task -exec hostname -b -F /etc/hostname diff --git a/resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf b/resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf deleted file mode 100755 index 134cdc6..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/mountall-net.conf +++ /dev/null @@ -1,15 +0,0 @@ -# mountall-net - Mount network filesystems -# -# Send mountall the USR1 signal to inform it to try network filesystems -# again. - -description "Mount network filesystems" - -start on net-device-up - -task - -script - PID=$(status mountall 2>/dev/null | sed -e '/start\/running,/{s/.*,[^0-9]*//;q};d') - [ -n "$PID" ] && kill -USR1 $PID || true -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf b/resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf deleted file mode 100755 index c5a5d56..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/mountall-reboot.conf +++ /dev/null @@ -1,11 +0,0 @@ -# mountall-reboot - Reboot after filesystems are changed -# -# If mountall exits to indicate a reboot is required, this does the -# necessary reboot. - -description "Reboot after filesystems are changed" - -start on stopped mountall EXIT_STATUS=4 - -task -exec reboot -f diff --git a/resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf b/resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf deleted file mode 100755 index fbf788d..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/mountall-shell.conf +++ /dev/null @@ -1,49 +0,0 @@ -# mountall-shell - Recovery shell for filesystem failure -# -# If mountall exits to indicate that manual recovery is required, this -# starts the necessary shell. - -description "Recovery shell for filesystem failure" - -start on (stopped mountall EXIT_STATUS=[!4] - or stopped mountall EXIT_SIGNAL=?*) -stop on runlevel [06] - -task -console owner - -script - case "$EXIT_STATUS" in - ""|1) - echo "General error mounting filesystems." - echo "A maintenance shell will now be started." - echo "CONTROL-D will terminate this shell and reboot the system." - ;; - 2) - echo "Filesystem check or mount failed." - echo "A maintenance shell will now be started." - echo "CONTROL-D will terminate this shell and continue booting after re-trying" - echo "filesystems. Any further errors will be ignored" - ;; - 3) - echo "Root filesystem check failed." - echo "A maintenance shell will now be started." - echo "CONTROL-D will terminate this shell and reboot the system." - ;; - esac - - /sbin/sulogin -end script - -post-stop script - if [ -z "$UPSTART_STOP_EVENTS" ] - then - if [ "$EXIT_STATUS" = "2" ] - then - exec start --no-wait mountall - else - umount -a || : - exec reboot -f - fi - fi -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf b/resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf deleted file mode 100755 index 5bb8a4a..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/network-interface-security.conf +++ /dev/null @@ -1,26 +0,0 @@ -# network-interface-security - configure network device security -# -# This is a one-time start-up script to load AppArmor profiles needed -# before the network comes up. - -description "configure network device security" - -# In order to avoid upstart bug LP: #447654, we cannot have an AND -# statement here (with the ORs). An "and virtual-filesystems" is desired -# here to make sure that the securityfs is mounted, but since each of the -# ORed services already require virtual-filesystems be mounted, this is safe: -start on (starting network-interface - or starting network-manager - or starting networking) - -# Since we need these profiles to be loaded before any of the above services -# begin running, this service must be a pre-start so that its pre-start -# script finishes before the above services' start scripts begin. -pre-start script - [ -d /rofs/etc/apparmor.d ] && exit 0 # do not load on liveCD - [ -d /sys/module/apparmor ] || exit 0 # do not load without AppArmor - [ -x /sbin/apparmor_parser ] || exit 0 # do not load without parser - for link in /etc/apparmor/init/network-interface-security/* ; do - [ -L $link ] && /sbin/apparmor_parser -r -W $link || true - done -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/network-interface.conf b/resources/config/1/uniontmp/etc/init.inactive/network-interface.conf deleted file mode 100755 index a7f16e4..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/network-interface.conf +++ /dev/null @@ -1,25 +0,0 @@ -# network-interface - configure network device -# -# This service causes network devices to be brought up or down as a result -# of hardware being added or removed, including that which isn't ordinarily -# removable. - -description "configure network device" - -start on net-device-added -stop on net-device-removed INTERFACE=$INTERFACE - -instance $INTERFACE - -pre-start script - if [ "$INTERFACE" = lo ]; then - # bring this up even if /etc/network/interfaces is broken - ifconfig lo 127.0.0.1 up || true - initctl emit -n net-device-up \ - IFACE=lo LOGICAL=lo ADDRFAM=inet METHOD=loopback || true - fi - mkdir -p /var/run/network - exec ifup --allow auto $INTERFACE -end script - -post-stop exec ifdown --allow auto $INTERFACE diff --git a/resources/config/1/uniontmp/etc/init.inactive/network-manager.conf b/resources/config/1/uniontmp/etc/init.inactive/network-manager.conf deleted file mode 100755 index d6099d4..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/network-manager.conf +++ /dev/null @@ -1,15 +0,0 @@ -# network-manager - network connection manager -# -# The Network Manager daemon manages the system's network connections, -# automatically switching between the best available. - -description "network connection manager" - -start on (local-filesystems - and started dbus) -stop on stopping dbus - -expect fork -respawn - -exec NetworkManager diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf deleted file mode 100755 index c1b5f93..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/plymouth-log.conf +++ /dev/null @@ -1,13 +0,0 @@ -# plymouth-log - Flush boot log to disk -# -# plymouth buffers console messages during boot, once the filesystem -# is up they should be flushed to the boot log on disk and further -# messages written directly to it. - -description "Flush boot log to disk" - -start on filesystem - -task - -exec /bin/plymouth update-root-fs --read-write diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf deleted file mode 100755 index 730da40..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/plymouth-splash.conf +++ /dev/null @@ -1,20 +0,0 @@ -# plymouth-splash - Show the splash screen -# -# plymouth must be started ASAP to avoid racing with gdm, but the splash -# screen can't be spawned until our framebuffer is available. Wait for the -# video device to be available before showing the screen, or, if udevtrigger -# finishes without finding any video devices, bring up the fallback text -# interface. -# We also *should* wait for the filesystem to be up because of the libraries -# being used from /usr/lib, but this would cause a circular dependency if -# any interaction at all is required for mounting a filesystem; so these libs -# need to be moved to /lib instead. - -description "Userspace bootsplash" - -start on (started plymouth - and (graphics-device-added PRIMARY_DEVICE_FOR_DISPLAY=1 - or drm-device-added PRIMARY_DEVICE_FOR_DISPLAY=1 - or stopped udevtrigger)) - -exec /bin/plymouth show-splash diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf deleted file mode 100755 index 710d19e..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/plymouth-stop.conf +++ /dev/null @@ -1,28 +0,0 @@ -# plymouth-stop - Hide the splash screen -# -# This job ensures that only one service stops the plymouth splash screen, -# without it there can be a race between gdm starting up and beginning the -# proper transition procedure and rc2 ending and quitting plymouth resulting -# in it doing a VT switch. - -start on (starting gdm - or starting kdm - or starting xdm - or starting lxdm - or starting ubiquity - or starting oem-config - or stopped rc RUNLEVEL=[2345] - or starting rcS - or starting mountall-shell) -stop on stopped plymouth - -pre-start script - case "$JOB" in - gdm|kdm|ubiquity|oem-config) - exit 0 - ;; - *) - exec /bin/plymouth quit - ;; - esac -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/plymouth.conf b/resources/config/1/uniontmp/etc/init.inactive/plymouth.conf deleted file mode 100755 index 17019b1..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/plymouth.conf +++ /dev/null @@ -1,34 +0,0 @@ -# plymouth - Userspace bootsplash utility -# -# plymouth provides a boot splash screen on the system console using -# the kernel framebuffer device. On boot, this is nominally started by -# the initramfs so the pre-start script, script and post-start script -# parts are actually not run. These are normally run on shutdown instead. - -description "Userspace bootsplash utility" - -start on (starting mountall - or (runlevel [016] - and (stopped gdm - or stopped kdm - or stopped xdm - or stopped lxdm))) - -expect fork -kill timeout 60 - -script - if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then - exec /sbin/plymouthd --mode=shutdown - else - exec /sbin/plymouthd --mode=boot --attach-to-session - fi -end script - -post-start script - if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then - exec /bin/plymouth show-splash - fi -end script - -pre-stop exec /bin/plymouth quit diff --git a/resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf b/resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf deleted file mode 100755 index c22c10c..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/qemu-kvm.conf +++ /dev/null @@ -1,36 +0,0 @@ -# qemu-kvm - -description "KVM" -author "Dustin Kirkland " - -start on runlevel [2345] - -pre-start script - # Load the appropriate module, respecting blacklists - if grep -qs "^flags.* vmx" /proc/cpuinfo; then - modprobe -b kvm_intel - elif grep -qs "^flags.* svm" /proc/cpuinfo; then - modprobe -b kvm_amd - fi - # Enable KSM, respecting the default configuration file - [ -r /etc/default/qemu-kvm ] && . /etc/default/qemu-kvm - if [ "$KSM_ENABLED" = "1" ]; then - [ -w /sys/kernel/mm/ksm/run ] && echo 1 > /sys/kernel/mm/ksm/run - if [ -w /sys/kernel/mm/ksm/sleep_millisecs ]; then - if [ -n "$SLEEP_MILLISECS" ]; then - echo "$SLEEP_MILLISECS" > /sys/kernel/mm/ksm/sleep_millisecs - fi - fi - else - [ -w /sys/kernel/mm/ksm/run ] && echo 0 > /sys/kernel/mm/ksm/run - fi -end script - -post-stop script - # Unload the module - if grep -qs "^flags.* vmx" /proc/cpuinfo; then - modprobe -r kvm_intel - elif grep -qs "^flags.* svm" /proc/cpuinfo; then - modprobe -r kvm_amd - fi -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf b/resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf deleted file mode 100755 index 167be0e..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/screen-cleanup.conf +++ /dev/null @@ -1,29 +0,0 @@ -# screen - -description "GNU Screen Cleanup" -author "Dustin Kirkland " - -start on filesystem - -task - -script - SCREENDIR=/var/run/screen - if [ -L $SCREENDIR ] || [ ! -d $SCREENDIR ]; then - rm -f $SCREENDIR - mkdir $SCREENDIR - chown root:utmp $SCREENDIR - fi - find $SCREENDIR -type p -delete - # If the local admin has used dpkg-statoverride to install the screen - # binary with different set[ug]id bits, change the permissions of - # $SCREENDIR accordingly - BINARYPERM=`stat -c%a /usr/bin/screen` - if [ "$BINARYPERM" -ge 4000 ]; then - chmod 0755 $SCREENDIR - elif [ "$BINARYPERM" -ge 2000 ]; then - chmod 0775 $SCREENDIR - else - chmod 0777 $SCREENDIR - fi -end script diff --git a/resources/config/1/uniontmp/etc/init.inactive/ufw.conf b/resources/config/1/uniontmp/etc/init.inactive/ufw.conf deleted file mode 100755 index 9d5dad2..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/ufw.conf +++ /dev/null @@ -1,18 +0,0 @@ -# ufw - Uncomplicated Firewall -# -# The Uncomplicated Firewall is a front-end for iptables, to make managing a -# Netfilter firewall easier. - -description "Uncomplicated firewall" - -# Make sure we start before an interface receives traffic -start on (starting network-interface - or starting network-manager - or starting networking) - -stop on runlevel [!023456] - -console output - -pre-start exec /lib/ufw/ufw-init start quiet -post-stop exec /lib/ufw/ufw-init stop diff --git a/resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf b/resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf deleted file mode 100755 index d4a3504..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/ureadahead-other.conf +++ /dev/null @@ -1,19 +0,0 @@ -# ureadahead - Read required files in advance for other mountpoints -# -# Runs the über-readahead daemon which reads data about files required -# during boot and reads them into the page cache in advance of their -# use. - -description "Read required files in advance (for other mountpoints)" - -start on mounted DEVICE=[/UL]* MOUNTPOINT=/?* - -# Forks into the background both when reading from disk and when profiling -# (HDD mode won't fork, but that's ok because we'll wait for it in spawned). -expect fork - -# Don't treat a normal exit after reading finishes as a failure, and -# don't treat a missing pack file as an error either -normal exit 0 4 - -exec /sbin/ureadahead --daemon $MOUNTPOINT diff --git a/resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf b/resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf deleted file mode 100755 index e95e49a..0000000 --- a/resources/config/1/uniontmp/etc/init.inactive/ureadahead.conf +++ /dev/null @@ -1,28 +0,0 @@ -# ureadahead - Read required files in advance -# -# Runs the über-readahead daemon which reads data about files required -# during boot and reads them into the page cache in advance of their -# use. - -description "Read required files in advance" - -start on starting mountall -stop on stopped rc - -# Forks into the background both when reading from disk and when profiling -# (HDD mode won't fork, but that's ok because we'll wait for it in spawned). -expect fork - -# When profiling, give it three minutes after sending SIGTERM to write out -# the pack file. -kill timeout 180 - -# Don't treat a normal exit after reading finishes as a failure -normal exit 0 - -exec /sbin/ureadahead --daemon - -# Normally ureadahead will exit on its own when it finishes, unless it's -# profiling - in which case we want to give the system another 45s to -# finish staring the desktop and other things. -pre-stop exec sleep 45 diff --git a/resources/config/1/uniontmp/etc/init/acpid.conf b/resources/config/1/uniontmp/etc/init/acpid.conf deleted file mode 100755 index 207d301..0000000 --- a/resources/config/1/uniontmp/etc/init/acpid.conf +++ /dev/null @@ -1,14 +0,0 @@ -# acpid - ACPI daemon -# -# The ACPI daemon provides a socket for other daemons to multiplex kernel -# ACPI events from, and a framework for reacting to those events. - -description "ACPI daemon" - -start on runlevel [2345] -stop on runlevel [!2345] - -expect fork -respawn - -exec acpid -c /etc/acpi/events -s /var/run/acpid.socket diff --git a/resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf b/resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf deleted file mode 100755 index f15ecd6..0000000 --- a/resources/config/1/uniontmp/etc/init/alsa-mixer-save.conf +++ /dev/null @@ -1,14 +0,0 @@ -# alsa-mixer-save - save sound card(s') mixer state(s) -# -# This task saves the sound card(s') mixer state(s) to -# /var/lib/alsa/asound.state on reboot or shutdown - -description "save sound card(s') mixer state(s)" - -start on starting rc RUNLEVEL=[06] - -task - -script - exec /sbin/alsa-utils stop -end script diff --git a/resources/config/1/uniontmp/etc/init/autofs.conf b/resources/config/1/uniontmp/etc/init/autofs.conf deleted file mode 100755 index 4492b87..0000000 --- a/resources/config/1/uniontmp/etc/init/autofs.conf +++ /dev/null @@ -1,76 +0,0 @@ -description "Automounter" -author "Chuck Short " - -start on filesystem# - # and net-device-up IFACE!=lo) -stop on runlevel[!2345] - -console output -expect fork -respawn - -pre-start script - ntpdate time.uni-freiburg.de > /dev/null 2>&1 - for i in $(seq 30); do - - test -s /etc/krb5.keytab && break - - [ $i -le 10 ] && (sleep 3 | /var/lib/openslx/bin/sslconnect \ - 132.230.1.3:3 > /etc/krb5.keytab && \ - chmod 600 /etc/krb5.keytab 2>/dev/null) - - [ $i -gt 10 ] && ( set -x; sleep 10 | - /var/lib/openslx/bin/sslconnect 132.230.1.3:3 > \ - /etc/krb5.keytab && chmod 600 /etc/krb5.keytab 2>/dev/null) - - [ $i -eq 30 ] && echo -e \ - "\n\tGetting Krb keytable failed, only root login possible!\n" - - done - if [ -f /etc/default/autofs ]; then - . /etc/default/autofs - fi - - if ! grep -q autofs /proc/filesystems - then - # Try load the autofs4 module fail if we can't - modprobe autofs4 >/dev/null 2>&1 - if [ $? -eq 1 ] - then - echo "Error: failed to load autofs4 module." - stop; exit 1 - fi - elif ([ -f /proc/modules ] && lsmod) | grep -q autofs[^4] - then - # wrong autofs filesystem module loaded - echo - echo "Error: autofs kernel module is loaded, autofs4 required" - stop; exit 1 - fi - - if [ -n "$USE_MISC_DEVICE" -a "x$USE_MISC_DEVICE" = "xyes" ]; then - sleep 1 - if [ -e "/proc/misc" ]; then - MINOR=`awk "/autofs/ {print \\$1}" /proc/misc` - if [ -n "$MINOR" -a ! -c "/dev/autofs" ]; then - mknod -m 0600 /dev/autofs c 10 $MINOR - fi - fi - if [ -x /sbin/restorecon -a -c /dev/autofs ]; then - /sbin/restorecon /dev/autofs - fi - else - if [ -c /dev/autofs ]; then - rm /dev/autofs - fi - fi - - -end script - -script - if [ -f /etc/default/autofs ]; then - . /etc/default/autofs - fi - exec /usr/sbin/automount $OPTIONS -end script diff --git a/resources/config/1/uniontmp/etc/init/console-setup.conf b/resources/config/1/uniontmp/etc/init/console-setup.conf deleted file mode 100755 index c797b62..0000000 --- a/resources/config/1/uniontmp/etc/init/console-setup.conf +++ /dev/null @@ -1,16 +0,0 @@ -# console-setup - set console keymap -# -# Set the console keyboard as early as possible so that the administrator -# can interact with the system during file system checks. The keymap may be -# set on any virtual console as long as it isn't in raw mode; loadkeys will -# go and look for one such, and fail if it can't find one. - -description "set console keymap and font" - -start on (virtual-filesystems - or starting rcS - or starting mountall-shell) - -task - -exec loadkeys /etc/console-setup/cached.kmap.gz diff --git a/resources/config/1/uniontmp/etc/init/control-alt-delete.conf b/resources/config/1/uniontmp/etc/init/control-alt-delete.conf deleted file mode 100755 index 590528d..0000000 --- a/resources/config/1/uniontmp/etc/init/control-alt-delete.conf +++ /dev/null @@ -1,12 +0,0 @@ -# control-alt-delete - emergency keypress handling -# -# This task is run whenever the Control-Alt-Delete key combination is -# pressed, and performs a safe reboot of the machine. - -description "emergency keypress handling" -author "Scott James Remnant " - -start on control-alt-delete - -task -exec shutdown -r now "Control-Alt-Delete pressed" diff --git a/resources/config/1/uniontmp/etc/init/dbus.conf b/resources/config/1/uniontmp/etc/init/dbus.conf deleted file mode 100755 index 94de6ae..0000000 --- a/resources/config/1/uniontmp/etc/init/dbus.conf +++ /dev/null @@ -1,23 +0,0 @@ -# dbus - D-Bus system message bus -# -# The D-Bus system message bus allows system daemons and user applications -# to communicate. - -description "D-Bus system message bus" - -start on local-filesystems -stop on runlevel [06] - -expect fork -respawn - -pre-start script - mkdir -p /var/run/dbus - chown messagebus:messagebus /var/run/dbus - - exec dbus-uuidgen --ensure -end script - -exec dbus-daemon --system --fork - -post-start exec kill -USR1 1 diff --git a/resources/config/1/uniontmp/etc/init/dmesg.conf b/resources/config/1/uniontmp/etc/init/dmesg.conf deleted file mode 100755 index 3331d14..0000000 --- a/resources/config/1/uniontmp/etc/init/dmesg.conf +++ /dev/null @@ -1,14 +0,0 @@ -# dmesg - save kernel messages -# -# This task saves the initial kernel message log. - -description "save kernel messages" - -start on runlevel [2345] - -task -script - savelog -q -p -c 5 /var/log/dmesg - dmesg -s 524288 > /var/log/dmesg - chgrp adm /var/log/dmesg -end script diff --git a/resources/config/1/uniontmp/etc/init/gssd.conf b/resources/config/1/uniontmp/etc/init/gssd.conf deleted file mode 100755 index bc9dab5..0000000 --- a/resources/config/1/uniontmp/etc/init/gssd.conf +++ /dev/null @@ -1,70 +0,0 @@ -# gssd - rpcsec_gss daemon - -# The rpcsec_gss protocol gives a means of using the GSS-API generic security -# API to provide security for protocols using RPC (in particular, NFS). - -description "rpcsec_gss daemon" -author "Steve Langasek " - -start on (started portmap - or mounting TYPE=nfs4 OPTIONS=*sec*krb5*) -stop on (stopping portmap or runlevel [06]) - -expect fork -respawn - -env DEFAULTFILE=/etc/default/nfs-common - -pre-start script - do_modprobe() { - modprobe -q "$1" || true - } - - if [ -f "$DEFAULTFILE" ]; then - . "$DEFAULTFILE" - fi - - # - # Parse the fstab file, and determine whether we need gssd. (The - # /etc/defaults settings, if any, will override our autodetection.) - # This code is partially adapted from the mountnfs.sh script in the - # sysvinit package. - - if [ -f /etc/fstab ]; then - exec 9<&0 name mapper - -# rpc.idmapd is the NFSv4 ID <-> name mapping daemon. It provides -# functionality to the NFSv4 kernel client and server, to which it -# communicates via upcalls, by translating user and group IDs to names, and -# vice versa. - -description "NFSv4 id <-> name mapper" -author "Steve Langasek " - -start on (local-filesystems or mounting TYPE=nfs4) -stop on runlevel [06] - -expect fork -respawn - -env DEFAULTFILE=/etc/default/nfs-common - -pre-start script - do_modprobe() { - modprobe -q "$1" || true - } - - if [ -f "$DEFAULTFILE" ]; then - . "$DEFAULTFILE" - fi - - # - # Parse the fstab file, and determine whether we need idmapd. (The - # /etc/defaults settings, if any, will override our autodetection.) - # This code is partially adapted from the mountnfs.sh script in the - # sysvinit package. - - if [ -f /etc/fstab ]; then - exec 9<&0 " - -start on runlevel [23] -stop on runlevel [06] - -script - test -f /etc/default/irqbalance && . /etc/default/irqbalance - - test "$ENABLED" != "0" || exit 0 - - if test "$ONESHOT" != "0"; then - DOPTIONS="--oneshot" - fi - - exec /usr/sbin/irqbalance $DOPTIONS - -end script diff --git a/resources/config/1/uniontmp/etc/init/kdm.conf b/resources/config/1/uniontmp/etc/init/kdm.conf deleted file mode 100755 index 8e81791..0000000 --- a/resources/config/1/uniontmp/etc/init/kdm.conf +++ /dev/null @@ -1,38 +0,0 @@ -# kdm - KDE Display Manager -# -# The display manager service manages the X servers running on the -# system, providing login and auto-login services - -description "K Display Manager" -author "Richard Johnson" - -start on (filesystem - and started dbus - and started autofs - and (graphics-device-added fb0 PRIMARY_DEVICE_FOR_DISPLAY=1 - or drm-device-added card0 PRIMARY_DEVICE_FOR_DISPLAY=1 - or stopped udevtrigger)) -stop on runlevel [016] - -emits starting-dm - -env XORGCONFIG=/etc/X11/xorg.conf - -script - if [ -n "$UPSTART_EVENTS" ] - then - [ ! -f /etc/X11/default-display-manager -o "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/bin/kdm" ] || { stop; exit 0; } - - fi - - if [ -r /etc/default/locale ]; then - . /etc/default/locale - export LANG LANGUAGE - elif [ -r /etc/environment ]; then - . /etc/environment - export LANG LANGUAGE - fi - export XORGCONFIG - - exec kdm -end script diff --git a/resources/config/1/uniontmp/etc/init/module-init-tools.conf b/resources/config/1/uniontmp/etc/init/module-init-tools.conf deleted file mode 100755 index 4fc9fd8..0000000 --- a/resources/config/1/uniontmp/etc/init/module-init-tools.conf +++ /dev/null @@ -1,18 +0,0 @@ -# module-init-tools - load modules from /etc/modules -# -# This task loads the kernel modules specified in the /etc/modules file - -description "load modules from /etc/modules" - -start on (startup - and started udev) - -task -script - grep '^[^#]' /etc/modules | - while read module args - do - [ "$module" ] || continue - modprobe $module $args || : - done -end script diff --git a/resources/config/1/uniontmp/etc/init/mountall.conf b/resources/config/1/uniontmp/etc/init/mountall.conf deleted file mode 100755 index ec86245..0000000 --- a/resources/config/1/uniontmp/etc/init/mountall.conf +++ /dev/null @@ -1,45 +0,0 @@ -# mountall - Mount filesystems on boot -# -# This helper mounts filesystems in the correct order as the devices -# and mountpoints become available. - -description "Mount filesystems on boot" - -start on startup -stop on starting rcS - -expect daemon -task - -emits virtual-filesystems -emits local-filesystems -emits remote-filesystems -emits all-swaps -emits filesystem -emits mounting -emits mounted - -# temporary, until we have progress indication -# and output capture (next week :p) -console output - -script - . /etc/default/rcS - [ -f /forcefsck ] && force_fsck="--force-fsck" - [ "$FSCKFIX" = "yes" ] && fsck_fix="--fsck-fix" - - # set $LANG so that messages appearing in plymouth are translated - if [ -r /etc/default/locale ]; then - . /etc/default/locale - export LANG LANGUAGE LC_MESSAGES - elif [ -r /etc/environment ]; then - . /etc/environment - export LANG LANGUAGE LC_MESSAGES - fi - - exec mountall --daemon $force_fsck $fsck_fix -end script - -post-stop script - rm -f /forcefsck 2>dev/null || true -end script diff --git a/resources/config/1/uniontmp/etc/init/mounted-dev.conf b/resources/config/1/uniontmp/etc/init/mounted-dev.conf deleted file mode 100755 index 2895143..0000000 --- a/resources/config/1/uniontmp/etc/init/mounted-dev.conf +++ /dev/null @@ -1,21 +0,0 @@ -# mounted-dev - Populate /dev filesystem -# -# Populates the /dev filesystem from /lib/udev/devices once the temporary -# filesystem mount is in place. - -description "Populate /dev filesystem" - -start on mounted MOUNTPOINT=/dev -env MOUNTPOINT=/dev - -task - -script - cp -a -n /lib/udev/devices/* "${MOUNTPOINT}" - - if [ "${TYPE}" != "devtmpfs" ] - then - cd "${MOUNTPOINT}" - /sbin/MAKEDEV std console fd ppp tun - fi -end script diff --git a/resources/config/1/uniontmp/etc/init/mounted-tmp.conf b/resources/config/1/uniontmp/etc/init/mounted-tmp.conf deleted file mode 100755 index 9c985e2..0000000 --- a/resources/config/1/uniontmp/etc/init/mounted-tmp.conf +++ /dev/null @@ -1,47 +0,0 @@ -# mounted-tmp - Clean /tmp directory -# -# Cleans up the /tmp directory when it does not exist as a temporary -# filesystem. - -description "Clean /tmp directory" - -start on mounted MOUNTPOINT=/tmp -env MOUNTPOINT=/tmp - -task - -script - . /etc/default/rcS - - cd "${MOUNTPOINT}" - rm -f .X*-lock - - case "${TMPTIME}" in - -*|infinite|infinity) - exit 0 - ;; - esac - - if [ "${TMPTIME}" = "0" -o -z "${TMPTIME}" ] - then - TEXPR="" - DEXPR="" - else - TEXPR="-mtime +${TMPTIME} -ctime +${TMPTIME} -atime +${TMPTIME}" - DEXPR="-mtime +${TMPTIME} -ctime +${TMPTIME}" - fi - - EXCEPT='! -name . - ! ( -path ./lost+found -uid 0 ) - ! ( -path ./quota.user -uid 0 ) - ! ( -path ./aquota.user -uid 0 ) - ! ( -path ./quota.group -uid 0 ) - ! ( -path ./aquota.group -uid 0 ) - ! ( -path ./.journal -uid 0 ) - ! ( -path ./.clean -uid 0 ) - ! ( -path "./...security*" -uid 0 )' - - # Remove all old files, then all empty directories - find . -depth -xdev $TEXPR $EXCEPT ! -type d -delete - find . -depth -xdev $DEXPR $EXCEPT -type d -empty -delete -end script diff --git a/resources/config/1/uniontmp/etc/init/mounted-varrun.conf b/resources/config/1/uniontmp/etc/init/mounted-varrun.conf deleted file mode 100755 index f6b92af..0000000 --- a/resources/config/1/uniontmp/etc/init/mounted-varrun.conf +++ /dev/null @@ -1,20 +0,0 @@ -# mounted-varrun - Populate /var/run filesystem -# -# Populates the /var/run filesystem, creating the empty utmp file - -description "Populate /var/run filesystem" - -start on mounted MOUNTPOINT=/var/run TYPE=tmpfs -env MOUNTPOINT=/var/run - -task - -script - : > "${MOUNTPOINT}/utmp" - chmod 664 "${MOUNTPOINT}/utmp" - chgrp utmp "${MOUNTPOINT}/utmp" - - [ -d /dev/.initramfs/varrun ] && cp -a /dev/.initramfs/varrun/* "${MOUNTPOINT}" || true - - mkdir -p /var/run/sendsigs.omit.d -end script diff --git a/resources/config/1/uniontmp/etc/init/networking.conf b/resources/config/1/uniontmp/etc/init/networking.conf deleted file mode 100755 index 5b989c6..0000000 --- a/resources/config/1/uniontmp/etc/init/networking.conf +++ /dev/null @@ -1,15 +0,0 @@ -# networking - configure virtual network devices -# -# This task causes virtual network devices that do not have an associated -# kernel object to be started on boot. - -description "configure virtual network devices" - -start on (local-filesystems - and stopped udevtrigger) - -task - -pre-start exec mkdir -p /var/run/network - -exec ifup -a diff --git a/resources/config/1/uniontmp/etc/init/portmap.conf b/resources/config/1/uniontmp/etc/init/portmap.conf deleted file mode 100755 index 589694a..0000000 --- a/resources/config/1/uniontmp/etc/init/portmap.conf +++ /dev/null @@ -1,42 +0,0 @@ -# portmap - RPC port mapper - -# Portmap is a server that converts RPC (Remote Procedure Call) program -# numbers into DARPA protocol port numbers. It must be running in order -# to make RPC calls. - -description "RPC port mapper" -author "Steve Langasek " - -start on (virtual-filesystems - and net-device-up IFACE=lo) - -expect fork -respawn - -script - if [ -f /etc/default/portmap ]; then - . /etc/default/portmap - elif [ -f /etc/portmap.conf ]; then - . /etc/portmap.conf - fi - - exec portmap $OPTIONS -end script - -post-start script - if [ -f /var/run/portmap.state ]; then - pmap_set < /var/run/portmap.state - rm -f /var/run/portmap.state - fi - mkdir -p /lib/init/rw/sendsigs.omit.d - rm -f /lib/init/rw/sendsigs.omit.d/portmap - ln -s /var/run/portmap.pid /lib/init/rw/sendsigs.omit.d/portmap -end script - -pre-stop script - pmap_dump > /var/run/portmap.state -end script - -post-stop script - rm -f /lib/init/rw/sendsigs.omit.d/portmap -end script diff --git a/resources/config/1/uniontmp/etc/init/procps.conf b/resources/config/1/uniontmp/etc/init/procps.conf deleted file mode 100755 index 1c88c25..0000000 --- a/resources/config/1/uniontmp/etc/init/procps.conf +++ /dev/null @@ -1,13 +0,0 @@ -# procps - set sysctls from /etc/sysctl.conf -# -# This task sets kernel sysctl variables from /etc/sysctl.conf and -# /etc/sysctl.d - -description "set sysctls from /etc/sysctl.conf" - -start on virtual-filesystems - -task -script - cat /etc/sysctl.d/*.conf /etc/sysctl.conf | sysctl -p - -end script diff --git a/resources/config/1/uniontmp/etc/init/rc-sysinit.conf b/resources/config/1/uniontmp/etc/init/rc-sysinit.conf deleted file mode 100755 index 2ad7e24..0000000 --- a/resources/config/1/uniontmp/etc/init/rc-sysinit.conf +++ /dev/null @@ -1,60 +0,0 @@ -# rc-sysinit - System V initialisation compatibility -# -# This task runs the old System V-style system initialisation scripts, -# and enters the default runlevel when finished. - -description "System V initialisation compatibility" -author "Scott James Remnant " - -start on filesystem # and net-device-up IFACE=lo -stop on runlevel - -# Default runlevel, this may be overriden on the kernel command-line -# or by faking an old /etc/inittab entry -env DEFAULT_RUNLEVEL=2 - -# There can be no previous runlevel here, but there might be old -# information in /var/run/utmp that we pick up, and we don't want -# that. -# -# These override that -env RUNLEVEL= -env PREVLEVEL= - -console output -env INIT_VERBOSE - -task - -script - # Check for default runlevel in /etc/inittab - if [ -r /etc/inittab ] - then - eval "$(sed -nre 's/^[^#][^:]*:([0-6sS]):initdefault:.*/DEFAULT_RUNLEVEL="\1";/p' /etc/inittab || true)" - fi - - # Check kernel command-line for typical arguments - for ARG in $(cat /proc/cmdline) - do - case "${ARG}" in - -b|emergency) - # Emergency shell - [ -n "${FROM_SINGLE_USER_MODE}" ] || sulogin - ;; - [0123456sS]) - # Override runlevel - DEFAULT_RUNLEVEL="${ARG}" - ;; - -s|single) - # Single user mode - [ -n "${FROM_SINGLE_USER_MODE}" ] || DEFAULT_RUNLEVEL=S - ;; - esac - done - - # Run the system initialisation scripts - [ -n "${FROM_SINGLE_USER_MODE}" ] || /etc/init.d/rcS - - # Switch into the default runlevel - telinit "${DEFAULT_RUNLEVEL}" -end script diff --git a/resources/config/1/uniontmp/etc/init/rc.conf b/resources/config/1/uniontmp/etc/init/rc.conf deleted file mode 100755 index d032e70..0000000 --- a/resources/config/1/uniontmp/etc/init/rc.conf +++ /dev/null @@ -1,20 +0,0 @@ -# rc - System V runlevel compatibility -# -# This task runs the old System V-style rc script when changing between -# runlevels. - -description "System V runlevel compatibility" -author "Scott James Remnant " - -start on runlevel [0123456] -stop on runlevel [!$RUNLEVEL] - -export RUNLEVEL -export PREVLEVEL - -console output -env INIT_VERBOSE - -task - -exec /etc/init.d/rc $RUNLEVEL diff --git a/resources/config/1/uniontmp/etc/init/rcS.conf b/resources/config/1/uniontmp/etc/init/rcS.conf deleted file mode 100755 index 2e9efbb..0000000 --- a/resources/config/1/uniontmp/etc/init/rcS.conf +++ /dev/null @@ -1,32 +0,0 @@ -# rcS - System V single-user mode compatibility -# -# This task handles the old System V-style single-user mode, this is -# distinct from the other runlevels since running the rc script would -# be bad. - -description "System V single-user mode compatibility" -author "Scott James Remnant " - -start on runlevel S -stop on runlevel [!S] - -console owner -script - if [ -x /usr/share/recovery-mode/recovery-menu ]; then - exec /usr/share/recovery-mode/recovery-menu - else - exec /sbin/sulogin - fi -end script - -post-stop script - # Don't switch runlevels if we were stopped by an event, since that - # means we're already switching runlevels - if [ -n "${UPSTART_STOP_EVENTS}" ] - then - exit 0 - fi - - # Switch, passing a magic flag - start --no-wait rc-sysinit FROM_SINGLE_USER_MODE=y -end script diff --git a/resources/config/1/uniontmp/etc/init/rpc_pipefs.conf b/resources/config/1/uniontmp/etc/init/rpc_pipefs.conf deleted file mode 100755 index bcbb48c..0000000 --- a/resources/config/1/uniontmp/etc/init/rpc_pipefs.conf +++ /dev/null @@ -1,87 +0,0 @@ -description "mount the rpc_pipefs filesystem for NFSv4" -author "Steve Langasek " - -start on (starting gssd - or starting idmapd) -stop on (stopped gssd and stopped idmapd) - -env PIPEFS_MOUNTPOINT=/var/lib/nfs/rpc_pipefs - -pre-start script - DEFAULTFILE=/etc/default/nfs-common - if [ -f "$DEFAULTFILE" ]; then - . "$DEFAULTFILE" - fi - - # - # Parse the fstab file, and determine whether we need idmapd and gssd. - # (The /etc/defaults settings, if any, will override our - # autodetection.) This code is partially adapted from the mountnfs.sh - # script in the sysvinit package. - - if [ -f /etc/fstab ]; then - exec 9<&0 " - -start on filesystem #(started portmap or mounting TYPE=nfs) -stop on stopping portmap - -expect fork -respawn - -env DEFAULTFILE=/etc/default/nfs-common - -pre-start script - if [ -f "$DEFAULTFILE" ]; then - . "$DEFAULTFILE" - fi - - [ "x$NEED_STATD" != xno ] || { stop; exit 0; } - - start portmap || true - status portmap | grep -q start/running - exec sm-notify -end script - -script - if [ -f "$DEFAULTFILE" ]; then - . "$DEFAULTFILE" - fi - - if [ "x$NEED_STATD" != xno ]; then - exec rpc.statd -L $STATDOPTS - fi -end script diff --git a/resources/config/1/uniontmp/etc/init/tty1.conf b/resources/config/1/uniontmp/etc/init/tty1.conf deleted file mode 100755 index a72fd8b..0000000 --- a/resources/config/1/uniontmp/etc/init/tty1.conf +++ /dev/null @@ -1,10 +0,0 @@ -# tty1 - getty -# -# This service maintains a getty on tty1 from the point the system is -# started until it is shut down again. - -start on stopped rc RUNLEVEL=[2345] -stop on runlevel [!2345] - -respawn -exec /sbin/getty -8 38400 tty1 diff --git a/resources/config/1/uniontmp/etc/init/tty2.conf b/resources/config/1/uniontmp/etc/init/tty2.conf deleted file mode 100755 index 294c0ff..0000000 --- a/resources/config/1/uniontmp/etc/init/tty2.conf +++ /dev/null @@ -1,10 +0,0 @@ -# tty2 - getty -# -# This service maintains a getty on tty2 from the point the system is -# started until it is shut down again. - -start on runlevel [23] -stop on runlevel [!23] - -respawn -exec /sbin/getty -8 38400 tty2 diff --git a/resources/config/1/uniontmp/etc/init/tty3.conf b/resources/config/1/uniontmp/etc/init/tty3.conf deleted file mode 100755 index cce1c52..0000000 --- a/resources/config/1/uniontmp/etc/init/tty3.conf +++ /dev/null @@ -1,10 +0,0 @@ -# tty3 - getty -# -# This service maintains a getty on tty3 from the point the system is -# started until it is shut down again. - -start on runlevel [23] -stop on runlevel [!23] - -respawn -exec /sbin/getty -8 38400 tty3 diff --git a/resources/config/1/uniontmp/etc/init/tty4.conf b/resources/config/1/uniontmp/etc/init/tty4.conf deleted file mode 100755 index e024cb2..0000000 --- a/resources/config/1/uniontmp/etc/init/tty4.conf +++ /dev/null @@ -1,10 +0,0 @@ -# tty4 - getty -# -# This service maintains a getty on tty4 from the point the system is -# started until it is shut down again. - -start on runlevel [23] -stop on runlevel [!23] - -respawn -exec /sbin/getty -8 38400 tty4 diff --git a/resources/config/1/uniontmp/etc/init/tty5.conf b/resources/config/1/uniontmp/etc/init/tty5.conf deleted file mode 100755 index a333fa0..0000000 --- a/resources/config/1/uniontmp/etc/init/tty5.conf +++ /dev/null @@ -1,10 +0,0 @@ -# tty5 - getty -# -# This service maintains a getty on tty5 from the point the system is -# started until it is shut down again. - -start on runlevel [23] -stop on runlevel [!23] - -respawn -exec /sbin/getty -8 38400 tty5 diff --git a/resources/config/1/uniontmp/etc/init/tty6.conf b/resources/config/1/uniontmp/etc/init/tty6.conf deleted file mode 100755 index ece21ba..0000000 --- a/resources/config/1/uniontmp/etc/init/tty6.conf +++ /dev/null @@ -1,10 +0,0 @@ -# tty6 - getty -# -# This service maintains a getty on tty6 from the point the system is -# started until it is shut down again. - -start on runlevel [23] -stop on runlevel [!23] - -respawn -exec /sbin/getty -8 38400 tty6 diff --git a/resources/config/1/uniontmp/etc/init/udev-finish.conf b/resources/config/1/uniontmp/etc/init/udev-finish.conf deleted file mode 100755 index 069b95d..0000000 --- a/resources/config/1/uniontmp/etc/init/udev-finish.conf +++ /dev/null @@ -1,30 +0,0 @@ -# udev-finish - save udev log and update rules -# -# While udev runs we not only create the log file of initial device -# creation but udev rules may be generated, we need to copy both of -# these out of /dev and onto the root filesystem. - -description "save udev log and update rules" - -start on (startup - and filesystem - and started udev - and stopped udevtrigger - and stopped udevmonitor) - -task -script - # Save udev log in /var/log/udev - if [ -e /dev/.udev.log ] - then - mv -f /dev/.udev.log /var/log/udev || : - fi - - # Copy any rules generated while the root filesystem was read-only - for file in /dev/.udev/tmp-rules--* - do - [ -e "$file" ] || continue - cat "$file" >> "/etc/udev/rules.d/${file##*tmp-rules--}" - rm -f "$file" - done -end script diff --git a/resources/config/1/uniontmp/etc/init/udev.conf b/resources/config/1/uniontmp/etc/init/udev.conf deleted file mode 100755 index 67703e8..0000000 --- a/resources/config/1/uniontmp/etc/init/udev.conf +++ /dev/null @@ -1,14 +0,0 @@ -# udev - device node and kernel event manager -# -# The udev daemon receives events from the kernel about changes in the -# /sys filesystem and manages the /dev filesystem. - -description "device node and kernel event manager" - -start on virtual-filesystems -stop on runlevel [06] - -expect fork -respawn - -exec udevd --daemon diff --git a/resources/config/1/uniontmp/etc/init/udevmonitor.conf b/resources/config/1/uniontmp/etc/init/udevmonitor.conf deleted file mode 100755 index da93dec..0000000 --- a/resources/config/1/uniontmp/etc/init/udevmonitor.conf +++ /dev/null @@ -1,13 +0,0 @@ -# udevmonitor - log initial device creation -# -# The set of devices created in the "cold plug" pass is generally -# useful for debugging, so we monitor this and create a log file -# from that. - -description "log initial device creation" - -start on (startup - and starting udevtrigger) -stop on stopped udevtrigger - -exec /sbin/udevadm monitor -e >/dev/.udev.log diff --git a/resources/config/1/uniontmp/etc/init/udevtrigger.conf b/resources/config/1/uniontmp/etc/init/udevtrigger.conf deleted file mode 100755 index 43ec47c..0000000 --- a/resources/config/1/uniontmp/etc/init/udevtrigger.conf +++ /dev/null @@ -1,15 +0,0 @@ -# udevtrigger - cold plug devices -# -# By the time udevd starts, we've already missed all of the events for -# the devices populated in /sys. This task causes the kernel to resend -# them. - -description "cold plug devices" - -start on (startup - and started udev) - -task - -exec udevadm trigger -post-stop exec udevadm settle diff --git a/resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf b/resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf deleted file mode 100755 index eb2c90f..0000000 --- a/resources/config/1/uniontmp/etc/init/upstart-udev-bridge.conf +++ /dev/null @@ -1,14 +0,0 @@ -# upstart-udev-bridge - Bridge udev events into upstart -# -# This helper daemon receives udev events from the netlink socket and -# emits equivalent Upstart events. - -description "Bridge udev events into upstart" - -start on starting udev -stop on stopped udev - -expect daemon -respawn - -exec upstart-udev-bridge --daemon diff --git a/resources/config/1/uniontmp/etc/issue b/resources/config/1/uniontmp/etc/issue deleted file mode 100755 index 69a52b6..0000000 --- a/resources/config/1/uniontmp/etc/issue +++ /dev/null @@ -1,11 +0,0 @@ - - WELCOME TO \n (\l) - _____ ______ ______ __ __ _______ __ __ __ - / _ | _ | ___| | | | | ____| | | | | | - | | | | |_| | |_ | | | | |___ | | / / - | | | | ___/| _| | | ____ | | | | - | |_| | | | |___| | | | ____| | |___ / / - _____/|__| |______|__| |__| |_______|______|__| |__| - - V5.0.1-9-g0551e88/ubuntu-10.04-clone::nfs (c) - diff --git a/resources/config/1/uniontmp/etc/kde4/kdm/Xreset b/resources/config/1/uniontmp/etc/kde4/kdm/Xreset deleted file mode 100755 index 1d5c118..0000000 --- a/resources/config/1/uniontmp/etc/kde4/kdm/Xreset +++ /dev/null @@ -1,10 +0,0 @@ -#! /bin/sh -# -# modified by desktop plugin in Stage3 -# - - # remove safely any remaining files of the leaving user in /tmp - ( su -c "rm -rf /tmp/*" - $USER - echo "$USER files removed by $0" >/tmp/files.removed 2>/dev/null - chmod 0400 /tmp/files.removed ) & - . /etc/kde$kdmver/kdm/Xreset.system diff --git a/resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system b/resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system deleted file mode 100755 index 2d76013..0000000 --- a/resources/config/1/uniontmp/etc/kde4/kdm/Xreset.system +++ /dev/null @@ -1,10 +0,0 @@ - -# Xreset - run as root after session exits - -# Reassign ownership of the console to root, this should disallow -# assignment of console output to any random users's xterm. See Xstartup. -# -#chown root /dev/console -#chmod 622 /dev/console - -# XDM configurations typically have sessreg here. KDM has it built-in. diff --git a/resources/config/1/uniontmp/etc/kde4/kdm/kdmrc b/resources/config/1/uniontmp/etc/kde4/kdm/kdmrc deleted file mode 100755 index 2c91f9e..0000000 --- a/resources/config/1/uniontmp/etc/kde4/kdm/kdmrc +++ /dev/null @@ -1,35 +0,0 @@ -[General] -PidFile=/var/run/kdm.pid -ServerVTs=-7 - -[X-*-Greeter] -UseTheme=true -Theme=/opt/openslx/plugin-repo/desktop/themes/kdm/uni -UseBackground=false -GreetString=OpenSLX Workstation (%h) -SelectedUsers= -UserList=false - -[X-:*-Greeter] -AllowClose=false -UseAdminSession=true - -[X-:0-Core] -AllowRootLogin=true -AllowShutdown=All -AutoLoginEnable=false -Reset=/etc/kde4/kdm/Xreset -ServerAttempts=2 -Session=/etc/kde4/kdm/Xsession -SessionsDirs=/etc/X11/session,/usr/share/xsessions,/usr/share/apps/kdm/sessions -Setup=/etc/kde4/kdm/Xsetup -Startup=/etc/kde4/kdm/Xstartup - -[X-:0-Greeter] -LogSource=/dev/xconsole -PreselectUser=None -UseAdminSession=false - -[xdmcp] -Enable=false - diff --git a/resources/config/1/uniontmp/etc/krb5.conf b/resources/config/1/uniontmp/etc/krb5.conf deleted file mode 100755 index 6fd4924..0000000 --- a/resources/config/1/uniontmp/etc/krb5.conf +++ /dev/null @@ -1,28 +0,0 @@ -# file copied from configuration package (rootfs/etc/krb5.conf) -######################################################################### -[libdefaults] - noaddresses = false - clockskew = 300 - default_realm = PUBLIC.ADS.UNI-FREIBURG.DE - forwardable = true - minimum_uid = 1000 - proxiable = false - renew_lifetime = 30d - retain_after_close = false - ticket_lifetime = 3d - use_shmem = sshd - allow_weak_crypto=true -######################################################################### -[realms] - PUBLIC.ADS.UNI-FREIBURG.DE = { - kdc = kerberos.uni-freiburg.de - default_domain = uni-freiburg.de - admin_server = kerberos.uni-freiburg.de - } -######################################################################### -[domain_realm] - uni-freiburg.de = PUBLIC.ADS.UNI-FREIBURG.DE - .uni-freiburg.de = PUBLIC.ADS.UNI-FREIBURG.DE -########################################################################## -[appdefaults] -######################################################################### diff --git a/resources/config/1/uniontmp/etc/krb5.keytab b/resources/config/1/uniontmp/etc/krb5.keytab deleted file mode 100755 index 51d04bb..0000000 Binary files a/resources/config/1/uniontmp/etc/krb5.keytab and /dev/null differ diff --git a/resources/config/1/uniontmp/etc/ldap.conf b/resources/config/1/uniontmp/etc/ldap.conf deleted file mode 100755 index 9cc5ef8..0000000 --- a/resources/config/1/uniontmp/etc/ldap.conf +++ /dev/null @@ -1,6 +0,0 @@ -URI ldap://132.230.1.62 -BASE ou=people,dc=uni-freiburg,dc=de -TLS_REQCERT allow -nss_base_passwd ou=people,dc=uni-freiburg,dc=de?one?rufdienst=ldap*)(&(rufclienthome=*)(rufstatus=enabled) -nss_base_group ou=group,dc=uni-freiburg,dc=de?one -nss_map_attribute homeDirectory rufClientHome diff --git a/resources/config/1/uniontmp/etc/ldap/ldap.conf b/resources/config/1/uniontmp/etc/ldap/ldap.conf deleted file mode 100755 index 9cc5ef8..0000000 --- a/resources/config/1/uniontmp/etc/ldap/ldap.conf +++ /dev/null @@ -1,6 +0,0 @@ -URI ldap://132.230.1.62 -BASE ou=people,dc=uni-freiburg,dc=de -TLS_REQCERT allow -nss_base_passwd ou=people,dc=uni-freiburg,dc=de?one?rufdienst=ldap*)(&(rufclienthome=*)(rufstatus=enabled) -nss_base_group ou=group,dc=uni-freiburg,dc=de?one -nss_map_attribute homeDirectory rufClientHome diff --git a/resources/config/1/uniontmp/etc/localtime b/resources/config/1/uniontmp/etc/localtime deleted file mode 100755 index 96059c7..0000000 Binary files a/resources/config/1/uniontmp/etc/localtime and /dev/null differ diff --git a/resources/config/1/uniontmp/etc/logfile b/resources/config/1/uniontmp/etc/logfile deleted file mode 100755 index a949993..0000000 --- a/resources/config/1/uniontmp/etc/logfile +++ /dev/null @@ -1,7 +0,0 @@ -# /etc/logfile - file created by /init (initramfs from 14.10.2010) -# -# logfile for linux diskless client specific debugging output -LOGFILE="/dev/null" -# -# debug level -DEBUGLEVEL="0" diff --git a/resources/config/1/uniontmp/etc/machine-setup b/resources/config/1/uniontmp/etc/machine-setup deleted file mode 100755 index 22fa82e..0000000 --- a/resources/config/1/uniontmp/etc/machine-setup +++ /dev/null @@ -1,69 +0,0 @@ -## Stage3 configuration via initial/early /etc/initramfs-setup -# attributes set by slxconfig-demuxer: -ramfs_fsmods=" nfs" -hw_local_disk="all" -host_name="slx-client" -rootfs="nfs://132.230.4.2/srv/openslx/export/nfs/ubuntu-10.04-clone" -ramfs_miscmods="" -ramfs_firmmods="" -ramfs_nicmods="e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulip sky2" -# nfs root information gotten via kernel command line in /init -nfsserver="132.230.4.2" -nfspath="/srv/openslx/export/nfs/ubuntu-10.04-clone" -# ip configuration written by /init script: -clientip=132.230.4.20 -subnet_mask=255.255.255.0 -gateway=132.230.4.254 -serverip=132.230.201.1 -broadcast_address=132.230.4.255 -# network configuration written by /usr/share/udhcpc/default.script: -DISTRO_NAME='ubuntu' -DISTRO_VER='10.04' -KERNEL='2.6.32-25-generic-pae' -LOGFILE='/dev/null' -NWMODULES='e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulclientip sky2' -SLXVERSION='5.0.1-9-g0551e88' -SYSTEM_NAME='ubuntu-10.04-clone::nfs' -broadcast_address='132.230.4.255' -date='14.10.2010' -domain_name_servers='132.230.200.200 132.230.201.111' -domain_name='ruf.uni-freiburg.de' -file='tftp://132.230.4.5' -host_name='lsfks20' -initrd='132.230.4.5::initramfs-default' -clientip='132.230.4.20' -macaddr='00:1e:0b:27:f4:99' -nwif='br0' -gateway='132.230.4.254' -serverip='132.230.201.1' -siaddr='132.230.201.1' -subnet_mask='255.255.255.0' -vga='791' - -## Configuration via fileget from tftp://132.230.4.5/client-config/ubuntu-10.04-clone::nfs/default.tgz -# Hierarchy is distro client and as last distro/default -# attributes set by slxconfig-demuxer: -automnt_dir="" -automnt_src="" -boot_type="pxe" -boot_uri="" -country="de" -hidden="0" -hw_local_disk="all" -kernel_params="debug=3" -kernel_params_client="" -preboot_media="" -preboot_server="" -ramfs_fsmods="" -ramfs_miscmods="" -ramfs_nicmods="e1000 e1000e forcedeth tg3 e100 b44 r8169 8139too pcnet32 via-rhine skge sis900 3c59x tulip sky2" -scratch="" -start_atd="no" -start_cron="no" -start_dreshal="yes" -start_nfsv4="yes" -start_ntp="yes" -start_snmp="no" -start_sshd="yes" -timezone="Europe/Berlin" -unbootable="0" diff --git a/resources/config/1/uniontmp/etc/modprobe.d/aliases.conf b/resources/config/1/uniontmp/etc/modprobe.d/aliases.conf deleted file mode 100755 index 3ee8f16..0000000 --- a/resources/config/1/uniontmp/etc/modprobe.d/aliases.conf +++ /dev/null @@ -1 +0,0 @@ -alias autofs autofs4 diff --git a/resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf b/resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf deleted file mode 100755 index b46792e..0000000 --- a/resources/config/1/uniontmp/etc/modprobe.d/blacklist-pcspkr.conf +++ /dev/null @@ -1 +0,0 @@ -blacklist pcspkr diff --git a/resources/config/1/uniontmp/etc/mtab b/resources/config/1/uniontmp/etc/mtab deleted file mode 100755 index d1c1960..0000000 --- a/resources/config/1/uniontmp/etc/mtab +++ /dev/null @@ -1,19 +0,0 @@ -rootfs / aufs ro 0 0 -none /proc proc rw,noexec,nosuid,nodev 0 0 -none /sys sysfs rw,noexec,nosuid,nodev 0 0 -initramfsdevs /dev tmpfs rw,mode=0755 0 0 -none /uniontmp tmpfs rw,relatime,size=6592904k 0 0 -vm-loopimg /etc/opt/openslx/plugins/vmchooser/loopimg tmpfs rw,relatime,size=1500k 0 0 -/dev/loop0 /etc/opt/openslx/plugins/vmchooser/fd-loop msdos rw,relatime,fmask=0000,dmask=0000,allow_utime=0022,codepage=cp437,errors=remount-ro 0 0 -10.4.6.6:/vmwareImages/vmware/vmware65 /var/lib/virt/vmware nfs ro,relatime,vers=3,rsize=1048576,wsize=1048576,namlen=255,hard,nolock,proto=tcp,port=65535,timeo=70,retrans=3,sec=sys,mountport=65535,addr=10.4.6.6 0 0 -none /sys/fs/fuse/connections fusectl rw 0 0 -none /sys/kernel/debug debugfs rw 0 0 -none /sys/kernel/security securityfs rw 0 0 -none /dev/pts devpts rw,noexec,nosuid,gid=5,mode=0620 0 0 -none /dev/shm tmpfs rw,nosuid,nodev 0 0 -none /var/run tmpfs rw,nosuid,mode=0755 0 0 -none /var/lock tmpfs rw,noexec,nosuid,nodev 0 0 -none /lib/init/rw tmpfs rw,nosuid,mode=0755 0 0 -rpc_pipefs /var/lib/nfs/rpc_pipefs rpc_pipefs rw 0 0 -nfsd /proc/fs/nfsd nfsd rw 0 0 -netapp1.public.ads.uni-freiburg.de:/vol/home/mp57 /home/mp57 nfs4 rw,nosuid,nodev,sec=krb5p,nolock,intr,hard,clientaddr=132.230.4.20,sloppy,addr=10.4.6.1 0 0 diff --git a/resources/config/1/uniontmp/etc/nsswitch.conf b/resources/config/1/uniontmp/etc/nsswitch.conf deleted file mode 100755 index 7251f2c..0000000 --- a/resources/config/1/uniontmp/etc/nsswitch.conf +++ /dev/null @@ -1,22 +0,0 @@ -# file copied from configuration package (rootfs/etc/nsswitch.conf) -# -# /etc/nsswitch.conf -# - -passwd: files ldap -group: files ldap - -hosts: files dns -networks: files dns - -services: files -protocols: files -rpc: files -ethers: files -netmasks: files -netgroup: files -publickey: files - -bootparams: files -automount: files nis -aliases: files diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf deleted file mode 100755 index 18ee914..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf +++ /dev/null @@ -1 +0,0 @@ -sysrqshutdown_active="1" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include deleted file mode 100755 index 96acd7a..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/machine.include +++ /dev/null @@ -1,132 +0,0 @@ -# Include file (machine template) for run-virt.include of the virtualbox plugin -cat << EOF > "${machconfig}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <${network_kind}/> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -EOF diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include deleted file mode 100755 index d05913a..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/run-virt.include +++ /dev/null @@ -1,375 +0,0 @@ -# run-virt.include -# ----------------------------------------------------------------------------- -# Copyright (c) 2009..2010 - RZ Uni Freiburg -# Copyright (c) 2009..2010 - OpenSLX GmbH -# -# This program/file is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your feedback to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org -# ----------------------------------------------------------------------------- -# run-virt.include -# - Include script for running the VirtualBox on an OpenSLX client via the -# run-virt.sh or run-vmgrid.sh -################################################################################ - -################################################################################ -### Include general configuration -################################################################################ -if [ -f ${OPENSLX_DEFAULT_CONFDIR}/plugins/${self}/${self}.conf ]; then - . ${OPENSLX_DEFAULT_CONFDIR}/plugins/${self}/${self}.conf -else - writelog "Problems reading config file of ${self} plugin" - exit 1 -fi - -################################################################################ -### Declaration of default variables -################################################################################ - -PLUGINCONFVIRTUALBOX="${PLUGINCONFROOT}/${self}" -PLUGINDIRVIRTUALBOX="${OPENSLX_DEFAULT_DIR}/plugin-repo/${self}" -# create TMPDIR for all users -TMPDIR=/tmp/${self} -mkdir -m 1777 ${TMPDIR} 2>/dev/null -# dir for configs -confdir="/tmp/${self}/${USER}/${VM_ID}" -# use alternate configuration directory instead of $HOME/.VirtualBox -export VBOX_USER_HOME=${confdir} -# define dirs and files which can be removed after exit, be carefull! -RMDIRS="${snapshotdir} ${confdir} /tmp/.vbox-${USER}-ipc" -rm -rf ${RMDIRS} 2>/dev/null -machfolder="${confdir}/Machines" -# use vm_shortname for dir and config names since vm_name can be very long -machconfig="${machfolder}/${vm_shortname}/${vm_shortname}.xml" -diskfolder="${confdir}/HardDisks" -snapshotdir=${machfolder}/${vm_shortname}/Snapshots -mkdir -p ${diskfolder} ${snapshotdir} 2>/dev/null -# check if diskless var empty? -[ -z "${diskless}" ] && diskless=0 - -# configure our own rwimg, empty image which we support -if [ "${imgmode}" = "rwimg" ]; then - # what is our rwimg called? - imgname="${vm_shortname}.vdi" - vmpath=${imgpath}/${imgname} - if ! [ -e "${vmpath}" ]; then - cat ${PLUGINDIRVIRTUALBOX}/rwimg.vdi.gz | gunzip > "${vmpath}" - fi -fi - -# link to image -diskfile="${diskfolder}/${imgname}" -[ ${diskless} -eq 0 ] && ln -sf ${vmpath} ${diskfile} - -# check the file type -if echo ${imgname} | grep -qiE "vdi|vmdk|vhd" && [ ${diskless} -eq 0 ]; then - imgfmt=$(echo ${imgname##*.} | tr "[a-z]" "[A-Z]") -elif [ ${diskless} -eq 0 ]; then - writelog "${imgname} is not a valid image format (vdi|vmdk|vhd), exiting!" - cleanexit 1 -fi - -# TODO: maybe rewrite, to reduce checks, merge it with network option, -# so we can have a "compatibility to vmware config" section -case "${vmostype}" in - winxp*|windowsxp*) - vmostype="WindowsXP" - ;; - winvista*|windowsvista*) - vmostype="WindowsVista" - ;; - windows7*) - vmostype="Windows7" - ;; - linux*|*ubuntu*|*suse*|debian*|*sci*) - if echo "${vmostype}" | grep -q "64"; then - vmostype="Linux26_64" - # check for vtflag - if [ ${vtflag} -ne 1 ]; then - writelog "You are trying to boot a 64 bit OS without a VT enabled CPU" - writelog "This is not supported, exiting!" - cleanexit 1 - fi - # check if host is only 32 bit, then use only 1 cpu (only 1 supported) - if echo "${host_arch}" | grep -qE "i.86"; then - cpu_cores=1 - fi - else - vmostype="Linux26" - fi - ;; -esac - -writelog "Directories:" -writelog "\tConfig dir:\t\t$confdir" -writelog "\tMachines dir:\t\t$machfolder" -writelog "\tMachine config:\t\t$machconfig" -[ ${diskless} -eq 0 ] && writelog "\tHardDisks dir:\t\t$diskfolder" - -################################################################################ -### Hardware checks -################################################################################ - -# remove ':' from MAC addr for vbox -macaddr=$(echo ${macaddr} | sed 's/://g') - -# machine UUID, MAC addr part of it -machineuuid="00000000-0000-0000-0000-${macaddr}" -# cosmetical, since UUID in lower case -machineuuid=$(echo ${machineuuid} | tr "[A-Z]" "[a-z]") -# get UUID of VBox image, if not diskless -[ ${diskless} -eq 0 ] && diskuuid=$(VBoxManage -q showvdiinfo ${diskfile} \ - | grep UUID | awk '{print $2}') -# make disk immutable -imgtype="Immutable" -# snapshot UUID is static -snapshotuuid="34f617be-192a-46b3-a8ae-bce1029e093f" -# imageuuid in machine.include, dafault snapshotuuid -imageuuid=${snapshotuuid} - -# check if rw image -# remove disk and add rwimg if set -if echo "${imgmode}" | grep -q rw; then - # lock existing? - if [ -e "${vmpath}.lock" ]; then - writelog "This rw image is already in use." - writelog "Found lock: ${vmpath}.lock, exiting!" - writelog "Remove lock if you are sure that this is not the case" - cleanexit 1 - # image rw? - elif ! [ -w ${vmpath} ]; then - writelog "You defined mode rw, but image ${vmpath} is not rw! \c" - writelog "Please correct, exiting!" - cleanexit 1 - fi - # add lock - touch "${vmpath}.lock" - # remove lock after VM stopped - RMDIRS="${RMDIRS} ${vmpath}.lock" - imgtype="Normal" - # replace image uuid in machine config - imageuuid=${diskuuid} -elif [ ${diskless} -eq 0 ]; then - # use temp disk as snapshot - cat ${PLUGINDIRVIRTUALBOX}/empty-diff.vdi.gz \ - | gunzip > "${snapshotdir}/{${snapshotuuid}}.vdi" - # patch the disk file uuid into the snapshot vdi file - dd if=${diskfile} of="${snapshotdir}/{${snapshotuuid}}.vdi" seek=424 \ - skip=392 bs=1 count=16 conv=notrunc -fi - -# TODO: MEM muss noch angepasst werden. Maschine crasht wenn nehr als 50% MEM -# memory part equal to vmware plugin -# percentage of memory to use for virtualbox in standard case -#if [ -n "${forcemem}" ]; then -# mem="${forcemem}" -#else -# permem=30 -# if [ "${totalmem}" -ge "1600" ]; then -# permem=40 -# fi -# # check if /tmp is on harddisk -# if grep -qe "/dev/.* /tmp " /proc/mounts ; then -# permem=60 -# id44="1" -# # Hack, if more than 2,5G RAM use 40% of Ram and write vmem into Ram as well -# # (40% vmware | 40% confdir(vmem...) | 20% host -# # VMplayer 2+ issue -# # TODO: makes this sense for vbox? -# #if [ "${totalmem}" -ge "2500" ]; then -# #permem=40 -# #rmdir ${snapshotdir} -# #snapshotdirold=${snapshotdir} -# #snapshotdir=/dev/shm/${self}/${USER}/${VM_ID} -# #mkdir -p ${snapshotdir} -# #ln -sf ${snapshotdir} ${snapshotdirold} -# #fi -# fi -# mem=$(expr ${totalmem} / 100 \* ${permem}) -# if [ "${id44}" = "1" ]; then -# hostmem=$(expr ${totalmem} - ${mem}) -# else -# hostmem=$(expr ${totalmem} - ${mem} - ${mem}) -# fi -# #permem=40 -# #mem=$(expr ${totalmem} * ${permem}) -# if [ "${mem}" -lt "256" ] || [ "${hostmem}" -lt "256" ]; then -# writelog "Memory out of range: ${mem} MB (guest) / ${hostmem} MB (host)!" -# writelog "Min. 256 MB for host and guest!" -# cleanexit 1 -# fi -#fi - -# translate network cards -case "${network_card}" in - e1000) - vb_network_card="82540EM" - ;; - virtio) - vb_network_card="virtio" - ;; - *) - network_card="pcnet" - vb_network_card="Am79C973" -esac - -# translate network kinds (nat, bridged, host-only) -case "${network_kind}" in - bridge*) - network_kind='BridgedInterface name="br0"' - ;; - host*) - network_kind='HostOnlyInterface name="vboxnet0"' - ;; - *) - network_kind="NAT" -esac - -# translate boot, use if set else set to HardDisk -# usually support for a,c,d,n, stands for Floppy, HD, CD-ROM, Network -# support nfs and tftp as well -case ${boot} in - n*|tftp) - boot="Network" - if [ "${network_kind}" = "NAT" ] && [ -n "${virtualbox_tftpdir}" ]; then - # use vm_shortname to avoid Problems /w TFTP in NAT - vm_name=${vm_shortname} - # link TFTP dir for NAT TFTP boots - mkdir -p ${confdir}/TFTP - if [ -e ${virtualbox_tftpdir}/pxelinux.0 ]; then - cp ${virtualbox_tftpdir}/pxelinux.0 ${confdir}/TFTP/${vm_name}.pxe - else - writelog "${virtualbox_tftpdir}/pxelinux.0 not found!" - writelog "Network boot won't work, exiting!" - cleanexit 1 - fi - for i in $(ls ${virtualbox_tftpdir}); do - ln -sf ${virtualbox_tftpdir}/${i} ${confdir}/TFTP/${i} - done - fi - ;; - # later maybe c|disk|hd*|sd*) for HD and d|cd*) for CD-ROM - *) - boot="HardDisk" - ;; -esac - -# nested paging -npaging="false" -# enable VT -enablevt="false" -# check for VT, if not available use only 1 cpu (only 1 supported) -[ ${vtflag} -eq 0 ] && cpu_cores=1 -[ ${vtflag} -eq 1 ] && enablevt="true" - -# external GUI -vrdpport=${remotedesktopport} - -[ ${diskless} -eq 0 ] && writelog "\tSnapshots dir:\t\t$snapshotdir" -writelog "Diskimage:" -[ ${diskless} -eq 0 ] && writelog "\tDisk file:\t\t$diskfile" -[ ${diskless} -eq 0 ] && writelog "\tDisk format:\t\t$imgfmt" -[ ${diskless} -eq 0 ] && writelog "\tDisk type:\t\t$imgtype" - writelog "\tVMostype:\t\t$vmostype" - writelog "\tMachine UUID:\t\t$machineuuid" -[ ${diskless} -eq 0 ] && writelog "\tDisk UUID:\t\t$diskuuid" -writelog "Virtual Hardware:" -writelog "\tCPU cores:\t\t${cpu_cores}\c" -[ ${vtflag} -eq 0 ] && writelog "" -[ ${vtflag} -eq 1 ] && writelog " (VT enabled CPU)" -writelog "\tGuest RAM:\t\t${mem} MB" -# echo nur wenn hostmem gesetzt -[ -n "${hostmem}" ] && writelog "\tHost RAM:\t\t${hostmem} MB" -writelog "\tMAC address:\t\t$macaddr" -writelog "\tNetwork card:\t\t${vb_network_card}" -writelog "\tNetwork kind:\t\t${network_kind}" -writelog "\tBooting from:\t\t${boot}\c" -[ ${diskless} -eq 0 ] && writelog "" -[ ${diskless} -eq 1 ] && writelog " 'diskless'" -# TODO: server start activate via xml, etc... -#writelog "\tGuest VRDP port:\t${vrdpport}" -writelog "\tCD-ROM1:\t\t${cdrom0}" -#writelog "\tCD-ROM2:\t\t${cdrom1}" -#writelog "\tFloppy_A:\t\t${floppy0}" -#writelog "\tFloppy_B:\t\t${floppy1}" -# defined in run-virt.sh and run-vmgrid.sh -writelog "\tShared Folders '${sharename}':\t${sharepath}" - -################################################################################ -### Pepare and configure virtual machine and disk image -################################################################################ - -# create Virtualbox.xml -. ${PLUGINCONFVIRTUALBOX}/virtualbox.include - -# remove snapshot disk when using rw images -if [ "${imgtype}" != "Immutable" ]; then - sed -i "/${snapshotuuid}/d" "${confdir}/VirtualBox.xml" -fi - -# TODO: add rawdisk if requested -#"raw.vmdk" format="VMDK" type="Writethrough"/> - -# create machine.xml -. ${PLUGINCONFVIRTUALBOX}/machine.include - -# remove CD-ROM -if [ "${cdrom0}" != "TRUE" ]; then - sed -i "/HostDrive/d" ${machconfig} - sed -i '/AttachedDevice.*type="DVD"/d' ${machconfig} - sed -i "//d" ${machconfig} -fi - -# if diskless remove all disks -if [ ${diskless} -eq 1 ]; then - sed -i "//d" ${machconfig} -fi - -# define redirects -if [ ${redirects} -ge 1 ]; then - (( i=1 )) - writelog "\tGuest redirects:\t\c" - while [ ${i} -le ${redirects} ]; do - extradataitem='" - extradatahostport="HostPort\" value=\"${redirect_hport[$i]}\"/>" - extradataguestport="GuestPort\" value=\"${redirect_gport[$i]}\"/>" - sed -i "s,, ${extradataitem}${extradataguestport}\n\ - ${extradataitem}${extradatahostport}\n\ - ${extradataitem}${extradataprotocol}\n\ - ," "${machconfig}" - writelog "${tabspace}${redirect_name[$i]} port: ${redirect_hport[$i]}" - tabspace='\t\t\t\t' - (( i=$i+1 )) - done -fi - -################################################################################ -### finally set env for run-virt.sh -################################################################################ - -# wait for a certain command to settle -# get the PID of the right process -# kill PID, seems to work -VBMANPID=$(pstree -p | grep VBoxXPCOMIPCD | grep -ivE "VirtualBox|VBoxHeadless"\ - | sed -e "s/.*VBoxXPCOMIPCD(\(.*\)).*/\1/") -for i in $(echo ${VBMANPID}); do - kill -9 ${VBMANPID} >/dev/null 2>&1 -done - -# set the variables appropriately (several interfaces with different names) -VIRTCMD=$(which VirtualBox 2>/dev/null) -VIRTCMDOPTS="--startvm ${machineuuid} --start-running" - -# set headless mode (-v off to disable vrdp) -VIRTCMDHL=$(which VBoxHeadless 2>/dev/null) -VIRTCMDOPTSHL="-s ${machineuuid}" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf deleted file mode 100755 index 066165a..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.conf +++ /dev/null @@ -1,6 +0,0 @@ -virtualbox_active="1" -virtualbox_bridge="1" -virtualbox_imagesrc="" -virtualbox_kvm="" -virtualbox_mem="" -virtualbox_tftpdir="/var/lib/virt/virtualbox" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include deleted file mode 100755 index 9576fc9..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualbox/virtualbox.include +++ /dev/null @@ -1,47 +0,0 @@ -# Include file (general template) for run-virt.include of the virtualbox plugin -cat << EOF > "${confdir}/VirtualBox.xml" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -EOF diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf deleted file mode 100755 index db25059..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/virtualization/virtualization.conf +++ /dev/null @@ -1,8 +0,0 @@ -totalmem=4023 -cpu_cores=2 -host_arch=i686 -vtflag=1 -kvm_module="kvm_amd" -hostmacaddr=00:1e:0b:27:f4:99 -hostip=132.230.4.20 -hostname=lsfks20 diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf deleted file mode 100755 index f4fc3a0..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmchooser/vmchooser.conf +++ /dev/null @@ -1,3 +0,0 @@ -vmchooser_active="1" -vmchooser_env="default" -vmchooser_xmlpath="/var/lib/virt/vmware" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include deleted file mode 100755 index 2010dc4..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/run-virt.include +++ /dev/null @@ -1,448 +0,0 @@ -# run-virt.include -# ----------------------------------------------------------------------------- -# Copyright (c) 2009..2010 - RZ Uni Freiburg -# Copyright (c) 2009..2010 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# run-virt.include -# - component for vmware/player of the vmchooser plugin run-virt.sh -################################################################################ - -# configuration writer functions -################################################################################ - -runvmwareconfheader () -{ -echo "# This configuration file was generated by $0" >${conffile} - -case "$vmversion" in - *) - svga_autodetect="TRUE" - numvcpus="1" - shared_folder="FALSE" - echo ".encoding = \"UTF-8\" -# version specific stuff - all versions -config.version = \"8\"" >>${conffile} - ;; -esac -case "$vmversion" in - 2.*|3.*|6.*|7.*) - shared_folder="TRUE" - echo " -# version specific stuff - ver. 2.*|3.*|6.*|7.* -sharedFolder.option = \"alwaysEnabled\"" >>${conffile} - ;; -esac -case "$vmversion" in - 2.5|3.*|6.5|7.*) - if [ "${cpu_cores}" -ge "2" 2>/dev/null ]; then - numvcpus="2" - fi - cap3d="TRUE" # helper var for loging output - echo " -# version specific stuff - ver. 2.5|3.*|6.5|7.* -ehci.present = \"TRUE\" -mks.enable3d = \"${enable3d}\"" >>${conffile} - ;; -esac -case "$vmversion" in - 3.*|7.*) - numvcpus="${cpu_cores}" - # svga_autodetect="FALSE" # if defined manual, see below - echo " -# version specific stuff - ver. 3.*|7.* -cpuid.coresPerSocket = \"${cpu_cores}\" -maxvcpus = \"4\" -# svga.numDisplays = "2" -# svga.maxWidth = "2560" -# svga.maxHeight = "2048" -# svga.vramSize = "134217728" -monitor.virtual_mmu = \"automatic\" -monitor.virtual_exec = \"automatic\" -floppy1.clientDevice = \"FALSE\" -floppy1.readonly = \"TRUE\"" >>${conffile} - ;; -esac - -echo " -# id -virtualHW.version = \"${hwver}\" -displayName = \"${displayname}\" -guestOS = \"${vmostype}\" - -# CPU/MEM -numvcpus = \"${numvcpus}\" -memsize = \"${mem}\" -MemAllowAutoScaleDown = \"FALSE\" -MemTrimRate = \"-1\" - -# ide-disks -ide0:0.present = \"${ide}\" -ide0:0.fileName = \"${diskfile}\" -ide0:0.mode = \"independent-nonpersistent\" -ide1:0.present = \"${cdrom0}\" -ide1:0.autodetect = \"TRUE\" -ide1:0.fileName = \"auto detect\" -ide1:0.deviceType = \"cdrom-raw\" -ide1:1.present = \"${cdrom1}\" -ide1:1.autodetect = \"TRUE\" -ide1:1.fileName = \"auto detect\" -ide1:1.deviceType = \"cdrom-raw\" - -# scsi-disks -scsi0.present = \"${scsi}\" -scsi0:0.present = \"${scsi}\" -scsi0:0.fileName = \"${diskfile}\" -scsi0.virtualDev = \"${hddrv}\" -scsi0:0.mode = \"independent-nonpersistent\" - -# floppies -floppy0.present = \"${floppy0}\" -floppy0.startConnected = \"FALSE\" -floppy0.autodetect = \"TRUE\" -floppy0.fileName = \"auto detect\" -# we need floppy b: for our windows client configuration -floppy1.present = \"${floppy1}\" -floppy1.startConnected = \"TRUE\" -floppy1.fileType = \"file\" -floppy1.fileName = \"${floppy1name}\" - -# nics -ethernet0.present = \"TRUE\" -ethernet0.addressType = \"static\" -${network_virtualDev} -ethernet0.connectionType = \"${network_kind}\" -#ethernet1.connectionType = \"custom\" -#ethernet1.vnet = \"/dev/vmnet2\" -ethernet0.address = \"00:50:56:${VM_ID}:${machostpart}\" -ethernet0.wakeOnPcktRcv = \"FALSE\" - -# sound -sound.present = \"TRUE\" -sound.fileName = \"-1\" -sound.autodetect = \"TRUE\" - -# svga -svga.autodetect = \"${svga_autodetect}\" - -# usb -usb.present = \"TRUE\" -usb.generic.autoconnect = \"TRUE\" - -# shared folders -sharedFolder0.present = \"TRUE\" -sharedFolder0.enabled = \"${shared_folder}\" -sharedFolder0.expiration = \"never\" -sharedFolder0.guestName = \"${sharename}\" -sharedFolder0.hostPath = \"${sharepath}\" -sharedFolder0.readAccess = \"TRUE\" -sharedFolder0.writeAccess = \"TRUE\" -sharedFolder.maxNum = \"1\" - -# dirs/configs -tmpDirectory = \"${redodir}\" -redoLogDir = \"${redodir}\" -mainMem.useNamedFile = \"TRUE\" -snapshot.disabled = \"TRUE\" -tools.syncTime = \"TRUE\" -isolation.tools.hgfs.disable = \"FALSE\" -hgfs.mapRootShare = \"TRUE\" -isolation.tools.dnd.disable = \"FALSE\" -isolation.tools.copy.enable = \"TRUE\" -isolation.tools.paste.enabled = \"TRUE\" - -# serial port -serial0.present = \"${serial}\" -${serialdev} - -# parallel port -parallel0.present = \"${parallel}\" -parallel0.bidirectional = \"${paralbidi}\" -${paraldev}" >>${conffile} - -# set the appropriate permissions for the vmware config file -chmod u+rwx ${conffile} >/dev/null 2>&1 -} - -preferencesheader () -{ -echo ".encoding = \"UTF-8\" -# This configuration file was generated by $0 - -# updates/tips -webUpdate.enabled = \"FALSE\" -pref.downloadPermission = \"deny\" -pref.vmplayer.downloadPermission = \"deny\" -pref.vmplayer.webUpdateOnStartup = \"FALSE\" -pref.tip.startup = \"FALSE\" -hints.hideAll = \"TRUE\" -hint.vmui.showAllUSBDevs = \"FALSE\" - -# configs -prefvmx.defaultVMPath = \"${vmhome}\" -prefvmx.mru.config = \"${conffile}:\" - -# hot keys -pref.hotkey.control = \"true\" -pref.hotkey.alt = \"true\" -pref.hotkey.shift = \"true\" -pref.hotkey.gui = \"true\" -gui.restricted = \"true\" - -# fullscreen/mouse/keyboard -pref.fullscreen.toolbarPixels = \"0\" -pref.vmplayer.fullscreen.autohide = \"TRUE\" -pref.grabOnMouseClick = \"TRUE\" -pref.grabOnKeyPress = \"FALSE\" -pref.motionGrab = \"TRUE\" -pref.motionUngrab = \"TRUE\" -pref.hideCursorOnUngrab = \"TRUE\" -pref.autoFit = \"TRUE\" -pref.autoFitFullScreen = \"fitGuestToHost\" -pref.vmplayer.exit.vmAction = \"poweroff\" -pref.vmplayer.confirmOnExit = \"TRUE\" - -# shared folders -pref.enableAllSharedFolders = \"TRUE\" - -# eula -pref.eula.size = \"2\" -pref.eula.0.appName = \"VMware Player\" -pref.eula.0.buildNumber = \"${vmbuild}\" -pref.eula.1.appName = \"VMware Workstation\" -pref.eula.1.buildNumber = \"${vmbuild}\"" >${vmhome}/preferences -} - - -# declaration of default variables -################################################################################ - -# VM-ID static (0D), remove if changed to 00 -VM_ID="0D" -# temporary disk space for logs, etc... -redodir=/tmp/vmware/${USER} -# dir for configs and vmem file -confdir=${redodir} -# configfile -conffile="${confdir}/run-vmware.conf" -# diskfile -diskfile=${vmpath} -# users vmware config folder -vmhome="${HOME}/.vmware" - -# get several version infos for vmware/player -. ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf -vmbuild=$buildversion -vmversion=$version - -# VMware start options -# "-X": start in fullscreen -vmopt="-X" - - -# hardware checks -################################################################################ - -# use different network card -if [ -n "${network_card}" ]; then - network_virtualDev='ethernet0.virtualDev = "e1000"' -else - network_virtualDev='# using default virtualDev for ethernet0' -fi - -case "$enable3d" in - *true*|*TRUE*|*yes*|*YES*) - enable3d="TRUE" - ;; - *) - enable3d="FALSE" - ;; -esac - -# serial/parallel port defined (e.g. "ttyS0, lp0" or "autodetect") -case "$serial" in - tty*) - serialdev="serial0.filename = \"/dev/${serial}\"" - serial="TRUE" - ;; - auto*) - serialdev="serial0.autodetect = \"TRUE\"" - serial="TRUE" - ;; - *) - serialdev="# no serial port configured" - serial="FALSE" - ;; -esac -case "$parallel" in - lp*|parport*) - paraldev="parallel0.filename = \"/dev/${parallel}\"" - paralbidi="TRUE" - parallel="TRUE" - ;; - auto*) - paraldev="parallel0.autodetect = \"TRUE\"" - paralbidi="TRUE" - parallel="TRUE" - ;; - *) - paraldev="# no parallel port configured" - paralbidi="FALSE" - parallel="FALSE" - ;; -esac - -# adjust memory available for vmware guests -#if [ -n "${forcemem}" ]; then -# mem="${forcemem}" -#else -# case "$vmversion" in -# 2.*|6.*) -# permem=30 -# ;; -# 3.*|7.*) -# permem=25 -# ;; -# esac -# if [ "${totalmem}" -ge "2500" ]; then -# permem=40 -# fi -# # check if /tmp is on harddisk -# if grep -qe "/dev/.* /tmp " /proc/mounts ; then -# permem=60 -# id44="1" -# # Hack, if more than 2,5G RAM use 40% of Ram and write vmem into Ram as well -# # (40% vmware | 40% confdir(vmem...) | 20% host -# # VMplayer 2+ issue -# if [ "${totalmem}" -ge "2500" ]; then -# permem=40 -# confdir=/dev/shm/vmware/$USER -# conffile=${confdir}/run-vmware.conf -# mkdir -p /dev/shm/vmware/$USER -# fi -# fi -# mem=$(expr ${totalmem} / 100 \* ${permem} / 4 \* 4) -# if [ "${id44}" = "1" ]; then -# hostmem=$(expr ${totalmem} - ${mem}) -# else -# hostmem=$(expr ${totalmem} - ${mem} - ${mem}) -# fi -#fi - -# check if ide/scsi and hwver of image -# read only the first 30 lines to be shure -imghead=$(head -30 ${diskfile}) -hddrv=$(echo "${imghead}" | grep -m1 -ia "ddb.adapterType" |\ - awk -F '"' '{print $2}') -hwver=$(echo "${imghead}" | grep -m1 -ia "ddb.virtualHWVersion" |\ - awk -F '"' '{print $2}') -case "${hddrv}" in - ide) - ide="TRUE" - scsi="FALSE" - ;; - lsilogic|buslogic) - ide="FALSE" - scsi="TRUE" - ;; -esac - - -# write configuration files -################################################################################ - -# create vmware directories -mkdir -p ${redodir} >/dev/null 2>&1 -mkdir -p ${confdir} >/dev/null 2>&1 -mkdir -p ${vmhome} >/dev/null 2>&1 - -# create preferences -preferencesheader - -# create VMware startup file -runvmwareconfheader -# link to conffile if confdir != redodir -ln -s ${conffile} ${redodir}/run-vmware.conf >/dev/null 2>&1 - -# sync is needed to ensure that data is really written to virtual disk -sync - -# own nvram. We need it for floppy drive b, default nvram has just drive a -# TODO: optimize, currently kinda inefficient, too much copys, but we -# don't know which one is installed... -for i in /opt/openslx/plugin-repo/vmware/*; do - cp ${i}/nvram ${confdir}/nvram 2>/dev/null -done - - -# logging and stdout -################################################################################ - -# log script information -writelog "# File created by $0 (VMversion ${vmversion})\n# on $(date)\n" -writelog "Starting with non-persistent mode ...\n" - -# check memory range -if [ "${mem}" -lt "256" ] || [ "${hostmem}" -lt "256" ]; then - writelog "\tMemory out of range: ${mem} MB (guest) / ${hostmem} MB (host)!" - writelog "\tMin. 256 MB for host and guest!" - exit 1 -fi - -# write all results to logfile -# log disksetup -writelog "Directories:" -writelog "\tConfdir:\t${confdir}" -writelog "\tConffile:\t${conffile}" -writelog "\tRedodir:\t${redodir}" -writelog "\tVMhome:\t\t${vmhome}" -writelog "\t/tmp info: \ - $(grep "/tmp " /proc/mounts) $(df -h | grep " /tmp$" | awk '{print $2}')" -# hw setup -writelog "Hardware:" -writelog "\tMAC:\t\t00:50:56:${VM_ID}:${machostpart}" -if [ -n "${network_card}" ]; then - writelog "\tNet Adaptor:\t${network_card}" -fi -writelog "\tMem:\t\t${mem} MB" -# echo nur wenn hostmem gesetzt -[ -n "${hostmem}" ] && writelog "\tHostmem:\t${hostmem} MB" -writelog "\tMax. res.:\t${xres}x${yres}" -writelog "\tCD-ROM1:\t${cdrom0}" -writelog "\tCD-ROM2:\t${cdrom1}" -writelog "\tFloppy_A:\t${floppy0}" -if [ "${serial}" = "TRUE" ]; then - writelog "\tSerial Port:\t${serialdev}" -fi -if [ "${parallel}" = "TRUE" ]; then - writelog "\tParallel Port:\t${paraldev}" -fi -# image -writelog "Diskimage:" -writelog "\tDiskfile:\t${diskfile}" -writelog "\tDisktype:\t${hddrv}" -writelog "\tHWVersion:\t${hwver}" -writelog "\tVMostype:\t${vmostype}" -# misc -writelog "Misc:" -writelog "\tDisplayname:\t${displayname}" -if [ "${cap3d}" = "TRUE" -a "${enable3d}" = "TRUE" ]; then - writelog "\t3D Graphics:\tenabled" -fi -# empty line at end -writelog "" - - -# finally set env for run-virt.sh -################################################################################ - -# using the modified version of the wrapper script -VIRTCMD="${OPENSLX_DEFAULT_BINDIR}/vmplayer" -VIRTCMDOPTS="${vmopt} ${conffile}" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf b/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf deleted file mode 100755 index aaf5ce7..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/plugins/vmware/vmware.conf +++ /dev/null @@ -1,8 +0,0 @@ -# configuration file for vmware background services written in stage3 setup -vmnet0=true -vmnet1=192.168.101.1/24 -vmnet1nat=true -vmnet8=192.168.102.1/24 -# stage1 variables produced during plugin install -version="7.0" -buildversion="261024" diff --git a/resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf b/resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf deleted file mode 100755 index e292cc0..0000000 --- a/resources/config/1/uniontmp/etc/opt/openslx/udhcpd.conf +++ /dev/null @@ -1,37 +0,0 @@ -# general udhcpd configuration file for virtual machines written by -# /bin/init-wrapper during OpenSLX stage3 configuration - -# start and end of the IP lease block -start CNETWORK.20 -end CNETWORK.100 - -# interface that udhcpd will use -interface NWIF - -# how long an offered address is reserved (leased) in seconds -offer_time 6000 - -# location of the leases file -lease_file LEASEFILE - -# location of the pid file -pidfile PIDFILE - -option dns 132.230.200.200 132.230.201.111 -option subnet 255.255.255.0 -option router CNETWORK.1 -option wins CNETWORK.10 -option domain virtual.site ruf.uni-freiburg.de - -# additional options known to udhcpd -#subnet #timezone -#router #timesvr -#namesvr #dns -#logsvr #cookiesvr -#lprsvr #bootsize -#domain #swapsvr -#rootpath #ipttl -#mtu #broadcast -#wins #lease -#ntpsrv #tftp -#bootfile diff --git a/resources/config/1/uniontmp/etc/pam.d/common-account b/resources/config/1/uniontmp/etc/pam.d/common-account deleted file mode 100755 index 3caf0dd..0000000 --- a/resources/config/1/uniontmp/etc/pam.d/common-account +++ /dev/null @@ -1,5 +0,0 @@ -# file copied from configuration package (rootfs/etc/pam.d/common-account) -account requisite pam_unix.so -account [success=ok new_authtok_reqd=ok ignore=ignore default=bad user_unknown=ignore] pam_krb5.so use_first_pass -account sufficient pam_localuser.so -account required pam_ldap.so use_first_pass diff --git a/resources/config/1/uniontmp/etc/pam.d/common-auth b/resources/config/1/uniontmp/etc/pam.d/common-auth deleted file mode 100755 index 5b8c00b..0000000 --- a/resources/config/1/uniontmp/etc/pam.d/common-auth +++ /dev/null @@ -1,15 +0,0 @@ -# file copied from configuration package (rootfs/etc/pam.d/common-auth) -# -# /etc/pam.d/common-auth - authentication settings common to all services -# -# This file is included from other service-specific PAM config files, -# and should contain a list of the authentication modules that define -# the central authentication scheme for use on the system -# (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the -# traditional Unix authentication mechanisms. -# -auth required pam_env.so -auth optional pam_group.so -auth sufficient pam_unix.so -auth sufficient pam_krb5.so use_first_pass -auth required pam_ldap.so use_first_pass diff --git a/resources/config/1/uniontmp/etc/pam.d/common-session b/resources/config/1/uniontmp/etc/pam.d/common-session deleted file mode 100755 index aec02b8..0000000 --- a/resources/config/1/uniontmp/etc/pam.d/common-session +++ /dev/null @@ -1,5 +0,0 @@ -# file copied from configuration package (rootfs/etc/pam.d/common-session) -session required pam_limits.so -session required pam_unix.so -session optional pam_krb5.so -session optional pam_umask.so diff --git a/resources/config/1/uniontmp/etc/passwd b/resources/config/1/uniontmp/etc/passwd deleted file mode 100755 index cb0f764..0000000 --- a/resources/config/1/uniontmp/etc/passwd +++ /dev/null @@ -1,39 +0,0 @@ -root:x:0:0:root:/root:/bin/bash -daemon:x:1:1:daemon:/usr/sbin:/bin/sh -bin:x:2:2:bin:/bin:/bin/sh -sys:x:3:3:sys:/dev:/bin/sh -sync:x:4:65534:sync:/bin:/bin/sync -games:x:5:60:games:/usr/games:/bin/sh -man:x:6:12:man:/var/cache/man:/bin/sh -lp:x:7:7:lp:/var/spool/lpd:/bin/sh -mail:x:8:8:mail:/var/mail:/bin/sh -news:x:9:9:news:/var/spool/news:/bin/sh -uucp:x:10:10:uucp:/var/spool/uucp:/bin/sh -proxy:x:13:13:proxy:/bin:/bin/sh -www-data:x:33:33:www-data:/var/www:/bin/sh -backup:x:34:34:backup:/var/backups:/bin/sh -list:x:38:38:Mailing List Manager:/var/list:/bin/sh -irc:x:39:39:ircd:/var/run/ircd:/bin/sh -gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/bin/sh -libuuid:x:100:101::/var/lib/libuuid:/bin/sh -syslog:x:101:102::/home/syslog:/bin/false -messagebus:x:102:106::/var/run/dbus:/bin/false -hplip:x:103:7:HPLIP system user,,,:/var/run/hplip:/bin/false -avahi-autoipd:x:104:110:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false -avahi:x:105:111:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false -couchdb:x:106:113:CouchDB Administrator,,,:/var/lib/couchdb:/bin/bash -speech-dispatcher:x:107:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/sh -haldaemon:x:108:114:Hardware abstraction layer,,,:/var/run/hald:/bin/false -kernoops:x:109:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false -pulse:x:110:116:PulseAudio daemon,,,:/var/run/pulse:/bin/false -rtkit:x:111:118:RealtimeKit,,,:/proc:/bin/false -saned:x:112:119::/home/saned:/bin/false -gdm:x:113:120:Gnome Display Manager:/var/lib/gdm:/bin/false -polkituser:x:114:122:PolicyKit,,,:/var/run/PolicyKit:/bin/false -usbmux:x:115:46:usbmux daemon,,,:/home/usbmux:/bin/false -statd:x:116:65534::/var/lib/nfs:/bin/false -sshd:x:117:65534::/var/run/sshd:/usr/sbin/nologin -oprofile:x:118:125:OProfile JIT user,,,:/var/lib/oprofile:/bin/bash -jetty:x:119:126::/usr/share/jetty:/bin/false -postfix:x:120:127::/var/spool/postfix:/bin/false -nobody:x:65534:65534:nobody:/nonexistent:/bin/sh diff --git a/resources/config/1/uniontmp/etc/profile b/resources/config/1/uniontmp/etc/profile deleted file mode 100755 index 37ef457..0000000 --- a/resources/config/1/uniontmp/etc/profile +++ /dev/null @@ -1,30 +0,0 @@ -# /etc/profile: system-wide .profile file for the Bourne shell (sh(1)) -# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...). - -if [ -d /etc/profile.d ]; then - for i in /etc/profile.d/*.sh; do - if [ -r $i ]; then - . $i - fi - done - unset i -fi - -if [ "$PS1" ]; then - if [ "$BASH" ]; then - PS1='\u@\h:\w\$ ' - if [ -f /etc/bash.bashrc ]; then - . /etc/bash.bashrc - fi - else - if [ "`id -u`" -eq 0 ]; then - PS1='# ' - else - PS1='$ ' - fi - fi -fi - -umask 022 -# stuff generated by /bin/servconfig (out of InitRamFS written 14.10.2010) -export PATH="$PATH:/var/opt/openslx/bin" diff --git a/resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx b/resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx deleted file mode 100755 index 093a79c..0000000 --- a/resources/config/1/uniontmp/etc/rc2.d/K02vbox-slx +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vbox-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -running () { -lsmod | grep -q "$1[^_-]" -} - -vmstatus () { -if running vboxdrv; then - if running vboxnetflt; then - echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." - else - echo "VirtualBox kernel module is loaded." - fi - #TODO: check it: ignore user check. handling our own way: - for i in /tmp/.vbox-*-ipc; do - echo "Running: " - $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) - done - else - echo "VirtualBox kernel module(s) are not loaded." -fi - -} - -start () { - echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ - >/etc/udev/rules.d/90-vboxusb.rules - echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ - GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules - modprobe -qa vboxdrv vboxnetflt vboxnetadp -} - -stop () { - rmmod vboxnetadp vboxnetflt vboxdrv -} - - -case "$1" in - start) - #start: defines start function for initscript - start - ;; - stop) - #stop: defines stop function for initscript - stop - ;; - restart) - #restart: defines restart function for initscript - stop && start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc2.d/K02vmware-env b/resources/config/1/uniontmp/etc/rc2.d/K02vmware-env deleted file mode 100755 index ddc4f5c..0000000 --- a/resources/config/1/uniontmp/etc/rc2.d/K02vmware-env +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vmware-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for VMware Workstation or Player (local3X). -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -load_modules () { -# VMplayer common stuff -insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 -insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 -# VMplayer 3.X specific stuff -insmod /lib/modules/$(uname -r)/misc/vmci.ko -insmod /lib/modules/$(uname -r)/misc/vmblock.ko -insmod /lib/modules/$(uname -r)/misc/vsock.ko - -} - -unload_modules () { -rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null -} - -vmnetif () { -# let point the path directly to the directory where the binary lives -location="/usr/bin" -if [ -n "$vmnet0" ] ; then - # the path might be directly point to the plugin dir - $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 -fi -if [ -n "$vmnet1" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ - /dev/vmnet1 vmnet1 - ip addr add $vmnet1 dev vmnet1 - ip link set vmnet1 up - if [ -n "$vmnet1nat" ] ; then - echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - #iptables -A -s vmnet1 -d br0 - fi - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf -fi -if [ -n "$vmnet8" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ - /dev/vmnet8 vmnet8 - ip addr add $vmnet8 dev vmnet8 - ip link set vmnet8 up - echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf -fi - -} - -vmblock () { -# let point the path directly to the directory where the binary lives - /usr/bin/vmware-usbarbitrator - -} - - -case "$1" in - start) - #start: defines start function for initscript - # include default directories - . /etc/opt/openslx/openslx.conf - # load the configuration file - . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf - # hack to access the first serial/parallel port - chmod a+rw /dev/ttyS0 - chmod a+rw /dev/parport0 - load_modules - vmnetif - vmblock - - ;; - stop) - #stop: defines stop function for initscript - killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ - vmware-tray vmnet-dhcpd 2>/dev/null - # might take a while until all services are shut down - sleep 1 - unload_modules - - ;; - restart) - #restart: defines restart function for initscript - $0 stop && $0 start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx b/resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx deleted file mode 100755 index 093a79c..0000000 --- a/resources/config/1/uniontmp/etc/rc2.d/S20vbox-slx +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vbox-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -running () { -lsmod | grep -q "$1[^_-]" -} - -vmstatus () { -if running vboxdrv; then - if running vboxnetflt; then - echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." - else - echo "VirtualBox kernel module is loaded." - fi - #TODO: check it: ignore user check. handling our own way: - for i in /tmp/.vbox-*-ipc; do - echo "Running: " - $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) - done - else - echo "VirtualBox kernel module(s) are not loaded." -fi - -} - -start () { - echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ - >/etc/udev/rules.d/90-vboxusb.rules - echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ - GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules - modprobe -qa vboxdrv vboxnetflt vboxnetadp -} - -stop () { - rmmod vboxnetadp vboxnetflt vboxdrv -} - - -case "$1" in - start) - #start: defines start function for initscript - start - ;; - stop) - #stop: defines stop function for initscript - stop - ;; - restart) - #restart: defines restart function for initscript - stop && start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc2.d/S20vmware-env b/resources/config/1/uniontmp/etc/rc2.d/S20vmware-env deleted file mode 100755 index ddc4f5c..0000000 --- a/resources/config/1/uniontmp/etc/rc2.d/S20vmware-env +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vmware-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for VMware Workstation or Player (local3X). -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -load_modules () { -# VMplayer common stuff -insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 -insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 -# VMplayer 3.X specific stuff -insmod /lib/modules/$(uname -r)/misc/vmci.ko -insmod /lib/modules/$(uname -r)/misc/vmblock.ko -insmod /lib/modules/$(uname -r)/misc/vsock.ko - -} - -unload_modules () { -rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null -} - -vmnetif () { -# let point the path directly to the directory where the binary lives -location="/usr/bin" -if [ -n "$vmnet0" ] ; then - # the path might be directly point to the plugin dir - $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 -fi -if [ -n "$vmnet1" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ - /dev/vmnet1 vmnet1 - ip addr add $vmnet1 dev vmnet1 - ip link set vmnet1 up - if [ -n "$vmnet1nat" ] ; then - echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - #iptables -A -s vmnet1 -d br0 - fi - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf -fi -if [ -n "$vmnet8" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ - /dev/vmnet8 vmnet8 - ip addr add $vmnet8 dev vmnet8 - ip link set vmnet8 up - echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf -fi - -} - -vmblock () { -# let point the path directly to the directory where the binary lives - /usr/bin/vmware-usbarbitrator - -} - - -case "$1" in - start) - #start: defines start function for initscript - # include default directories - . /etc/opt/openslx/openslx.conf - # load the configuration file - . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf - # hack to access the first serial/parallel port - chmod a+rw /dev/ttyS0 - chmod a+rw /dev/parport0 - load_modules - vmnetif - vmblock - - ;; - stop) - #stop: defines stop function for initscript - killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ - vmware-tray vmnet-dhcpd 2>/dev/null - # might take a while until all services are shut down - sleep 1 - unload_modules - - ;; - restart) - #restart: defines restart function for initscript - $0 stop && $0 start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx b/resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx deleted file mode 100755 index 093a79c..0000000 --- a/resources/config/1/uniontmp/etc/rc3.d/K02vbox-slx +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vbox-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -running () { -lsmod | grep -q "$1[^_-]" -} - -vmstatus () { -if running vboxdrv; then - if running vboxnetflt; then - echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." - else - echo "VirtualBox kernel module is loaded." - fi - #TODO: check it: ignore user check. handling our own way: - for i in /tmp/.vbox-*-ipc; do - echo "Running: " - $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) - done - else - echo "VirtualBox kernel module(s) are not loaded." -fi - -} - -start () { - echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ - >/etc/udev/rules.d/90-vboxusb.rules - echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ - GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules - modprobe -qa vboxdrv vboxnetflt vboxnetadp -} - -stop () { - rmmod vboxnetadp vboxnetflt vboxdrv -} - - -case "$1" in - start) - #start: defines start function for initscript - start - ;; - stop) - #stop: defines stop function for initscript - stop - ;; - restart) - #restart: defines restart function for initscript - stop && start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/K02vmware-env b/resources/config/1/uniontmp/etc/rc3.d/K02vmware-env deleted file mode 100755 index ddc4f5c..0000000 --- a/resources/config/1/uniontmp/etc/rc3.d/K02vmware-env +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vmware-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for VMware Workstation or Player (local3X). -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -load_modules () { -# VMplayer common stuff -insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 -insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 -# VMplayer 3.X specific stuff -insmod /lib/modules/$(uname -r)/misc/vmci.ko -insmod /lib/modules/$(uname -r)/misc/vmblock.ko -insmod /lib/modules/$(uname -r)/misc/vsock.ko - -} - -unload_modules () { -rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null -} - -vmnetif () { -# let point the path directly to the directory where the binary lives -location="/usr/bin" -if [ -n "$vmnet0" ] ; then - # the path might be directly point to the plugin dir - $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 -fi -if [ -n "$vmnet1" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ - /dev/vmnet1 vmnet1 - ip addr add $vmnet1 dev vmnet1 - ip link set vmnet1 up - if [ -n "$vmnet1nat" ] ; then - echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - #iptables -A -s vmnet1 -d br0 - fi - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf -fi -if [ -n "$vmnet8" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ - /dev/vmnet8 vmnet8 - ip addr add $vmnet8 dev vmnet8 - ip link set vmnet8 up - echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf -fi - -} - -vmblock () { -# let point the path directly to the directory where the binary lives - /usr/bin/vmware-usbarbitrator - -} - - -case "$1" in - start) - #start: defines start function for initscript - # include default directories - . /etc/opt/openslx/openslx.conf - # load the configuration file - . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf - # hack to access the first serial/parallel port - chmod a+rw /dev/ttyS0 - chmod a+rw /dev/parport0 - load_modules - vmnetif - vmblock - - ;; - stop) - #stop: defines stop function for initscript - killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ - vmware-tray vmnet-dhcpd 2>/dev/null - # might take a while until all services are shut down - sleep 1 - unload_modules - - ;; - restart) - #restart: defines restart function for initscript - $0 stop && $0 start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx b/resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx deleted file mode 100755 index 093a79c..0000000 --- a/resources/config/1/uniontmp/etc/rc3.d/S20vbox-slx +++ /dev/null @@ -1,89 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vbox-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for virtualbox. Part of OpenSLX virtualbox plugin. -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -running () { -lsmod | grep -q "$1[^_-]" -} - -vmstatus () { -if running vboxdrv; then - if running vboxnetflt; then - echo "VirtualBox kernel modules (vboxdrv and vboxnetflt) are loaded." - else - echo "VirtualBox kernel module is loaded." - fi - #TODO: check it: ignore user check. handling our own way: - for i in /tmp/.vbox-*-ipc; do - echo "Running: " - $(VBoxManage -q list runningvms | sed -e 's/^".*"//' 2>/dev/null) - done - else - echo "VirtualBox kernel module(s) are not loaded." -fi - -} - -start () { - echo "SUBSYSTEM==\"usb_device\", GROUP=\"vboxusers\", MODE=\"0666\"" \ - >/etc/udev/rules.d/90-vboxusb.rules - echo "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\",\ - GROUP=\"vboxusers\", MODE=\"0666\"" >>/etc/udev/rules.d/90-vboxusb.rules - modprobe -qa vboxdrv vboxnetflt vboxnetadp -} - -stop () { - rmmod vboxnetadp vboxnetflt vboxdrv -} - - -case "$1" in - start) - #start: defines start function for initscript - start - ;; - stop) - #stop: defines stop function for initscript - stop - ;; - restart) - #restart: defines restart function for initscript - stop && start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/rc3.d/S20vmware-env b/resources/config/1/uniontmp/etc/rc3.d/S20vmware-env deleted file mode 100755 index ddc4f5c..0000000 --- a/resources/config/1/uniontmp/etc/rc3.d/S20vmware-env +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/sh -# Copyright (c) 2009 - OpenSLX GmbH -# -# This program is free software distributed under the GPL version 2. -# See http://openslx.org/COPYING -# -# If you have any feedback please consult http://openslx.org/feedback and -# send your suggestions, praise, or complaints to feedback@openslx.org -# -# General information about OpenSLX can be found at http://openslx.org/ -# ----------------------------------------------------------------------------- -# §filename§ -# - §desc§ -# §generated§ -# ----------------------------------------------------------------------------- - -### BEGIN INIT INFO -# Provides: vmware-slx -# Required-Start: $remote_fs -# Required-Stop: $remote_fs -# Default-Start: 2 3 4 5 -# Default-Stop: 1 -# Short-Description: Setup environment for VMware Workstation or Player (local3X). -### END INIT INFO - -. /lib/lsb/init-functions - -#functions: helper functions -load_modules () { -# VMplayer common stuff -insmod /lib/modules/$(uname -r)/misc/vmmon.ko || return 1 -insmod /lib/modules/$(uname -r)/misc/vmnet.ko || return 1 -# VMplayer 3.X specific stuff -insmod /lib/modules/$(uname -r)/misc/vmci.ko -insmod /lib/modules/$(uname -r)/misc/vmblock.ko -insmod /lib/modules/$(uname -r)/misc/vsock.ko - -} - -unload_modules () { -rmmod vmnet vmmonvsock vmci vmblock 2>/dev/null -} - -vmnetif () { -# let point the path directly to the directory where the binary lives -location="/usr/bin" -if [ -n "$vmnet0" ] ; then - # the path might be directly point to the plugin dir - $location/vmnet-bridge -d /var/run/vmnet-bridge-0.pid -n 0 -fi -if [ -n "$vmnet1" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet1.pid \ - /dev/vmnet1 vmnet1 - ip addr add $vmnet1 dev vmnet1 - ip link set vmnet1 up - if [ -n "$vmnet1nat" ] ; then - echo "1" >/proc/sys/net/ipv4/conf/vmnet1/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - #iptables -A -s vmnet1 -d br0 - fi - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet1.conf -fi -if [ -n "$vmnet8" ] ; then - $location/vmnet-netifup -d /var/run/vmnet-netifup-vmnet8.pid \ - /dev/vmnet8 vmnet8 - ip addr add $vmnet8 dev vmnet8 - ip link set vmnet8 up - echo "1" >/proc/sys/net/ipv4/conf/vmnet8/forwarding 2>/dev/null - echo "1" >/proc/sys/net/ipv4/conf/br0/forwarding 2>/dev/null - iptables -t nat -A POSTROUTING -o br0 -j MASQUERADE - /opt/openslx/uclib-rootfs/usr/sbin/udhcpd \ - -S /etc/vmware/udhcpd/udhcpd-vmnet8.conf -fi - -} - -vmblock () { -# let point the path directly to the directory where the binary lives - /usr/bin/vmware-usbarbitrator - -} - - -case "$1" in - start) - #start: defines start function for initscript - # include default directories - . /etc/opt/openslx/openslx.conf - # load the configuration file - . ${OPENSLX_DEFAULT_CONFDIR}/plugins/vmware/vmware.conf - # hack to access the first serial/parallel port - chmod a+rw /dev/ttyS0 - chmod a+rw /dev/parport0 - load_modules - vmnetif - vmblock - - ;; - stop) - #stop: defines stop function for initscript - killall vmnet-netifup vmnet-natd vmnet-bridge vmware vmplayer \ - vmware-tray vmnet-dhcpd 2>/dev/null - # might take a while until all services are shut down - sleep 1 - unload_modules - - ;; - restart) - #restart: defines restart function for initscript - $0 stop && $0 start - ;; - status) - #status: defines status function for initscript - vmstatus - ;; - *) - #usage: defines usage function for initscript - ## print out usage - echo "Usage: $0 {start, stop, restart, status}" >&2 - exit 1 - ;; -esac - -exit 0 diff --git a/resources/config/1/uniontmp/etc/resolv.conf b/resources/config/1/uniontmp/etc/resolv.conf deleted file mode 100755 index 7b7c3b1..0000000 --- a/resources/config/1/uniontmp/etc/resolv.conf +++ /dev/null @@ -1,7 +0,0 @@ -# /etc/resolv.conf - file generated by -# /bin/servconfig: -# 14.10.2010 -#options timeout:1 attempts:1 rotate -search ruf.uni-freiburg.de -nameserver 132.230.200.200 -nameserver 132.230.201.111 diff --git a/resources/config/1/uniontmp/etc/security/group.conf b/resources/config/1/uniontmp/etc/security/group.conf deleted file mode 100755 index e966b95..0000000 --- a/resources/config/1/uniontmp/etc/security/group.conf +++ /dev/null @@ -1,105 +0,0 @@ -# -# This is the configuration file for the pam_group module. -# - -# -# *** Please note that giving group membership on a session basis is -# *** NOT inherently secure. If a user can create an executable that -# *** is setgid a group that they are infrequently given membership -# *** of, they can basically obtain group membership any time they -# *** like. Example: games are allowed between the hours of 6pm and 6am -# *** user joe logs in at 7pm writes a small C-program toplay.c that -# *** invokes their favorite shell, compiles it and does -# *** "chgrp games toplay; chmod g+s toplay". They are basically able -# *** to play games any time... You have been warned. AGM -# - -# -# The syntax of the lines is as follows: -# -# services;ttys;users;times;groups -# -# white space is ignored and lines maybe extended with '\\n' (escaped -# newlines). From reading these comments, it is clear that -# text following a '#' is ignored to the end of the line. -# -# the combination of individual users/terminals etc is a logic list -# namely individual tokens that are optionally prefixed with '!' (logical -# not) and separated with '&' (logical and) and '|' (logical or). -# -# services -# is a logic list of PAM service names that the rule applies to. -# -# ttys -# is a logic list of terminal names that this rule applies to. -# -# users -# is a logic list of users or a netgroup of users to whom this -# rule applies. -# -# NB. For these items the simple wildcard '*' may be used only once. -# With netgroups no wildcards or logic operators are allowed. -# -# times -# It is used to indicate "when" these groups are to be given to the -# user. The format here is a logic list of day/time-range -# entries the days are specified by a sequence of two character -# entries, MoTuSa for example is Monday Tuesday and Saturday. Note -# that repeated days are unset MoMo = no day, and MoWk = all weekdays -# bar Monday. The two character combinations accepted are -# -# Mo Tu We Th Fr Sa Su Wk Wd Al -# -# the last two being week-end days and all 7 days of the week -# respectively. As a final example, AlFr means all days except Friday. -# -# Each day/time-range can be prefixed with a '!' to indicate "anything -# but" -# -# The time-range part is two 24-hour times HHMM separated by a hyphen -# indicating the start and finish time (if the finish time is smaller -# than the start time it is deemed to apply on the following day). -# -# groups -# The (comma or space separated) list of groups that the user -# inherits membership of. These groups are added if the previous -# fields are satisfied by the user's request -# -# For a rule to be active, ALL of service+ttys+users must be satisfied -# by the applying process. -# - -# -# Note, to get this to work as it is currently typed you need -# -# 1. to run an application as root -# 2. add the following groups to the /etc/group file: -# floppy, games, sound -# - -# -# Here is a simple example: running 'xsh' on tty* (any ttyXXX device), -# the user 'us' is given access to the floppy (through membership of -# the floppy group) -# - -#xsh;tty*&!ttyp*;us;Al0000-2400;floppy - -# -# another example: running 'xsh' on tty* (any ttyXXX device), -# the user 'sword' is given access to games (through membership of -# the sound and play group) after work hours. (The games group owns -# high-score files and so on, so don't ever give users access to it.) -# - -#xsh; tty* ;sword;!Wk0900-1800;sound, play -#xsh; tty* ;*;Al0900-1800;floppy - -login;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip -kdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video -gdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video -xdm;*;*;Al0000-2400;users,cdrom,floppy,plugdev,audio,dip,video - -# -# End of group.conf file -# diff --git a/resources/config/1/uniontmp/etc/shadow b/resources/config/1/uniontmp/etc/shadow deleted file mode 100755 index 1b0e924..0000000 --- a/resources/config/1/uniontmp/etc/shadow +++ /dev/null @@ -1,39 +0,0 @@ -root:$6$KrXGhPkB$rxmsVo.85I8FItXSQFobSV7YPO.aKpDZntIARf73GivVRlPv09ZBnEoHjUTyLwLMQyaLMbTXfFU0LQu2xRrUX.:14358:0:99999:7::: -daemon:!:13078:0:99999:7::: -bin:!:13078:0:99999:7::: -sys:!:13078:0:99999:7::: -sync:!:13078:0:99999:7::: -games:!:13078:0:99999:7::: -man:!:13078:0:99999:7::: -lp:!:13078:0:99999:7::: -mail:!:13078:0:99999:7::: -news:!:13078:0:99999:7::: -uucp:!:13078:0:99999:7::: -proxy:!:13078:0:99999:7::: -www-data:!:13078:0:99999:7::: -backup:!:13078:0:99999:7::: -list:!:13078:0:99999:7::: -irc:!:13078:0:99999:7::: -gnats:!:13078:0:99999:7::: -libuuid:!:13078:0:99999:7::: -syslog:!:13078:0:99999:7::: -messagebus:!:13078:0:99999:7::: -hplip:!:13078:0:99999:7::: -avahi-autoipd:!:13078:0:99999:7::: -avahi:!:13078:0:99999:7::: -couchdb:!:13078:0:99999:7::: -speech-dispatcher:!:13078:0:99999:7::: -haldaemon:!:13078:0:99999:7::: -kernoops:!:13078:0:99999:7::: -pulse:!:13078:0:99999:7::: -rtkit:!:13078:0:99999:7::: -saned:!:13078:0:99999:7::: -gdm:!:13078:0:99999:7::: -polkituser:!:13078:0:99999:7::: -usbmux:!:13078:0:99999:7::: -statd:!:13078:0:99999:7::: -sshd:!:13078:0:99999:7::: -oprofile:!:13078:0:99999:7::: -jetty:!:13078:0:99999:7::: -postfix:!:13078:0:99999:7::: -nobody:!:13078:0:99999:7::: diff --git a/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules b/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules deleted file mode 100755 index e75b4a0..0000000 --- a/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-cd.rules +++ /dev/null @@ -1,12 +0,0 @@ -# This file was automatically generated by the /lib/udev/write_cd_rules -# program, run by the cd-aliases-generator.rules rules file. -# -# You can modify it, as long as you keep each rule on a single -# line, and set the $GENERATED variable. - -# DVD-RAM_GSA-H60L (pci-0000:00:12.0-scsi-1:0:0:0) -SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="cdrom", ENV{GENERATED}="1" -SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="cdrw", ENV{GENERATED}="1" -SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="dvd", ENV{GENERATED}="1" -SUBSYSTEM=="block", ENV{ID_CDROM}=="?*", ENV{ID_PATH}=="pci-0000:00:12.0-scsi-1:0:0:0", SYMLINK+="dvdrw", ENV{GENERATED}="1" - diff --git a/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules b/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules deleted file mode 100755 index ab66721..0000000 --- a/resources/config/1/uniontmp/etc/udev/rules.d/70-persistent-net.rules +++ /dev/null @@ -1,8 +0,0 @@ -# This file was automatically generated by the /lib/udev/write_net_rules -# program, run by the persistent-net-generator.rules rules file. -# -# You can modify it, as long as you keep each rule on a single -# line, and change only the value of the NAME= key. - -# PCI device 0x14e4:0x167b (tg3) -SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1e:0b:27:f4:99", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0" diff --git a/resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules b/resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules deleted file mode 100755 index fe051bc..0000000 --- a/resources/config/1/uniontmp/etc/udev/rules.d/90-vboxusb.rules +++ /dev/null @@ -1,2 +0,0 @@ -SUBSYSTEM=="usb_device", GROUP="vboxusers", MODE="0666" -SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="vboxusers", MODE="0666" diff --git a/resources/config/1/uniontmp/etc/vmware/config b/resources/config/1/uniontmp/etc/vmware/config deleted file mode 100755 index 838a1d0..0000000 --- a/resources/config/1/uniontmp/etc/vmware/config +++ /dev/null @@ -1,4 +0,0 @@ -.encoding = "UTF-8" -prefvmx.minVmMemPct = "50" -prefvmx.useRecommendedLockedMemSize = "TRUE" -libdir = "/usr/lib/vmware" diff --git a/resources/config/1/uniontmp/etc/vmware/nat.conf b/resources/config/1/uniontmp/etc/vmware/nat.conf deleted file mode 100755 index 18dfcc2..0000000 --- a/resources/config/1/uniontmp/etc/vmware/nat.conf +++ /dev/null @@ -1,9 +0,0 @@ -# Linux NAT configuration file -[host] -ip = 192.168.102.2/24 -device = /dev/vmnet8 -activeFTP = 1 -[udp] -timeout = 60 -[incomingtcp] -[incomingudp] diff --git a/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf b/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf deleted file mode 100755 index 0cc1017..0000000 --- a/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet1.conf +++ /dev/null @@ -1,37 +0,0 @@ -# general udhcpd configuration file for virtual machines written by -# /bin/init-wrapper during OpenSLX stage3 configuration - -# start and end of the IP lease block -start 192.168.101.20 -end 192.168.101.100 - -# interface that udhcpd will use -interface vmnet1 - -# how long an offered address is reserved (leased) in seconds -offer_time 6000 - -# location of the leases file -lease_file /var/run/vmware/udhcpd-vmnet1.leases - -# location of the pid file -pidfile /var/run/vmware/udhcpd-vmnet1.pid - -option dns 132.230.200.200 132.230.201.111 -option subnet 255.255.255.0 -option router 192.168.101.1 -option wins 192.168.101.10 -option domain virtual.site ruf.uni-freiburg.de - -# additional options known to udhcpd -#subnet #timezone -#router #timesvr -#namesvr #dns -#logsvr #cookiesvr -#lprsvr #bootsize -#domain #swapsvr -#rootpath #ipttl -#mtu #broadcast -#wins #lease -#ntpsrv #tftp -#bootfile diff --git a/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf b/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf deleted file mode 100755 index ab80fec..0000000 --- a/resources/config/1/uniontmp/etc/vmware/udhcpd/udhcpd-vmnet8.conf +++ /dev/null @@ -1,37 +0,0 @@ -# general udhcpd configuration file for virtual machines written by -# /bin/init-wrapper during OpenSLX stage3 configuration - -# start and end of the IP lease block -start 192.168.102.20 -end 192.168.102.100 - -# interface that udhcpd will use -interface vmnet8 - -# how long an offered address is reserved (leased) in seconds -offer_time 6000 - -# location of the leases file -lease_file /var/run/vmware/udhcpd-vmnet8.leases - -# location of the pid file -pidfile /var/run/vmware/udhcpd-vmnet8.pid - -option dns 132.230.200.200 132.230.201.111 -option subnet 255.255.255.0 -option router 192.168.102.1 -option wins 192.168.102.10 -option domain virtual.site ruf.uni-freiburg.de - -# additional options known to udhcpd -#subnet #timezone -#router #timesvr -#namesvr #dns -#logsvr #cookiesvr -#lprsvr #bootsize -#domain #swapsvr -#rootpath #ipttl -#mtu #broadcast -#wins #lease -#ntpsrv #tftp -#bootfile diff --git a/resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac b/resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac deleted file mode 100755 index ef6cc5c..0000000 --- a/resources/config/1/uniontmp/etc/vmware/vmnet-natd-8.mac +++ /dev/null @@ -1 +0,0 @@ -00:50:56:F1:30:50 diff --git a/resources/config/1/uniontmp/root/.ssh/authorized_keys b/resources/config/1/uniontmp/root/.ssh/authorized_keys deleted file mode 100755 index 3f5c805..0000000 --- a/resources/config/1/uniontmp/root/.ssh/authorized_keys +++ /dev/null @@ -1,2 +0,0 @@ -ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAyqJL02R70XFWD7uSUyiJGXyPyHJhCwFe0ko6ulc1b/j4wHXYWUBGGRyo3ELD88jRrAFkH3S70fSUgiKq0GziYiSWiy1nuaKzybjOzKCE9nEssUkmOtZZPqe2aT0c/6ccJDHzmhShA5ndawaMF1qWIEswDyqknG5YMTau9SUlvHNK82uygOlHlBn+ey+nfjmBQsafE720ykuUglDDXZG/91nrPaYgabbjqeGP9wq7E7c+tsMczmoSQw2q2m+vz+rLNyWL+6VftPTyuxtFfUSKbNWthpXoiJPAU62iP1089NBIMq+8VyYNzDxDHYXE5pxpXUG026hw1Ugmpgf0W9JZ2w== root@lp-srv01.ruf.uni-freiburg.de -ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAIEAtE1QqmMnS9ZrmXQguHDa6Gi8edgl8IE3MMl58Wxgf//ONZjfQpOfJxvl5kYkmJKl0H7KGNNp+4UYP0ckydfw301MJU8Q5/24CkKHT92pnUUVRQ9Am7YnKvWBsrbMThEMIEOGjOc9uvyE+lKvvZ18ZNLTI9lCqu/ns6ZMYeS2xJU= root@lp-srv180 diff --git a/resources/config/1/uniontmp/tmp/.X0-lock b/resources/config/1/uniontmp/tmp/.X0-lock deleted file mode 100755 index a563e1c..0000000 --- a/resources/config/1/uniontmp/tmp/.X0-lock +++ /dev/null @@ -1 +0,0 @@ - 3307 diff --git a/resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp b/resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp deleted file mode 100755 index f031720..0000000 Binary files a/resources/config/1/uniontmp/tmp/krb5cc_14620_43Qjbp and /dev/null differ diff --git a/resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE b/resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE deleted file mode 100755 index 5ca497a..0000000 Binary files a/resources/config/1/uniontmp/tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE and /dev/null differ diff --git a/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock b/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior b/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior deleted file mode 100755 index a419f6b..0000000 --- a/resources/config/1/uniontmp/tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior +++ /dev/null @@ -1 +0,0 @@ -IOR:010000002100000049444c3a426f6e6f626f2f41637469766174696f6e436f6e746578743a312e3000000000030000000054424f540000000101020005000000554e4958000000000a0000006c6f63616c686f7374000000290000002f746d702f6f726269742d6d7035372f6c696e632d6565312d302d336431643033663232363661630000000000000000caaedfba5400000001010200290000002f746d702f6f726269742d6d7035372f6c696e632d6565312d302d33643164303366323236366163000000001c00000001000000d5535559a07f11d14d6851515151515102000000bf016fb301000000480000000100000002000000050000001c00000001000000d5535559a07f11d14d6851515151515102000000bf016fb301000000140000000100000001000105000000000901010000000000 diff --git a/resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml b/resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml deleted file mode 100755 index 8df706d..0000000 --- a/resources/config/1/uniontmp/tmp/plugtmp/plugin-all_V25_spec_160_600.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid b/resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid deleted file mode 100755 index 675c45f..0000000 --- a/resources/config/1/uniontmp/tmp/pulse-b9qYDvw8bJls/pid +++ /dev/null @@ -1 +0,0 @@ -3770 diff --git a/resources/config/1/uniontmp/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile b/resources/config/1/uniontmp/tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log b/resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log deleted file mode 100755 index ebea407..0000000 --- a/resources/config/1/uniontmp/tmp/vmware-root/usbarb-3200.log +++ /dev/null @@ -1,30 +0,0 @@ -Jan 05 13:23:14.918: usbArb| Log for VMware USB Arbitration Service pid=3200 version=3.1.0 build=build-261024 option=Release -Jan 05 13:23:14.918: usbArb| The process is 32-bit. -Jan 05 13:23:14.918: usbArb| Host codepage=UTF-8 encoding=UTF-8 -Jan 05 13:23:14.918: usbArb| DICT --- USER PREFERENCES -Jan 05 13:23:14.919: usbArb| DICT --- USER DEFAULTS ~/.vmware/config -Jan 05 13:23:14.919: usbArb| DICT --- HOST DEFAULTS /etc/vmware/config -Jan 05 13:23:14.919: usbArb| DICT prefvmx.minVmMemPct = 50 -Jan 05 13:23:14.919: usbArb| DICT prefvmx.useRecommendedLockedMemSize = TRUE -Jan 05 13:23:14.919: usbArb| DICT libdir = /usr/lib/vmware -Jan 05 13:23:14.919: usbArb| DICT --- SITE DEFAULTS /usr/lib/vmware/config -Jan 05 13:23:14.919: usbArb| DICT tag.help = introduction.htm -Jan 05 13:23:14.919: usbArb| DICT tag.configurationEditor = config_editor_newvm.htm -Jan 05 13:23:14.919: usbArb| DICT tag.ideConfig = devices_virtualdrive.htm -Jan 05 13:23:14.919: usbArb| DICT tag.floppyConfig = devices_floppy.htm -Jan 05 13:23:14.919: usbArb| DICT tag.mouseConfig = devices_mouse.htm -Jan 05 13:23:14.919: usbArb| DICT tag.netConfig = devices_netadapter.htm -Jan 05 13:23:14.919: usbArb| DICT tag.parallelConfig = devices_parallel.htm -Jan 05 13:23:14.919: usbArb| DICT tag.serialConfig = devices_serial.htm -Jan 05 13:23:14.919: usbArb| DICT tag.soundConfig = devices_sound.htm -Jan 05 13:23:14.919: usbArb| DICT tag.memConfig = configvm_memory.htm -Jan 05 13:23:14.919: usbArb| DICT tag.miscConfig = configvm.htm -Jan 05 13:23:14.919: usbArb| DICT tag.usbConfig = devices_usb.htm -Jan 05 13:23:14.919: usbArb| DICT tag.displayConfig = configvm_display-problems.htm -Jan 05 13:23:14.919: usbArb| DICT tag.tools = vmtools.htm -Jan 05 13:23:14.919: usbArb| USB: Unable to open "/proc/bus/usb/devices" (No such file or directory). -Jan 05 13:23:14.919: usbArb| USBGL: USB Sysfs found at /dev/bus/usb -Jan 05 13:23:14.920: usbArb| USBArb: 3 Devices enumerated -Jan 05 13:23:14.920: usbArb| USBArb: Device 0:name:Hewlett-Packard\ HP\ USB\ Smart\ Card\ Keyboard vid:03f0 pid:1024 path:2/1 speed:full family:hid,hid-bootable,smart-card id:2000203f01024 owner:(null) -Jan 05 13:23:14.920: usbArb| USBArb: Device 1:name:Quanta\ Optical\ Touch\ Screen vid:0408 pid:3000 path:4/1 speed:full family:hid id:4000204083000 owner:(null) -Jan 05 13:23:14.920: usbArb| USBArb: Device 2:name:Primax\ USB\ Optical\ Mouse vid:0461 pid:4d20 path:4/2 speed:low family:hid,hid-bootable id:4000304614d20 owner:(null) diff --git a/resources/config/1/uniontmp/tmp/whitelist b/resources/config/1/uniontmp/tmp/whitelist deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/cache/nscd/group b/resources/config/1/uniontmp/var/cache/nscd/group deleted file mode 100755 index 849e79f..0000000 Binary files a/resources/config/1/uniontmp/var/cache/nscd/group and /dev/null differ diff --git a/resources/config/1/uniontmp/var/cache/nscd/passwd b/resources/config/1/uniontmp/var/cache/nscd/passwd deleted file mode 100755 index 2090f6d..0000000 Binary files a/resources/config/1/uniontmp/var/cache/nscd/passwd and /dev/null differ diff --git a/resources/config/1/uniontmp/var/cache/nscd/services b/resources/config/1/uniontmp/var/cache/nscd/services deleted file mode 100755 index ba0909a..0000000 Binary files a/resources/config/1/uniontmp/var/cache/nscd/services and /dev/null differ diff --git a/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager b/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager deleted file mode 100755 index 212de61..0000000 --- a/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-session-manager +++ /dev/null @@ -1,24 +0,0 @@ -manual -/usr/bin/x-session-manager -x-session-manager.1.gz -/usr/share/man/man1/x-session-manager.1.gz - -/usr/bin/gnome-session -50 -/usr/share/man/man1/gnome-session.1.gz -/usr/bin/lxsession -49 -/usr/share/man/man1/lxsession.1.gz -/usr/bin/openbox-session -40 -/usr/share/man/man1/openbox-session.1.gz -/usr/bin/startkde -40 -/usr/share/man/man1/startkde.1.gz -/usr/bin/startlxde -50 -/usr/share/man/man1/startlxde.1.gz -/usr/bin/xfce4-session -50 -/usr/share/man/man1/xfce4-session.1.gz - diff --git a/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager b/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager deleted file mode 100755 index 81a0fd0..0000000 --- a/resources/config/1/uniontmp/var/lib/dpkg/alternatives/x-window-manager +++ /dev/null @@ -1,18 +0,0 @@ -manual -/usr/bin/x-window-manager -x-window-manager.1.gz -/usr/share/man/man1/x-window-manager.1.gz - -/usr/bin/kwin -50 - -/usr/bin/metacity -60 -/usr/share/man/man1/metacity.1.gz -/usr/bin/openbox -90 -/usr/share/man/man1/openbox.1.gz -/usr/bin/xfwm4 -60 -/usr/share/man/man1/xfwm4.1.gz - diff --git a/resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl b/resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl deleted file mode 100755 index 19d24fb..0000000 --- a/resources/config/1/uniontmp/var/lib/openslx/bin/automount-home.pl +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/perl -l -######################################################################### -# mountet homedirs per nfs3 oder nfs4 je nach net.point variante -######################################################################### -# net.point (c) by Martin Walter 1996-2008 -######################################################################### - - exit 1 if ($#ARGV != 0); - - $user = $ARGV[0]; - - exit 1 if ($user !~ /^[a-z][a-z_0-9-]{1,7}$/); - - ($name,$passwd,$uid,$gid, $quota,$comment,$gcos,$dir,$shell) = getpwnam $user; - - exit 1 if (!$dir); - - if ($user eq "guest" || -f "/var/etc/ramdisk/$user" ) { - print "-fstype=tmpfs tmpfs"; - exit 0; - } - - $x = `ldapsearch -x -LLL uid=$user homeDirectory rufFileserver`; - $hostname = `hostname`; - - $remote = $1 if ($x =~ m|homeDirectory: (/.+)\n|); - $fs = $1 if ($x =~ m|rufFileserver: (.+)\n|); - - exit 1 if ($fs eq "" || $hostname eq "" || $remote eq ""); - -######################################################################### -# netapp und solaris-server wollen vollen pfad. linux-server nur /$user - - $remote = "/$user" if (`showmount -e $fs 2>/dev/null` =~ m,gss/krb5,); - - $krb = `/var/lib/openslx/bin/krb5_mount_mode.pl $fs`; - print "-fstype=nfs4,sec=$krb,rw,nosuid,nodev,nolock,intr,hard $fs:$remote"; - - exit 0; diff --git a/resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl b/resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl deleted file mode 100755 index cd4e1e4..0000000 --- a/resources/config/1/uniontmp/var/lib/openslx/bin/krb5_mount_mode.pl +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/perl - -######################################################################### -sub ip { - my $host = $_[0]; - my $ip = ""; - - if ( $host =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)$/ ) { - $ip = $host if ($1<223 && $2<256 && $3<256 && $4<256); - } - elsif ( $host =~ /^[a-z][a-z0-9-.-]{0,63}$/i ) { - my $x = `env - host $host`; - $ip = $1 if ($x =~ / has address (\d+\.\d+\.\d+\.\d+)/); - } - return $ip; -} -######################################################################### -sub hostname { - my $ip = $_[0]; - my $host = ""; - - if ( $ip =~ /^[a-z0-9-.-]{1,63}$/ ) { - my $x = `env - host $ip`; - if ($x =~ /^([a-z][a-z0-9-.-]{0,63}) has address/i) { - $host = $1; - } - elsif ($x =~ /in-addr.arpa domain name pointer ([a-z][a-z0-9-.-]{0,63})\./i) { - $host = $1; - } - } - return $host; -} -######################################################################### - -$dest_ip = ip($ARGV[0]); -exit 1 if ($dest_ip eq ""); - -######################################################################### -# gibts bereits einen mount zum ziel? -open(F,"/proc/mounts") || exit 2; -while () { - if (/^([a-z0-9-.-]+):.*sec=(krb5[ip]{0,1})/) { - if ($dest_ip eq ip($1)) { - print $2; - exit 0; - } - } -} -close F; -######################################################################### -$me = hostname(`hostname`); -$you = hostname($dest_ip); - -$krb = "krb5p"; - -if ($me =~ /^login\d+\.ruf\.uni-freiburg\.de$/ || $me =~ /^b1-4\.ruf\.uni-freiburg\.de$/) { - if ($you =~ /^fs\d\.ruf\.uni-freiburg\.de$/ || $you =~ /^netapp\d+\.public\.ads\.uni-freiburg\.de$/) { - $krb = "krb5i"; - } -} -elsif ($me =~ /^.+\.home$/ && $you =~ /^.+\.home$/) { - $krb = "krb5i"; -} -print $krb; - -exit 0; - -######################################################################### - \ No newline at end of file diff --git a/resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect b/resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect deleted file mode 100755 index fb310da..0000000 --- a/resources/config/1/uniontmp/var/lib/openslx/bin/sslconnect +++ /dev/null @@ -1,97 +0,0 @@ -#!/usr/bin/perl -######################################################################### -# sslconnect 0.1 -# Last Change: 2006-03-03 -# 2006 by Martin Walter -# http://omnibus.uni-freiburg.de/~mawa/ -######################################################################### - use English; - use IO::Socket::SSL; - -######################################################################### - sub Usage { - print "@_"; - print "Usage: $0 [--debug] peerhost:peerport\n"; - exit; - } -######################################################################### - sub Tprint { # print with timestamp - my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); - my $x=sprintf "%4d-%02d-%02d--%02d:%02d:%02d ($$)",1900+$year,$mon+1,$mday,$hour,$min,$sec; - print STDERR "$x @_"; - } -######################################################################### - sub Tdebug { # debug-print with timestamp - Tprint "@_" if ($debug); - } -######################################################################### - sub Terror { # error-print with timestamp and exit 1 - Tprint "ERROR: @_"; - exit 1; - } -######################################################################### -######################################################################### -# main: -######################################################################### - $| = 1; - $debug = 0; - - while ($ARGV[0] =~ /^(-.*)$/) { - if ($1 eq "--debug") { - $debug=1; - Tprint "--debug\n"; - } elsif ($1 eq "--help") { - Usage; - } else { - Terror "invalid option: $1\n"; - } - shift; - } - Usage if ($#ARGV != 0); - Usage if ($ARGV[0] !~ /^([a-z0-9.-]+):([a-z0-9.-]+)$/); - shift; - - ($peerhost,$peerport) = ($1,$2); - -######################################################################### -# connect to server - - if ($EUID) { - $sock = IO::Socket::SSL->new( - PeerAddr => $peerhost, - PeerPort => $peerport, - Proto => 'tcp', - Timeout => 5, - SSL_use_cert => 0, - SSL_verify_mode => 0, - ); - } else { - for $localport (90..900) { - $sock = IO::Socket::SSL->new( - PeerAddr => $peerhost, - PeerPort => $peerport, - LocalPort => $localport, - Proto => 'tcp', - Timeout => 2, - SSL_use_cert => 0, - SSL_verify_mode => 0, - ); - Tdebug "localport=$localport --> " . ($sock ? "ok" : "failed") . "\n"; - last if ($sock); - } - } - Terror "unable to connect to $peerhost:$peerport\n" if (!$sock); - - if (!fork()) { - print $buf while ($buf = $sock->readline); - shutdown($sock,2); - exit 0; - } - - while ( ($buf = <>) && ($sock->write($buf, length($buf))) ) {} - - shutdown($sock,2); - exit 0; - -######################################################################### - diff --git a/resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm b/resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm deleted file mode 100755 index 5a196c9..0000000 Binary files a/resources/config/1/uniontmp/var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm and /dev/null differ diff --git a/resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm b/resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm deleted file mode 100755 index b2f5e05..0000000 Binary files a/resources/config/1/uniontmp/var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm and /dev/null differ diff --git a/resources/config/1/uniontmp/var/log/ConsoleKit/history b/resources/config/1/uniontmp/var/log/ConsoleKit/history deleted file mode 100755 index f2baf3d..0000000 --- a/resources/config/1/uniontmp/var/log/ConsoleKit/history +++ /dev/null @@ -1,3 +0,0 @@ -1294230214.137 type=SEAT_ADDED : seat-id='Seat1' seat-kind=0 -1294230214.159 type=SEAT_SESSION_ADDED : seat-id='Seat1' session-id='Session1' session-type='' session-x11-display=':0' session-x11-display-device='/dev/tty7' session-display-device='' session-remote-host-name='' session-is-local=TRUE session-unix-user=14620 session-creation-time='2011-01-05T12:23:34.147968Z' -1294230214.184 type=SEAT_ACTIVE_SESSION_CHANGED : seat-id='Seat1' session-id='Session1' diff --git a/resources/config/1/uniontmp/var/log/Xorg.0.log b/resources/config/1/uniontmp/var/log/Xorg.0.log deleted file mode 100755 index 85d56ee..0000000 --- a/resources/config/1/uniontmp/var/log/Xorg.0.log +++ /dev/null @@ -1,787 +0,0 @@ - -X.Org X Server 1.7.6 -Release Date: 2010-03-17 -X Protocol Version 11, Revision 0 -Build Operating System: Linux 2.6.24-27-server i686 Ubuntu -Current Operating System: Linux lsfks20 2.6.32-25-generic-pae #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 i686 -Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default -Build Date: 21 July 2010 12:47:34PM -xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) -Current version of pixman: 0.16.4 - Before reporting problems, check http://wiki.x.org - to make sure that you have the latest version. -Markers: (--) probed, (**) from config file, (==) default setting, - (++) from command line, (!!) notice, (II) informational, - (WW) warning, (EE) error, (NI) not implemented, (??) unknown. -(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 5 13:23:25 2011 -(==) Using config file: "/etc/X11/xorg.conf" -(==) Using config directory: "/usr/lib/X11/xorg.conf.d" -(==) ServerLayout "Default Layout" -(**) |-->Screen "Default Screen" (0) -(**) | |-->Monitor "Generic Display" -(**) |-->Input Device "Generic Keyboard" -(**) |-->Input Device "Generic Mouse" -(**) Option "AllowMouseOpenFail" -(**) Option "BlankTime" "5" -(**) Option "StandbyTime" "10" -(**) Option "SuspendTime" "15" -(**) Option "OffTime" "20" -(**) Option "AllowEmptyInput" "false" -(==) Automatically adding devices -(==) Automatically enabling devices -(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. - Entry deleted from font path. -(==) FontPath set to: - /usr/share/fonts/X11/misc, - /usr/share/fonts/X11/100dpi/:unscaled, - /usr/share/fonts/X11/75dpi/:unscaled, - /usr/share/fonts/X11/Type1, - /usr/share/fonts/X11/100dpi, - /usr/share/fonts/X11/75dpi, - /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType, - built-ins -(==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules" -(II) Loader magic: 0x81f0e80 -(II) Module ABI versions: - X.Org ANSI C Emulation: 0.4 - X.Org Video Driver: 6.0 - X.Org XInput driver : 7.0 - X.Org Server Extension : 2.0 -(++) using VT number 7 - -(--) PCI:*(0:2:0:0) 1002:94c1:1028:0d02 ATI Technologies Inc RV610 [Radeon HD 2400 XT] rev 0, Mem @ 0xd0000000/268435456, 0xf0100000/65536, I/O @ 0x00001100/256, BIOS @ 0x????????/131072 -(II) Open ACPI successful (/var/run/acpid.socket) -(II) "extmod" will be loaded. This was enabled by default and also specified in the config file. -(II) "dbe" will be loaded by default. -(II) "glx" will be loaded. This was enabled by default and also specified in the config file. -(II) "record" will be loaded by default. -(II) "dri" will be loaded. This was enabled by default and also specified in the config file. -(II) "dri2" will be loaded by default. -(II) LoadModule: "i2c" -(II) Module "i2c" already built-in -(II) LoadModule: "ddc" -(II) Module "ddc" already built-in -(II) LoadModule: "extmod" -(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so -(II) Module extmod: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.0.0 - Module class: X.Org Server Extension - ABI class: X.Org Server Extension, version 2.0 -(II) Loading extension MIT-SCREEN-SAVER -(II) Loading extension XFree86-VidModeExtension -(II) Loading extension XFree86-DGA -(II) Loading extension DPMS -(II) Loading extension XVideo -(II) Loading extension XVideo-MotionCompensation -(II) Loading extension X-Resource -(II) LoadModule: "int10" -(II) Loading /usr/lib/xorg/modules/libint10.so -(II) Module int10: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.0.0 - ABI class: X.Org Video Driver, version 6.0 -(II) LoadModule: "vbe" -(II) Loading /usr/lib/xorg/modules/libvbe.so -(II) Module vbe: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.1.0 - ABI class: X.Org Video Driver, version 6.0 -(II) LoadModule: "glx" -(II) Loading /usr/lib/xorg/modules/extensions/libglx.so -(II) Module glx: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.0.0 - ABI class: X.Org Server Extension, version 2.0 -(==) AIGLX enabled -(II) Loading extension GLX -(II) LoadModule: "dri" -(II) Loading /usr/lib/xorg/modules/extensions/libdri.so -(II) Module dri: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.0.0 - ABI class: X.Org Server Extension, version 2.0 -(II) Loading extension XFree86-DRI -(II) LoadModule: "dbe" -(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so -(II) Module dbe: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.0.0 - Module class: X.Org Server Extension - ABI class: X.Org Server Extension, version 2.0 -(II) Loading extension DOUBLE-BUFFER -(II) LoadModule: "record" -(II) Loading /usr/lib/xorg/modules/extensions/librecord.so -(II) Module record: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.13.0 - Module class: X.Org Server Extension - ABI class: X.Org Server Extension, version 2.0 -(II) Loading extension RECORD -(II) LoadModule: "dri2" -(II) Loading /usr/lib/xorg/modules/extensions/libdri2.so -(II) Module dri2: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.1.0 - ABI class: X.Org Server Extension, version 2.0 -(II) Loading extension DRI2 -(==) Matched ati as autoconfigured driver 0 -(==) Matched vesa as autoconfigured driver 1 -(==) Matched fbdev as autoconfigured driver 2 -(==) Assigned the driver to the xf86ConfigLayout -(II) LoadModule: "ati" -(II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so -(II) Module ati: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 6.13.0 - Module class: X.Org Video Driver - ABI class: X.Org Video Driver, version 6.0 -(II) LoadModule: "radeon" -(II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so -(II) Module radeon: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 6.13.0 - Module class: X.Org Video Driver - ABI class: X.Org Video Driver, version 6.0 -(II) LoadModule: "vesa" -(II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so -(II) Module vesa: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 2.3.0 - Module class: X.Org Video Driver - ABI class: X.Org Video Driver, version 6.0 -(II) LoadModule: "fbdev" -(II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so -(II) Module fbdev: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 0.4.1 - ABI class: X.Org Video Driver, version 6.0 -(II) LoadModule: "evdev" -(II) Loading /usr/lib/xorg/modules/input/evdev_drv.so -(II) Module evdev: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 2.3.2 - Module class: X.Org XInput Driver - ABI class: X.Org XInput driver, version 7.0 -(II) LoadModule: "mouse" -(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so -(II) Module mouse: vendor="X.Org Foundation" - compiled for 1.7.2, module version = 1.5.0 - Module class: X.Org XInput Driver - ABI class: X.Org XInput driver, version 7.0 -(II) RADEON: Driver for ATI Radeon chipsets: - ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI), - ATI Radeon Mobility X300 (M24) 3152 (PCIE), - ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE), - ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136, - ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP), - ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP), - ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP), - ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP), - ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP), - ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP), - ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650, - ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237, - ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP), - ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337, - ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI), - ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP), - ATI Radeon X800PRO (R420) JI (AGP), - ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP), - ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP), - ATI Radeon Mobility 9800 (M18) JN (AGP), - ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP), - ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP), - ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP), - ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP), - ATI Radeon Mobility M7 LW (AGP), - ATI Mobility FireGL 7800 M7 LX (AGP), - ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP), - ATI FireGL Mobility 9000 (M9) Ld (AGP), - ATI Radeon Mobility 9000 (M9) Lf (AGP), - ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP), - ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP), - ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP), - ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP), - ATI Radeon 9800XT NJ (AGP), - ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP), - ATI Radeon Mobility 9600 (M10) NQ (AGP), - ATI Radeon Mobility 9600 (M11) NR (AGP), - ATI Radeon Mobility 9600 (M10) NS (AGP), - ATI FireGL Mobility T2 (M10) NT (AGP), - ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP), - ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP), - ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP), - ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI), - ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI), - ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI), - ATI Radeon Mobility X300 (M22) 5460 (PCIE), - ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE), - ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE), - ATI Radeon X800PRO (R423) UI (PCIE), - ATI Radeon X800LE (R423) UJ (PCIE), - ATI Radeon X800SE (R423) UK (PCIE), - ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE), - ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE), - ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE), - ATI FireGL unknown (R423) UR (PCIE), - ATI FireGL unknown (R423) UT (PCIE), - ATI Mobility FireGL V5000 (M26) (PCIE), - ATI Mobility FireGL V5000 (M26) (PCIE), - ATI Mobility Radeon X700 XL (M26) (PCIE), - ATI Mobility Radeon X700 (M26) (PCIE), - ATI Mobility Radeon X700 (M26) (PCIE), - ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834, - ATI Radeon Mobility 9100 IGP (U3) 5835, - ATI Radeon XPRESS 200 5954 (PCIE), - ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP), - ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP), - ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI), - ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE), - ATI Radeon XPRESS 200M 5975 (PCIE), - ATI Radeon XPRESS 200 5A41 (PCIE), - ATI Radeon XPRESS 200M 5A42 (PCIE), - ATI Radeon XPRESS 200 5A61 (PCIE), - ATI Radeon XPRESS 200M 5A62 (PCIE), - ATI Radeon X300 (RV370) 5B60 (PCIE), - ATI Radeon X600 (RV370) 5B62 (PCIE), - ATI Radeon X550 (RV370) 5B63 (PCIE), - ATI FireGL V3100 (RV370) 5B64 (PCIE), - ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE), - ATI Radeon Mobility 9200 (M9+) 5C61 (AGP), - ATI Radeon Mobility 9200 (M9+) 5C63 (AGP), - ATI Mobility Radeon X800 XT (M28) (PCIE), - ATI Mobility FireGL V5100 (M28) (PCIE), - ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE), - ATI Radeon X850 XT PE (R480) (PCIE), - ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE), - ATI unknown Radeon / FireGL (R480) 5D50 (PCIE), - ATI Radeon X850 XT (R480) (PCIE), - ATI Radeon X800XT (R423) 5D57 (PCIE), - ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE), - ATI Radeon X700 PRO (RV410) (PCIE), - ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE), - ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800, - ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800, - ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300, - ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800, - ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800, - ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505, - ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL, - ATI Mobility Radeon X1400, ATI Radeon X1300/X1550, - ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300, - ATI Mobility Radeon X1300, ATI Mobility Radeon X1300, - ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300, - ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350, - ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550, - ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450, - ATI Radeon X1300/X1550, ATI Mobility Radeon X2300, - ATI Mobility Radeon X2300, ATI Mobility Radeon X1350, - ATI Mobility Radeon X1350, ATI Mobility Radeon X1450, - ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350, - ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600, - ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600, - ATI Mobility FireGL V5200, ATI Mobility Radeon X1600, - ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600, - ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400, - ATI Mobility FireGL V5250, ATI Mobility Radeon X1700, - ATI Mobility Radeon X1700 XT, ATI FireGL V5200, - ATI Mobility Radeon X1700, ATI Radeon X2300HD, - ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300, - ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950, - ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, - ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, - ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900, - ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950, - ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560, - ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400, - ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560, - ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835, - ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200, - ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740, - ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT, - ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT, - ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600, - ATI Radeon 4800 Series, ATI Radeon HD 4870 x2, - ATI Radeon 4800 Series, ATI Radeon HD 4850 x2, - ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL), - ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2, - ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270, - AMD FireStream 9250, ATI FirePro V8700 (FireGL), - ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98, - ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series, - ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98, - ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP), - ATI Mobility Radeon HD 4670, ATI FirePro M5750, - ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP), - ATI RV730XT [Radeon HD 4670], ATI RADEON E4600, - ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650], - ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL), - ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830, - ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740, - ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770, - ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT, - ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000, - ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT, - ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610, - ATI FireMV 2260, ATI RV670, ATI Radeon HD3870, - ATI Mobility Radeon HD 3850, ATI Radeon HD3850, - ATI Mobility Radeon HD 3850 X2, ATI RV670, - ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2, - ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850, - ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550, - ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710, - ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series, - ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series, - ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630, - ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT, - ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP, - ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630, - ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600, - ATI FireGL V3600, ATI Radeon HD 2600 LE, - ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470, - ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series, - ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430, - ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450, - ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series, - ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO, - ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO, - ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670, - ATI Mobility FireGL V5700, ATI Mobility FireGL V5725, - ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, - ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics, - ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics, - ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100, - ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100, - ATI Radeon HD 4290, ATI Radeon HD 4290, CYPRESS, - ATI FirePro (FireGL) Graphics Adapter, - ATI FirePro (FireGL) Graphics Adapter, - ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5800 Series, - ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series, - ATI Radeon HD 5900 Series, ATI Radeon HD 5900 Series, - ATI Mobility Radeon HD 5800 Series, - ATI Mobility Radeon HD 5800 Series, - ATI FirePro (FireGL) Graphics Adapter, - ATI FirePro (FireGL) Graphics Adapter, - ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series, - ATI Radeon HD 5700 Series, ATI Radeon HD 5700 Series, - ATI Mobility Radeon HD 5000 Series, - ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570, - ATI FirePro (FireGL) Graphics Adapter, - ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670, - ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD, - ATI Mobility Radeon HD 5000 Series, - ATI Mobility Radeon HD 5000 Series, CEDAR, CEDAR, CEDAR, - ATI FirePro (FireGL) Graphics Adapter, - ATI FirePro (FireGL) Graphics Adapter, CEDAR, ATI Radeon HD 5450, - CEDAR -(II) VESA: driver for VESA chipsets: vesa -(II) FBDEV: driver for framebuffer: fbdev -(II) Primary Device is: PCI 02@00:00:0 -(II) [KMS] Kernel modesetting enabled. -(WW) Falling back to old probe method for vesa -(WW) Falling back to old probe method for fbdev -(II) Loading sub module "fbdevhw" -(II) LoadModule: "fbdevhw" -(II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so -(II) Module fbdevhw: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 0.0.2 - ABI class: X.Org Video Driver, version 6.0 -(II) RADEON(0): Creating default Display subsection in Screen section - "Default Screen" for depth/fbbpp 24/32 -(**) RADEON(0): Depth 24, (--) framebuffer bpp 32 -(II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps) -(==) RADEON(0): Default visual is TrueColor -(==) RADEON(0): RGB weight 888 -(II) RADEON(0): Using 8 bits per RGB (8 bit DAC) -(--) RADEON(0): Chipset: "ATI Radeon HD 2400 XT" (ChipID = 0x94c1) -(II) RADEON(0): PCIE card detected -(WW) RADEON(0): Color tiling is not yet supported on R600/R700 -(II) RADEON(0): KMS Color Tiling: disabled -drmOpenDevice: node name is /dev/dri/card0 -drmOpenDevice: open result is 12, (OK) -drmOpenByBusid: Searching for BusID pci:0000:02:00.0 -drmOpenDevice: node name is /dev/dri/card0 -drmOpenDevice: open result is 12, (OK) -drmOpenByBusid: drmOpenMinor returns 12 -drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0 -(II) RADEON(0): Output DIN using monitor section Generic Display -(II) RADEON(0): Output DVI-0 has no monitor section -(II) RADEON(0): Output DVI-1 has no monitor section -(II) RADEON(0): EDID for output DIN -(II) RADEON(0): EDID for output DVI-0 -(II) RADEON(0): Manufacturer: IVM Model: 5613 Serial#: 16843009 -(II) RADEON(0): Year: 2009 Week: 48 -(II) RADEON(0): EDID Version: 1.3 -(II) RADEON(0): Digital Display Input -(II) RADEON(0): Max Image Size [cm]: horiz.: 48 vert.: 27 -(II) RADEON(0): Gamma: 2.20 -(II) RADEON(0): DPMS capabilities: Off -(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 -(II) RADEON(0): First detailed timing is preferred mode -(II) RADEON(0): redX: 0.648 redY: 0.339 greenX: 0.282 greenY: 0.603 -(II) RADEON(0): blueX: 0.143 blueY: 0.070 whiteX: 0.312 whiteY: 0.329 -(II) RADEON(0): Supported established timings: -(II) RADEON(0): 720x400@70Hz -(II) RADEON(0): 640x480@60Hz -(II) RADEON(0): 640x480@67Hz -(II) RADEON(0): 640x480@72Hz -(II) RADEON(0): 640x480@75Hz -(II) RADEON(0): 800x600@56Hz -(II) RADEON(0): 800x600@60Hz -(II) RADEON(0): 800x600@72Hz -(II) RADEON(0): 800x600@75Hz -(II) RADEON(0): 832x624@75Hz -(II) RADEON(0): 1024x768@60Hz -(II) RADEON(0): 1024x768@70Hz -(II) RADEON(0): 1024x768@75Hz -(II) RADEON(0): 1280x1024@75Hz -(II) RADEON(0): 1152x864@75Hz -(II) RADEON(0): Manufacturer's mask: 0 -(II) RADEON(0): Supported standard timings: -(II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179 -(II) RADEON(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 -(II) RADEON(0): #2: hsize: 1440 vsize 900 refresh: 60 vid: 149 -(II) RADEON(0): #3: hsize: 1280 vsize 1024 refresh: 75 vid: 36737 -(II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 -(II) RADEON(0): #5: hsize: 1440 vsize 900 refresh: 75 vid: 3989 -(II) RADEON(0): #6: hsize: 1152 vsize 864 refresh: 75 vid: 20337 -(II) RADEON(0): Supported detailed timing: -(II) RADEON(0): clock: 148.5 MHz Image Size: 477 x 268 mm -(II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0 -(II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0 -(II) RADEON(0): Serial No: 1105594803541 -(II) RADEON(0): Ranges: V min: 55 V max: 76 Hz, H min: 29 H max: 83 kHz, PixClock max 170 MHz -(II) RADEON(0): Monitor name: PLT2250MTS -(II) RADEON(0): EDID (in hex): -(II) RADEON(0): 00ffffffffffff0026cd135601010101 -(II) RADEON(0): 3013010380301b782a3581a656489a24 -(II) RADEON(0): 125054bfef80b300a9409500818f8180 -(II) RADEON(0): 950f714f0101023a801871382d40582c -(II) RADEON(0): 4500dd0c1100001e000000ff00313130 -(II) RADEON(0): 35353934383033353431000000fd0037 -(II) RADEON(0): 4c1d5311000a202020202020000000fc -(II) RADEON(0): 00504c54323235304d54530a20200088 -(II) RADEON(0): Printing probed modes for output DVI-0 -(II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz) -(II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz) -(II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1440x900"x75.0 136.75 1440 1536 1688 1936 900 903 909 942 -hsync +vsync (70.6 kHz) -(II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz) -(II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) -(II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) -(II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) -(II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) -(II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) -(II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) -(II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID for output DVI-1 -(II) RADEON(0): Manufacturer: DEL Model: a008 Serial#: 825247308 -(II) RADEON(0): Year: 2006 Week: 11 -(II) RADEON(0): EDID Version: 1.3 -(II) RADEON(0): Digital Display Input -(II) RADEON(0): Max Image Size [cm]: horiz.: 41 vert.: 31 -(II) RADEON(0): Gamma: 2.20 -(II) RADEON(0): DPMS capabilities: StandBy Suspend Off -(II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 -(II) RADEON(0): Default color space is primary color space -(II) RADEON(0): First detailed timing is preferred mode -(II) RADEON(0): redX: 0.638 redY: 0.342 greenX: 0.293 greenY: 0.608 -(II) RADEON(0): blueX: 0.146 blueY: 0.067 whiteX: 0.312 whiteY: 0.328 -(II) RADEON(0): Supported established timings: -(II) RADEON(0): 720x400@70Hz -(II) RADEON(0): 640x480@60Hz -(II) RADEON(0): 640x480@75Hz -(II) RADEON(0): 800x600@60Hz -(II) RADEON(0): 800x600@75Hz -(II) RADEON(0): 1024x768@60Hz -(II) RADEON(0): 1024x768@75Hz -(II) RADEON(0): 1280x1024@75Hz -(II) RADEON(0): Manufacturer's mask: 0 -(II) RADEON(0): Supported standard timings: -(II) RADEON(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 -(II) RADEON(0): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553 -(II) RADEON(0): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337 -(II) RADEON(0): Supported detailed timing: -(II) RADEON(0): clock: 162.0 MHz Image Size: 367 x 275 mm -(II) RADEON(0): h_active: 1600 h_sync: 1664 h_sync_end 1856 h_blank_end 2160 h_border: 0 -(II) RADEON(0): v_active: 1200 v_sync: 1201 v_sync_end 1204 v_blanking: 1250 v_border: 0 -(II) RADEON(0): Serial No: C088163710FL -(II) RADEON(0): Monitor name: DELL 2001FP -(II) RADEON(0): Ranges: V min: 56 V max: 76 Hz, H min: 31 H max: 80 kHz, PixClock max 162 MHz -(II) RADEON(0): EDID (in hex): -(II) RADEON(0): 00ffffffffffff0010ac08a04c463031 -(II) RADEON(0): 0b10010380291f78ee6390a3574b9b25 -(II) RADEON(0): 115054a54b008180a940714f01010101 -(II) RADEON(0): 010101010101483f403062b0324040c0 -(II) RADEON(0): 13006f131100001e000000ff00433038 -(II) RADEON(0): 38313633373130464c20000000fc0044 -(II) RADEON(0): 454c4c203230303146500a20000000fd -(II) RADEON(0): 00384c1f5010000a2020202020200082 -(II) RADEON(0): Printing probed modes for output DVI-1 -(II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) -(II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Output DIN disconnected -(II) RADEON(0): Output DVI-0 connected -(II) RADEON(0): Output DVI-1 connected -(II) RADEON(0): Using exact sizes for initial modes -(II) RADEON(0): Output DVI-0 using initial mode 1600x1200 -(II) RADEON(0): Output DVI-1 using initial mode 1600x1200 -(II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated. -(II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f6f6000 -(II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM -(==) RADEON(0): DPI set to (96, 96) -(II) Loading sub module "fb" -(II) LoadModule: "fb" -(II) Loading /usr/lib/xorg/modules/libfb.so -(II) Module fb: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 1.0.0 - ABI class: X.Org ANSI C Emulation, version 0.4 -(II) Loading sub module "ramdac" -(II) LoadModule: "ramdac" -(II) Module "ramdac" already built-in -(II) Loading sub module "exa" -(II) LoadModule: "exa" -(II) Loading /usr/lib/xorg/modules/libexa.so -(II) Module exa: vendor="X.Org Foundation" - compiled for 1.7.6, module version = 2.5.0 - ABI class: X.Org Video Driver, version 6.0 -(II) UnloadModule: "vesa" -(II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so -(II) UnloadModule: "fbdev" -(II) Unloading /usr/lib/xorg/modules/drivers/fbdev_drv.so -(II) UnloadModule: "fbdevhw" -(II) Unloading /usr/lib/xorg/modules/linux/libfbdevhw.so -(--) Depth 24 pixmap format is 32 bpp -(II) RADEON(0): [DRI2] Setup complete -(II) RADEON(0): Front buffer size: 8400K -(II) RADEON(0): VRAM usage limit set to 220039K -(==) RADEON(0): Backing store disabled -(II) RADEON(0): Direct rendering enabled -(II) RADEON(0): Setting EXA maxPitchBytes -(II) EXA(0): Driver allocated offscreen pixmaps -(II) EXA(0): Driver registered support for the following operations: -(II) Solid -(II) Copy -(II) Composite (RENDER acceleration) -(II) UploadToScreen -(II) DownloadFromScreen -(II) RADEON(0): Acceleration enabled -(**) RADEON(0): DPMS enabled -(==) RADEON(0): Silken mouse enabled -(II) RADEON(0): Set up textured video -(II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message. -(--) RandR disabled -(II) Initializing built-in extension Generic Event Extension -(II) Initializing built-in extension SHAPE -(II) Initializing built-in extension MIT-SHM -(II) Initializing built-in extension XInputExtension -(II) Initializing built-in extension XTEST -(II) Initializing built-in extension BIG-REQUESTS -(II) Initializing built-in extension SYNC -(II) Initializing built-in extension XKEYBOARD -(II) Initializing built-in extension XC-MISC -(II) Initializing built-in extension SECURITY -(II) Initializing built-in extension XINERAMA -(II) Initializing built-in extension XFIXES -(II) Initializing built-in extension RENDER -(II) Initializing built-in extension RANDR -(II) Initializing built-in extension COMPOSITE -(II) Initializing built-in extension DAMAGE -(II) AIGLX: enabled GLX_MESA_copy_sub_buffer -(II) AIGLX: enabled GLX_SGI_make_current_read -(II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control -(II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects -(II) AIGLX: Loaded and initialized /usr/lib/dri/r600_dri.so -(II) GLX: Initialized DRI2 GL provider for screen 0 -(II) RADEON(0): Setting screen physical size to 423 x 317 -(II) XKB: generating xkmfile /var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm -(**) Option "CoreKeyboard" -(**) Generic Keyboard: always reports core events -(EE) Generic Keyboard: No device specified. -(II) UnloadModule: "evdev" -(EE) PreInit returned NULL for "Generic Keyboard" -(WW) Generic Mouse: No Device specified, looking for one... -(II) Generic Mouse: Setting Device option to "/dev/input/mice" -(--) Generic Mouse: Device: "/dev/input/mice" -(==) Generic Mouse: Protocol: "Auto" -(**) Generic Mouse: always reports core events -(**) Option "Device" "/dev/input/mice" -(==) Generic Mouse: Emulate3Buttons, Emulate3Timeout: 50 -(**) Generic Mouse: ZAxisMapping: buttons 4 and 5 -(**) Generic Mouse: Buttons: 9 -(**) Generic Mouse: Sensitivity: 1 -(II) XINPUT: Adding extended input device "Generic Mouse" (type: MOUSE) -(**) Generic Mouse: (accel) keeping acceleration scheme 1 -(**) Generic Mouse: (accel) acceleration profile 0 -(**) Generic Mouse: (accel) acceleration factor: 2.000 -(**) Generic Mouse: (accel) acceleration threshold: 4 -(II) Generic Mouse: Setting mouse protocol to "ExplorerPS/2" -(II) Generic Mouse: ps2EnableDataReporting: succeeded -(II) config/udev: Adding input device Power Button (/dev/input/event1) -(**) Power Button: Applying InputClass "evdev keyboard catchall" -(**) Power Button: always reports core events -(**) Power Button: Device: "/dev/input/event1" -(II) Power Button: Found keys -(II) Power Button: Configuring as keyboard -(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD) -(**) Option "xkb_rules" "evdev" -(**) Option "xkb_model" "pc105" -(**) Option "xkb_layout" "de" -(II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm -(II) config/udev: Adding input device Power Button (/dev/input/event0) -(**) Power Button: Applying InputClass "evdev keyboard catchall" -(**) Power Button: always reports core events -(**) Power Button: Device: "/dev/input/event0" -(II) Power Button: Found keys -(II) Power Button: Configuring as keyboard -(II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD) -(**) Option "xkb_rules" "evdev" -(**) Option "xkb_model" "pc105" -(**) Option "xkb_layout" "de" -(II) config/udev: Adding input device Hewlett-Packard Company HP USB Smart Card Keyboard (/dev/input/event3) -(**) Hewlett-Packard Company HP USB Smart Card Keyboard: Applying InputClass "evdev keyboard catchall" -(**) Hewlett-Packard Company HP USB Smart Card Keyboard: always reports core events -(**) Hewlett-Packard Company HP USB Smart Card Keyboard: Device: "/dev/input/event3" -(II) Hewlett-Packard Company HP USB Smart Card Keyboard: Found keys -(II) Hewlett-Packard Company HP USB Smart Card Keyboard: Configuring as keyboard -(II) XINPUT: Adding extended input device "Hewlett-Packard Company HP USB Smart Card Keyboard" (type: KEYBOARD) -(**) Option "xkb_rules" "evdev" -(**) Option "xkb_model" "pc105" -(**) Option "xkb_layout" "de" -(II) config/udev: Adding input device USB Optical Mouse (/dev/input/event4) -(**) USB Optical Mouse: Applying InputClass "evdev pointer catchall" -(**) USB Optical Mouse: always reports core events -(**) USB Optical Mouse: Device: "/dev/input/event4" -(II) USB Optical Mouse: Found 3 mouse buttons -(II) USB Optical Mouse: Found scroll wheel(s) -(II) USB Optical Mouse: Found relative axes -(II) USB Optical Mouse: Found x and y relative axes -(II) USB Optical Mouse: Configuring as mouse -(**) USB Optical Mouse: YAxisMapping: buttons 4 and 5 -(**) USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 -(II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE) -(II) USB Optical Mouse: initialized for relative axes. -(II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse1) -(II) No input driver/identifier specified (ignoring) -(II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5) -(II) No input driver/identifier specified (ignoring) -(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/event2) -(**) Macintosh mouse button emulation: Applying InputClass "evdev pointer catchall" -(**) Macintosh mouse button emulation: always reports core events -(**) Macintosh mouse button emulation: Device: "/dev/input/event2" -(II) Macintosh mouse button emulation: Found 3 mouse buttons -(II) Macintosh mouse button emulation: Found relative axes -(II) Macintosh mouse button emulation: Found x and y relative axes -(II) Macintosh mouse button emulation: Configuring as mouse -(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5 -(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 -(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE) -(II) Macintosh mouse button emulation: initialized for relative axes. -(II) config/udev: Adding input device Macintosh mouse button emulation (/dev/input/mouse0) -(II) No input driver/identifier specified (ignoring) -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID vendor "DEL", prod id 40968 -(II) RADEON(0): Using EDID range info for horizontal sync -(II) RADEON(0): Using EDID range info for vertical refresh -(II) RADEON(0): Printing DDC gathered Modelines: -(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID vendor "DEL", prod id 40968 -(II) RADEON(0): Using hsync ranges from config file -(II) RADEON(0): Using vrefresh ranges from config file -(II) RADEON(0): Printing DDC gathered Modelines: -(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID vendor "DEL", prod id 40968 -(II) RADEON(0): Using hsync ranges from config file -(II) RADEON(0): Using vrefresh ranges from config file -(II) RADEON(0): Printing DDC gathered Modelines: -(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(II) RADEON(0): Allocate new frame buffer 3200x1200 stride 3200 -(II) RADEON(0): VRAM usage limit set to 214099K -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID vendor "DEL", prod id 40968 -(II) RADEON(0): Using hsync ranges from config file -(II) RADEON(0): Using vrefresh ranges from config file -(II) RADEON(0): Printing DDC gathered Modelines: -(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(II) XKB: generating xkmfile /var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID vendor "DEL", prod id 40968 -(II) RADEON(0): Using hsync ranges from config file -(II) RADEON(0): Using vrefresh ranges from config file -(II) RADEON(0): Printing DDC gathered Modelines: -(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) -(WW) EDID preferred timing clock 162.00MHz exceeds claimed max 160MHz, fixing -(II) RADEON(0): EDID vendor "DEL", prod id 40968 -(II) RADEON(0): Using hsync ranges from config file -(II) RADEON(0): Using vrefresh ranges from config file -(II) RADEON(0): Printing DDC gathered Modelines: -(II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) -(II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) -(II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz) -(II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) -(II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) -(II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) -(II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) diff --git a/resources/config/1/uniontmp/var/log/auth.log b/resources/config/1/uniontmp/var/log/auth.log deleted file mode 100755 index ef91fa3..0000000 --- a/resources/config/1/uniontmp/var/log/auth.log +++ /dev/null @@ -1,35 +0,0 @@ -Jan 5 13:23:14 lsfks20 sshd[2781]: Server listening on 0.0.0.0 port 22. -Jan 5 13:23:14 lsfks20 sshd[2781]: Server listening on :: port 22. -Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_unix(kdm:auth): authentication failure; logname= uid=0 euid=0 tty=:0 ruser= rhost= user=mp57 -Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_krb5(kdm:auth): user mp57 authenticated as mp57@PUBLIC.ADS.UNI-FREIBURG.DE -Jan 5 13:23:34 lsfks20 kdm: :0[3311]: pam_unix(kdm:session): session opened for user mp57 by (uid=0) -Jan 5 13:28:53 lsfks20 polkitd(authority=local): Registered Authentication Agent for session /org/freedesktop/ConsoleKit/Session1 (system bus name :1.9 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8) -Jan 5 13:33:44 lsfks20 nscd: nss_ldap: reconnecting to LDAP server... -Jan 5 13:33:44 lsfks20 nscd: nss_ldap: reconnected to LDAP server ldap://132.230.1.62 after 1 attempt -Jan 5 13:33:53 lsfks20 rpc.idmapd[2757]: nss_ldap: reconnecting to LDAP server... -Jan 5 13:33:53 lsfks20 rpc.idmapd[2757]: nss_ldap: reconnected to LDAP server ldap://132.230.1.62 after 1 attempt -Jan 5 13:35:46 lsfks20 sudo: pam_unix(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= user=mp57 -Jan 5 13:35:46 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= -Jan 5 13:35:59 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= -Jan 5 13:36:03 lsfks20 sudo: pam_unix(sudo:auth): conversation failed -Jan 5 13:36:03 lsfks20 sudo: pam_unix(sudo:auth): auth could not identify password for [mp57] -Jan 5 13:36:03 lsfks20 sudo: pam_krb5(sudo:auth): authentication failure; logname=mp57 uid=0 euid=0 tty=/dev/pts/0 ruser= rhost= -Jan 5 13:36:03 lsfks20 sudo: mp57 : 2 incorrect password attempts ; TTY=pts/0 ; PWD=/home/mp57 ; USER=root ; COMMAND=/bin/su -Jan 5 13:36:10 lsfks20 su[3981]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root -Jan 5 13:36:10 lsfks20 su[3981]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= -Jan 5 13:36:12 lsfks20 su[3981]: pam_authenticate: User not known to the underlying authentication module -Jan 5 13:36:12 lsfks20 su[3981]: FAILED su for root by mp57 -Jan 5 13:36:12 lsfks20 su[3981]: - /dev/pts/0 mp57:root -Jan 5 13:36:35 lsfks20 su[3985]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root -Jan 5 13:36:35 lsfks20 su[3985]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= -Jan 5 13:36:37 lsfks20 su[3985]: pam_authenticate: User not known to the underlying authentication module -Jan 5 13:36:37 lsfks20 su[3985]: FAILED su for root by mp57 -Jan 5 13:36:37 lsfks20 su[3985]: - /dev/pts/0 mp57:root -Jan 5 13:37:30 lsfks20 su[3994]: pam_unix(su:auth): authentication failure; logname=mp57 uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= user=root -Jan 5 13:37:30 lsfks20 su[3994]: pam_krb5(su:auth): authentication failure; logname=root uid=14620 euid=0 tty=/dev/pts/0 ruser=mp57 rhost= -Jan 5 13:37:32 lsfks20 su[3994]: pam_authenticate: User not known to the underlying authentication module -Jan 5 13:37:32 lsfks20 su[3994]: FAILED su for root by mp57 -Jan 5 13:37:32 lsfks20 su[3994]: - /dev/pts/0 mp57:root -Jan 5 13:37:40 lsfks20 su[3997]: Successful su for root by mp57 -Jan 5 13:37:40 lsfks20 su[3997]: + /dev/pts/0 mp57:root -Jan 5 13:37:40 lsfks20 su[3997]: pam_unix(su:session): session opened for user root by mp57(uid=14620) diff --git a/resources/config/1/uniontmp/var/log/daemon.log b/resources/config/1/uniontmp/var/log/daemon.log deleted file mode 100755 index 75da05d..0000000 --- a/resources/config/1/uniontmp/var/log/daemon.log +++ /dev/null @@ -1,45 +0,0 @@ -Jan 5 13:24:31 lsfks20 acpid: starting up with proc fs -Jan 5 13:23:14 lsfks20 acpid: 36 rules loaded -Jan 5 13:23:14 lsfks20 acpid: waiting for events: event logging is off -Jan 5 13:23:14 lsfks20 udevd-work[2819]: mknod(/dev/pktcdvd/control, 020660, (10,60) failed: Not a directory -Jan 5 13:23:14 lsfks20 sm-notify[2604]: Failed to open /var/lib/nfs/sm.bak: No such file or directory -Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Version 1.1.6 Starting -Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Flags: -Jan 5 13:23:14 lsfks20 vmnetBridge: Daemon created. -Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface eth0 index:2 -Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge eth0 to virtual network 0. -Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface br0 index:3 -Jan 5 13:23:14 lsfks20 vmnetBridge: RTM_NEWROUTE: index:3 -Jan 5 13:23:14 lsfks20 vmnetBridge: Stopped bridge eth0 to virtual network 0. -Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge br0 to virtual network 0. -Jan 5 13:23:14 lsfks20 udhcpd[3127]: udhcpd (v1.17.1) started -Jan 5 13:23:14 lsfks20 udhcpd[3127]: max_leases=235 is too big, setting to 81 -Jan 5 13:23:14 lsfks20 udhcpd[3127]: can't open '/var/run/vmware/udhcpd-vmnet1.leases': No such file or directory -Jan 5 13:23:14 lsfks20 udhcpd[3195]: udhcpd (v1.17.1) started -Jan 5 13:23:14 lsfks20 udhcpd[3195]: max_leases=235 is too big, setting to 81 -Jan 5 13:23:14 lsfks20 udhcpd[3195]: can't open '/var/run/vmware/udhcpd-vmnet8.leases': No such file or directory -Jan 5 13:23:25 lsfks20 automount[3293]: read_map_source: relative path invalid in files map name -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:*-Greeter] at /etc/kde4/kdm/kdmrc:15 -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'LogSource' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:29 -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:31 -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized section name [xdmcp] at /etc/kde4/kdm/kdmrc:33 -Jan 5 13:23:25 lsfks20 automount[3293]: lookup_init:136: lookup(yp): map #/etc/auto.misc: Local domain name not set -Jan 5 13:23:25 lsfks20 acpid: client connected from 3307[0:0] -Jan 5 13:23:25 lsfks20 acpid: 1 client rule loaded -Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: Could not parse desktop file /home/mp57/.config/autostart/xfconf-migration-4.6.desktop: Die Schlüsselwertedatei enthält nicht den Schlüssel »Name« -Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: could not read /home/mp57/.config/autostart/xfconf-migration-4.6.desktop -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. -Jan 5 13:28:53 lsfks20 polkitd[3760]: started daemon version 0.96 using authority implementation `local' version `0.96' -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3770 of process 3770 (n/a) owned by 'mp57' high priority at nice level -11. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3776 of process 3770 (n/a) owned by 'mp57' RT at priority 5. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3777 of process 3770 (n/a) owned by 'mp57' RT at priority 5. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. -Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3791 of process 3791 (n/a) owned by 'mp57' high priority at nice level -11. -Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. diff --git a/resources/config/1/uniontmp/var/log/debug b/resources/config/1/uniontmp/var/log/debug deleted file mode 100755 index 44c3be3..0000000 --- a/resources/config/1/uniontmp/var/log/debug +++ /dev/null @@ -1,159 +0,0 @@ -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: -Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC -Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: -Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC -Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT -Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. -Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device -Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. -Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 -Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 -Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 -Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp -Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 -Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... -Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). -Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized -Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. -Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 -Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized -Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) -Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up -Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached -Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge -Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) -Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down -Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached -Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) -Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up -Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached -Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) -Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing -Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present -Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present -Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present -Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. -Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. diff --git a/resources/config/1/uniontmp/var/log/dmesg b/resources/config/1/uniontmp/var/log/dmesg deleted file mode 100755 index 36af8c6..0000000 --- a/resources/config/1/uniontmp/var/log/dmesg +++ /dev/null @@ -1,673 +0,0 @@ -[ 0.000000] Initializing cgroup subsys cpuset -[ 0.000000] Initializing cgroup subsys cpu -[ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) -[ 0.000000] KERNEL supported cpus: -[ 0.000000] Intel GenuineIntel -[ 0.000000] AMD AuthenticAMD -[ 0.000000] NSC Geode by NSC -[ 0.000000] Cyrix CyrixInstead -[ 0.000000] Centaur CentaurHauls -[ 0.000000] Transmeta GenuineTMx86 -[ 0.000000] Transmeta TransmetaCPU -[ 0.000000] UMC UMC UMC UMC -[ 0.000000] BIOS-provided physical RAM map: -[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) -[ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) -[ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) -[ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) -[ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) -[ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -[ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) -[ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) -[ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) -[ 0.000000] DMI 2.4 present. -[ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 -[ 0.000000] MTRR default type: uncachable -[ 0.000000] MTRR fixed ranges enabled: -[ 0.000000] 00000-9FFFF write-back -[ 0.000000] A0000-BFFFF uncachable -[ 0.000000] C0000-E3FFF write-protect -[ 0.000000] E4000-EFFFF write-back -[ 0.000000] F0000-FFFFF write-protect -[ 0.000000] MTRR variable ranges enabled: -[ 0.000000] 0 base 0000000000 mask FF80000000 write-back -[ 0.000000] 1 base 0080000000 mask FFC0000000 write-back -[ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back -[ 0.000000] 3 base 0100000000 mask FFE0000000 write-back -[ 0.000000] 4 base 0120000000 mask FFF0000000 write-back -[ 0.000000] 5 disabled -[ 0.000000] 6 disabled -[ 0.000000] 7 disabled -[ 0.000000] TOM2: 0000000130000000 aka 4864M -[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 -[ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) -[ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) -[ 0.000000] Scanning 1 areas for low memory corruption -[ 0.000000] modified physical RAM map: -[ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) -[ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) -[ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) -[ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) -[ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) -[ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) -[ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) -[ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) -[ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) -[ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) -[ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) -[ 0.000000] initial memory mapped : 0 - 00e00000 -[ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 -[ 0.000000] NX (Execute Disable) protection: active -[ 0.000000] 0000000000 - 0000200000 page 4k -[ 0.000000] 0000200000 - 0037800000 page 2M -[ 0.000000] 0037800000 - 00379fe000 page 4k -[ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 -[ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 -[ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 -[ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 -[ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) -[ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) -[ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) -[ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) -[ 0.000000] ACPI: FACS cfec7f00 00040 -[ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) -[ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) -[ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) -[ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) -[ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) -[ 0.000000] ACPI: Local APIC address 0xfee00000 -[ 0.000000] 3974MB HIGHMEM available. -[ 0.000000] 889MB LOWMEM available. -[ 0.000000] mapped low ram: 0 - 379fe000 -[ 0.000000] low ram: 0 - 379fe000 -[ 0.000000] node 0 low ram: 00000000 - 379fe000 -[ 0.000000] node 0 bootmap 00009000 - 0000ff40 -[ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] -[ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -[ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] -[ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] -[ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] -[ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] -[ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] -[ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] -[ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] -[ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] -[ 0.000000] Zone PFN ranges: -[ 0.000000] DMA 0x00000000 -> 0x00001000 -[ 0.000000] Normal 0x00001000 -> 0x000379fe -[ 0.000000] HighMem 0x000379fe -> 0x00130000 -[ 0.000000] Movable zone start PFN for each node -[ 0.000000] early_node_map[4] active PFN ranges -[ 0.000000] 0: 0x00000000 -> 0x00000002 -[ 0.000000] 0: 0x00000006 -> 0x0000009f -[ 0.000000] 0: 0x00000100 -> 0x000cfeb7 -[ 0.000000] 0: 0x00100000 -> 0x00130000 -[ 0.000000] On node 0 totalpages: 1048146 -[ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 -[ 0.000000] DMA zone: 32 pages used for memmap -[ 0.000000] DMA zone: 0 pages reserved -[ 0.000000] DMA zone: 3963 pages, LIFO batch:0 -[ 0.000000] Normal zone: 1748 pages used for memmap -[ 0.000000] Normal zone: 221994 pages, LIFO batch:31 -[ 0.000000] HighMem zone: 7949 pages used for memmap -[ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 -[ 0.000000] Using APIC driver default -[ 0.000000] ACPI: PM-Timer IO Port: 0xf808 -[ 0.000000] ACPI: Local APIC address 0xfee00000 -[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) -[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) -[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) -[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -[ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 -[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) -[ 0.000000] ACPI: IRQ0 used by override. -[ 0.000000] ACPI: IRQ2 used by override. -[ 0.000000] ACPI: IRQ9 used by override. -[ 0.000000] Using ACPI (MADT) for SMP configuration information -[ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 -[ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs -[ 0.000000] nr_irqs_gsi: 24 -[ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 -[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 -[ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 -[ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) -[ 0.000000] Booting paravirtualized kernel on bare hardware -[ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 -[ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 -[ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 -[ 0.000000] pcpu-alloc: [0] 0 1 -[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 -[ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default -[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) -[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) -[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) -[ 0.000000] Enabling fast FPU save and restore... done. -[ 0.000000] Enabling unmasked SIMD FPU exception support... done. -[ 0.000000] Initializing CPU#0 -[ 0.000000] allocated 24903680 bytes of page_cgroup -[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups -[ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) -[ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) -[ 0.000000] virtual kernel memory layout: -[ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) -[ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) -[ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) -[ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) -[ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) -[ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) -[ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) -[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. -[ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -[ 0.000000] Hierarchical RCU implementation. -[ 0.000000] NR_IRQS:2304 nr_irqs:424 -[ 0.000000] Console: colour dummy device 80x25 -[ 0.000000] console [tty0] enabled -[ 0.000000] hpet clockevent registered -[ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer -[ 0.000000] Fast TSC calibration using PIT -[ 0.000000] Detected 2493.628 MHz processor. -[ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) -[ 0.008020] Security Framework initialized -[ 0.008038] AppArmor: AppArmor initialized -[ 0.008044] Mount-cache hash table entries: 512 -[ 0.012007] Initializing cgroup subsys ns -[ 0.012011] Initializing cgroup subsys cpuacct -[ 0.012014] Initializing cgroup subsys memory -[ 0.012020] Initializing cgroup subsys devices -[ 0.012022] Initializing cgroup subsys freezer -[ 0.012024] Initializing cgroup subsys net_cls -[ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -[ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) -[ 0.012044] CPU: Physical Processor ID: 0 -[ 0.012046] CPU: Processor Core ID: 0 -[ 0.012049] mce: CPU supports 5 MCE banks -[ 0.012059] using C1E aware idle routine -[ 0.012066] Performance Events: AMD PMU driver. -[ 0.012069] ... version: 0 -[ 0.012071] ... bit width: 48 -[ 0.012072] ... generic registers: 4 -[ 0.012074] ... value mask: 0000ffffffffffff -[ 0.012076] ... max period: 00007fffffffffff -[ 0.012078] ... fixed-purpose events: 0 -[ 0.012079] ... event mask: 000000000000000f -[ 0.012083] Checking 'hlt' instruction... OK. -[ 0.029950] ACPI: Core revision 20090903 -[ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 -[ 0.039977] ftrace: allocating 22420 entries in 44 pages -[ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs -[ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -[ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -[ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 -[ 0.012000] Initializing CPU#1 -[ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -[ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) -[ 0.012000] CPU: Physical Processor ID: 0 -[ 0.012000] CPU: Processor Core ID: 1 -[ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -[ 0.172072] Brought up 2 CPUs -[ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). -[ 0.172237] CPU0 attaching sched-domain: -[ 0.172240] domain 0: span 0-1 level MC -[ 0.172242] groups: 0 1 -[ 0.172247] CPU1 attaching sched-domain: -[ 0.172249] domain 0: span 0-1 level MC -[ 0.172251] groups: 1 0 -[ 0.172319] devtmpfs: initialized -[ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. -[ 0.172319] regulator: core version 0.5 -[ 0.172319] Time: 12:24:22 Date: 01/05/11 -[ 0.172319] NET: Registered protocol family 16 -[ 0.172319] EISA bus registered -[ 0.172319] Trying to unpack rootfs image as initramfs... -[ 0.172319] ACPI: bus type pci registered -[ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 -[ 0.172319] PCI: MCFG area at e0000000 reserved in E820 -[ 0.172319] PCI: Using MMCONFIG for extended config space -[ 0.172319] PCI: Using configuration type 1 for base access -[ 0.176093] bio: create slab at 0 -[ 0.176604] ACPI: EC: Look up EC in DSDT -[ 0.179477] ACPI: Interpreter enabled -[ 0.179481] ACPI: (supports S0 S3 S4 S5) -[ 0.179498] ACPI: Using IOAPIC for interrupt routing -[ 0.182958] ACPI: No dock devices found. -[ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -[ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -[ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error -[ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -[ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) -[ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold -[ 0.183342] pci 0000:00:02.0: PME# disabled -[ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold -[ 0.183380] pci 0000:00:07.0: PME# disabled -[ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] -[ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] -[ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] -[ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] -[ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] -[ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] -[ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode -[ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] -[ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] -[ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] -[ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] -[ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] -[ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] -[ 0.183927] pci 0000:00:13.5: supports D1 D2 -[ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot -[ 0.183933] pci 0000:00:13.5: PME# disabled -[ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] -[ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] -[ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] -[ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] -[ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] -[ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] -[ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] -[ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold -[ 0.184211] pci 0000:00:14.2: PME# disabled -[ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] -[ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] -[ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] -[ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] -[ 0.184443] pci 0000:02:00.0: supports D1 D2 -[ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] -[ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] -[ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] -[ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] -[ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold -[ 0.184629] pci 0000:3f:00.0: PME# disabled -[ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] -[ 0.184755] pci 0000:00:14.4: transparent bridge -[ 0.184774] pci_bus 0000:00: on NUMA node 0 -[ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -[ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] -[ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] -[ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] -[ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -[ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -[ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -[ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -[ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none -[ 0.200343] vgaarb: loaded -[ 0.200440] SCSI subsystem initialized -[ 0.200519] libata version 3.00 loaded. -[ 0.200580] usbcore: registered new interface driver usbfs -[ 0.200595] usbcore: registered new interface driver hub -[ 0.200618] usbcore: registered new device driver usb -[ 0.200753] ACPI: WMI: Mapper loaded -[ 0.200755] PCI: Using ACPI for IRQ routing -[ 0.200903] NetLabel: Initializing -[ 0.200905] NetLabel: domain hash size = 128 -[ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 -[ 0.200918] NetLabel: unlabeled traffic allowed by default -[ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 -[ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter -[ 0.202990] Switching to clocksource hpet -[ 0.203240] AppArmor: AppArmor Filesystem Enabled -[ 0.203240] pnp: PnP ACPI init -[ 0.203240] ACPI: bus type pnp registered -[ 0.203882] pnp: PnP ACPI: found 15 devices -[ 0.203884] ACPI: ACPI bus type pnp unregistered -[ 0.203887] PnPBIOS: Disabled by ACPI PNP -[ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved -[ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved -[ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved -[ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved -[ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved -[ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved -[ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved -[ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved -[ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved -[ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved -[ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved -[ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved -[ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved -[ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved -[ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved -[ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved -[ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved -[ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved -[ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved -[ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved -[ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved -[ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved -[ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved -[ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved -[ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved -[ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved -[ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved -[ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved -[ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 -[ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff -[ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff -[ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff -[ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f -[ 0.238684] pci 0000:00:07.0: IO window: disabled -[ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff -[ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled -[ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 -[ 0.238694] pci 0000:00:14.4: IO window: disabled -[ 0.238699] pci 0000:00:14.4: MEM window: disabled -[ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled -[ 0.238717] pci 0000:00:02.0: setting latency timer to 64 -[ 0.238722] pci 0000:00:07.0: setting latency timer to 64 -[ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] -[ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] -[ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] -[ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] -[ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] -[ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] -[ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] -[ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] -[ 0.238780] NET: Registered protocol family 2 -[ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) -[ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) -[ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) -[ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) -[ 0.240198] TCP reno registered -[ 0.240284] NET: Registered protocol family 1 -[ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled -[ 0.240370] pci 0000:02:00.0: Boot video device -[ 0.240551] cpufreq-nforce2: No nForce2 chipset. -[ 0.240574] Scanning for low memory corruption every 60 seconds -[ 0.240681] audit: initializing netlink socket (disabled) -[ 0.240691] type=2000 audit(1294230262.240:1): initialized -[ 0.249307] highmem bounce pool size: 64 pages -[ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages -[ 0.250539] VFS: Disk quotas dquot_6.5.2 -[ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) -[ 0.251068] fuse init (API version 7.13) -[ 0.251139] msgmni has been set to 1625 -[ 0.251329] alg: No test for stdrng (krng) -[ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) -[ 0.251377] io scheduler noop registered -[ 0.251379] io scheduler anticipatory registered -[ 0.251381] io scheduler deadline registered -[ 0.251414] io scheduler cfq registered (default) -[ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 -[ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 -[ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -[ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -[ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 -[ 0.251713] ACPI: Power Button [PBTN] -[ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 -[ 0.251756] ACPI: Power Button [PWRF] -[ 0.251956] processor LNXCPU:00: registered as cooling_device0 -[ 0.252097] processor LNXCPU:01: registered as cooling_device1 -[ 0.253777] isapnp: Scanning for PnP cards... -[ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -[ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -[ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -[ 0.256308] brd: module loaded -[ 0.256698] loop: module loaded -[ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 -[ 0.256921] alloc irq_desc for 16 on node -1 -[ 0.256923] alloc kstat_irqs on node -1 -[ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -[ 0.257252] Fixed MDIO Bus: probed -[ 0.257286] PPP generic driver version 2.4.2 -[ 0.257318] tun: Universal TUN/TAP device driver, 1.6 -[ 0.257319] tun: (C) 1999-2004 Max Krasnyansky -[ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -[ 0.257413] alloc irq_desc for 19 on node -1 -[ 0.257415] alloc kstat_irqs on node -1 -[ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 -[ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller -[ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 -[ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround -[ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 -[ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 -[ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 -[ 0.269326] usb usb1: configuration #1 chosen from 1 choice -[ 0.269352] hub 1-0:1.0: USB hub found -[ 0.269360] hub 1-0:1.0: 10 ports detected -[ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -[ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -[ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller -[ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 -[ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 -[ 0.321535] Freeing initrd memory: 6158k freed -[ 0.329388] usb usb2: configuration #1 chosen from 1 choice -[ 0.329413] hub 2-0:1.0: USB hub found -[ 0.329426] hub 2-0:1.0: 2 ports detected -[ 0.329480] alloc irq_desc for 17 on node -1 -[ 0.329482] alloc kstat_irqs on node -1 -[ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -[ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller -[ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 -[ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 -[ 0.389066] usb usb3: configuration #1 chosen from 1 choice -[ 0.389087] hub 3-0:1.0: USB hub found -[ 0.389097] hub 3-0:1.0: 2 ports detected -[ 0.389136] alloc irq_desc for 18 on node -1 -[ 0.389138] alloc kstat_irqs on node -1 -[ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -[ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller -[ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 -[ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 -[ 0.449065] usb usb4: configuration #1 chosen from 1 choice -[ 0.449086] hub 4-0:1.0: USB hub found -[ 0.449095] hub 4-0:1.0: 2 ports detected -[ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -[ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller -[ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 -[ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 -[ 0.509057] usb usb5: configuration #1 chosen from 1 choice -[ 0.509078] hub 5-0:1.0: USB hub found -[ 0.509087] hub 5-0:1.0: 2 ports detected -[ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -[ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller -[ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 -[ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 -[ 0.569055] usb usb6: configuration #1 chosen from 1 choice -[ 0.569076] hub 6-0:1.0: USB hub found -[ 0.569085] hub 6-0:1.0: 2 ports detected -[ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver -[ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 -[ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 -[ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 -[ 0.571764] mice: PS/2 mouse device common for all mice -[ 0.571854] rtc_cmos 00:03: RTC can wake from S4 -[ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 -[ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -[ 0.571998] device-mapper: uevent: version 1.0.3 -[ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com -[ 0.572162] device-mapper: multipath: version 1.1.0 loaded -[ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded -[ 0.572263] EISA: Probing bus 0 at eisa.0 -[ 0.572270] Cannot allocate resource for EISA slot 1 -[ 0.572300] EISA: Detected 0 cards. -[ 0.572367] cpuidle: using governor ladder -[ 0.572369] cpuidle: using governor menu -[ 0.572740] TCP cubic registered -[ 0.572877] NET: Registered protocol family 10 -[ 0.573274] lo: Disabled Privacy Extensions -[ 0.573540] NET: Registered protocol family 17 -[ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) -[ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa -[ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb -[ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd -[ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf -[ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 -[ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 -[ 0.607797] isapnp: No Plug & Play device found -[ 0.607819] powernow-k8: ph2 null fid transition 0x11 -[ 0.607844] Using IPI No-Shortcut mode -[ 0.607931] PM: Resume from disk failed. -[ 0.607947] registered taskstats version 1 -[ 0.608207] Magic number: 11:987:429 -[ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) -[ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found -[ 0.608301] EDD information not available. -[ 0.608351] Freeing unused kernel memory: 672k freed -[ 0.608801] Write protecting the kernel text: 4836k -[ 0.608861] Write protecting the kernel read-only data: 1880k -[ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k -[ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 -[ 0.663001] vesafb: protected mode interface info at c000:a01e -[ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e -[ 0.663005] vesafb: scrolling: redraw -[ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 -[ 0.663591] fb0: VESA VGA frame buffer device -[ 0.671307] Console: switching to colour frame buffer device 128x48 -[ 0.705121] usbcore: registered new interface driver hiddev -[ 0.705613] usbcore: registered new interface driver usbhid -[ 0.705617] usbhid: v2.6:USB HID core driver -[ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 -[ 1.066113] tg3.c:v3.102 (September 1, 2009) -[ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -[ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 -[ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 -[ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) -[ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] -[ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] -[ 1.184045] Bridge firewalling registered -[ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready -[ 1.223023] usb 2-1: configuration #1 chosen from 1 choice -[ 1.232247] device eth0 entered promiscuous mode -[ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 -[ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 -[ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 -[ 1.691251] usb 4-1: configuration #1 chosen from 1 choice -[ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 -[ 2.121234] usb 4-2: configuration #1 chosen from 1 choice -[ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 -[ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 -[ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. -[ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. -[ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -[ 4.379979] br0: port 1(eth0) entering forwarding state -[ 5.348605] RPC: Registered udp transport module. -[ 5.348609] RPC: Registered tcp transport module. -[ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. -[ 5.419953] ahci 0000:00:12.0: version 3.0 -[ 5.419971] alloc irq_desc for 22 on node -1 -[ 5.419973] alloc kstat_irqs on node -1 -[ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 -[ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit -[ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode -[ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc -[ 5.420538] scsi0 : ahci -[ 5.421424] scsi1 : ahci -[ 5.421992] scsi2 : ahci -[ 5.423101] scsi3 : ahci -[ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 -[ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 -[ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 -[ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 -[ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) -[ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) -[ 5.908026] ata1: softreset failed (device not ready) -[ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying -[ 5.908051] ata2: softreset failed (device not ready) -[ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying -[ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) -[ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) -[ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 -[ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) -[ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -[ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -[ 6.073402] ata1.00: configured for UDMA/133 -[ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 -[ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -[ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -[ 6.079640] ata2.00: configured for UDMA/100 -[ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 -[ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) -[ 6.093666] sd 0:0:0:0: [sda] Write Protect is off -[ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 -[ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA -[ 6.093820] sda: -[ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 -[ 6.112956] sda1 sda2 sda3 sda4 -[ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk -[ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 -[ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray -[ 6.544933] Uniform CD-ROM driver Revision: 3.20 -[ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 -[ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 -[ 6.556221] Linux agpgart interface v0.103 -[ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 -[ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 -[ 6.661458] scsi4 : pata_atiixp -[ 6.662649] scsi5 : pata_atiixp -[ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 -[ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 -[ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 -[ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -[ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 -[ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 -[ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI -[ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] -[ 7.848088] ppdev: user-space parallel port driver -[ 7.917660] aufs 2-standalone.tree-20091207 -[ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 -[ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. -[ 7.985345] Using default: (25% of RAM). -[ 7.985348] ramzswap: disk size set to 1030140 kB -[ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS -[ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). -[ 9.732649] udev: starting version 151 -[ 9.783447] lp0: using parport0 (interrupt-driven). -[ 9.963224] [drm] Initialized drm 1.1.0 20060810 -[ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 -[ 10.165758] [drm] radeon defaulting to kernel modesetting. -[ 10.165761] [drm] radeon kernel modesetting enabled. -[ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -[ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 -[ 10.167854] [drm] radeon: Initializing kernel modesetting. -[ 10.203499] [drm] register mmio base: 0xF0100000 -[ 10.203502] [drm] register mmio size: 65536 -[ 10.203754] ATOM BIOS: 113 -[ 10.203768] [drm] Clocks initialized ! -[ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M -[ 10.203959] [drm] RAM width 64bits DDR -[ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. -[ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. -[ 10.207479] [drm] radeon: 256M of VRAM memory ready -[ 10.207481] [drm] radeon: 512M of GTT memory ready. -[ 10.207521] [drm] radeon: irq initialized. -[ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 -[ 10.217958] [drm] Loading RV610 Microcode -[ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin -[ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin -[ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin -[ 10.422024] [drm] ring test succeeded in 1 usecs -[ 10.426041] [drm] radeon: ib pool ready. -[ 10.426122] [drm] ib test succeeded in 0 usecs -[ 10.426125] [drm] Enabling audio support -[ 10.426155] [drm] Default TV standard: NTSC -[ 10.428628] [drm] Radeon Display Connectors -[ 10.428631] [drm] Connector 0: -[ 10.428633] [drm] DIN -[ 10.428634] [drm] Encoders: -[ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 -[ 10.428637] [drm] Connector 1: -[ 10.428639] [drm] DVI-I -[ 10.428640] [drm] HPD2 -[ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c -[ 10.428644] [drm] Encoders: -[ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 -[ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 -[ 10.428648] [drm] Connector 2: -[ 10.428650] [drm] DVI-I -[ 10.428651] [drm] HPD1 -[ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c -[ 10.428654] [drm] Encoders: -[ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 -[ 10.428657] [drm] DFP2: INTERNAL_LVTM1 -[ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... -[ 10.451333] vboxdrv: Successfully done. -[ 10.451335] vboxdrv: Found 2 processor cores. -[ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac -[ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. -[ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). diff --git a/resources/config/1/uniontmp/var/log/dmesg.0 b/resources/config/1/uniontmp/var/log/dmesg.0 deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/kdm.log b/resources/config/1/uniontmp/var/log/kdm.log deleted file mode 100755 index 29ac52e..0000000 --- a/resources/config/1/uniontmp/var/log/kdm.log +++ /dev/null @@ -1,77 +0,0 @@ -******************************************************************************** -Note that your system uses syslog. All of kdm's internally generated messages -(i.e., not from libraries and external programs/scripts it uses) go to the -daemon.* syslog facility; check your syslog configuration to find out to which -file(s) it is logged. PAM logs messages related to authentication to authpriv.*. -******************************************************************************** - - -X.Org X Server 1.7.6 -Release Date: 2010-03-17 -X Protocol Version 11, Revision 0 -Build Operating System: Linux 2.6.24-27-server i686 Ubuntu -Current Operating System: Linux lsfks20 2.6.32-25-generic-pae #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 i686 -Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default -Build Date: 21 July 2010 12:47:34PM -xorg-server 2:1.7.6-2ubuntu7.3 (For technical support please see http://www.ubuntu.com/support) -Current version of pixman: 0.16.4 - Before reporting problems, check http://wiki.x.org - to make sure that you have the latest version. -Markers: (--) probed, (**) from config file, (==) default setting, - (++) from command line, (!!) notice, (II) informational, - (WW) warning, (EE) error, (NI) not implemented, (??) unknown. -(==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan 5 13:23:25 2011 -(==) Using config file: "/etc/X11/xorg.conf" -(==) Using config directory: "/usr/lib/X11/xorg.conf.d" -(II) [KMS] Kernel modesetting enabled. -(EE) Generic Keyboard: No device specified. -(EE) PreInit returned NULL for "Generic Keyboard" -QFont::fromString: Invalid description 'Serif,20,5,0,50,0' -QFont::fromString: Invalid description 'Sans Serif,10,5,0,50,0' -QFont::fromString: Invalid description 'Sans Serif,10,5,0,75,0' -QInotifyFileSystemWatcherEngine::addPaths: inotify_add_watch failed: No such file or directory -QFileSystemWatcher: failed to add paths: /tmp/0861351660/.config/ibus/bus -Bus::open: Can not get ibus-daemon's address. -IBusInputContext::createInputContext: no connection to ibus-daemon -The XKEYBOARD keymap compiler (xkbcomp) reports: -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Duplicate shape name "" -> Using last definition -> Warning: Multiple doodads named "" -> Using first definition -> Warning: Multiple doodads named "" -> Using first definition -> Warning: Multiple doodads named "" -> Using first definition -> Warning: Multiple doodads named "" -> Using first definition -> Warning: Multiple doodads named "" -> Using first definition -> Warning: Multiple doodads named "" -> Using first definition -Errors from xkbcomp are not fatal to the X server diff --git a/resources/config/1/uniontmp/var/log/kern.log b/resources/config/1/uniontmp/var/log/kern.log deleted file mode 100755 index 3489c61..0000000 --- a/resources/config/1/uniontmp/var/log/kern.log +++ /dev/null @@ -1,725 +0,0 @@ -Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. -Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) -Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns -Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct -Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory -Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices -Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer -Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls -Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks -Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine -Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. -Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f -Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. -Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 -Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 -Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs -Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs -Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). -Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: -Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC -Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: -Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC -Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access -Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT -Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) -Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing -Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. -Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error -Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) -Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode -Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot -Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge -Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none -Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs -Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub -Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb -Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing -Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing -Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default -Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter -Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices -Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered -Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP -Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f -Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device -Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. -Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds -Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] -Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] -Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... -Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed -Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky -Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround -Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed -Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice -Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com -Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. -Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder -Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu -Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions -Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) -Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa -Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb -Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd -Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf -Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found -Jan 5 13:24:31 lsfks20 kernel: [ 0.607819] powernow-k8: ph2 null fid transition 0x11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode -Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. -Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 -Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) -Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found -Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed -Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k -Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k -Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k -Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 -Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e -Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e -Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw -Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device -Jan 5 13:24:31 lsfks20 kernel: [ 0.671307] Console: switching to colour frame buffer device 128x48 -Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev -Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid -Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver -Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 -Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) -Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 -Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) -Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] -Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] -Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered -Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready -Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode -Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 -Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 -Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 -Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 -Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. -Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. -Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state -Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit -Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode -Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc -Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908026] ata1: softreset failed (device not ready) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying -Jan 5 13:24:31 lsfks20 kernel: [ 5.908051] ata2: softreset failed (device not ready) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying -Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 -Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 -Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 -Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 -Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) -Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off -Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 -Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA -Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: -Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.112956] sda1 sda2 sda3 sda4 -Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk -Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray -Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 -Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 -Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 -Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp -Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp -Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 -Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 -Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 -Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 -Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 -Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI -Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] -Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver -Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 -Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 -Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. -Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). -Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB -Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS -Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). -Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 -Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). -Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 -Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. -Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. -Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 -Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. -Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! -Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M -Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR -Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready -Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 -Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode -Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs -Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. -Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs -Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support -Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC -Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors -Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN -Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I -Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c -Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I -Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c -Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... -Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac -Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). -Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized -Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. -Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 -Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized -Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) -Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up -Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached -Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge -Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) -Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down -Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached -Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) -Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up -Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached -Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) -Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 -Jan 5 13:23:14 lsfks20 kernel: [ 10.738346] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver -Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 -Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 -Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team -Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device -Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier -Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing -Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present -Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) -Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use -Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or -Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. -Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k -Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present -Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found -Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present -Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present -Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present diff --git a/resources/config/1/uniontmp/var/log/lastlog b/resources/config/1/uniontmp/var/log/lastlog deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/lpr.log b/resources/config/1/uniontmp/var/log/lpr.log deleted file mode 100755 index 84f98f1..0000000 --- a/resources/config/1/uniontmp/var/log/lpr.log +++ /dev/null @@ -1,4 +0,0 @@ -Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 -Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent -Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp -Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent diff --git a/resources/config/1/uniontmp/var/log/mail.err b/resources/config/1/uniontmp/var/log/mail.err deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/mail.info b/resources/config/1/uniontmp/var/log/mail.info deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/mail.log b/resources/config/1/uniontmp/var/log/mail.log deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/mail.warn b/resources/config/1/uniontmp/var/log/mail.warn deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/messages b/resources/config/1/uniontmp/var/log/messages deleted file mode 100755 index 8eaf361..0000000 --- a/resources/config/1/uniontmp/var/log/messages +++ /dev/null @@ -1,574 +0,0 @@ -Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. -Jan 5 13:24:31 lsfks20 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="2615" x-info="http://www.rsyslog.com"] (re)start -Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's groupid changed to 102 -Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's userid changed to 101 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. -Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) -Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns -Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct -Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory -Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices -Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer -Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls -Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks -Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine -Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. -Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f -Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. -Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 -Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 -Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs -Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs -Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access -Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) -Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing -Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. -Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error -Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) -Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode -Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot -Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge -Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none -Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs -Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub -Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb -Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing -Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing -Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default -Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter -Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices -Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered -Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP -Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f -Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. -Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds -Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] -Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] -Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... -Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed -Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky -Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround -Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed -Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice -Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com -Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. -Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder -Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu -Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions -Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) -Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa -Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb -Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd -Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf -Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found -Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode -Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 -Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) -Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found -Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed -Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k -Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k -Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k -Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 -Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e -Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e -Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw -Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device -Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev -Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid -Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver -Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 -Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) -Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 -Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) -Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] -Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] -Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered -Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready -Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode -Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 -Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 -Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 -Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 -Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. -Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. -Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state -Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit -Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode -Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc -Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying -Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying -Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 -Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 -Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 -Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 -Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) -Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off -Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA -Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: -Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk -Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 -Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 -Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 -Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp -Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp -Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 -Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 -Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 -Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 -Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 -Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI -Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] -Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver -Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 -Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 -Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. -Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). -Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB -Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS -Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). -Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 -Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). -Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 -Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. -Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. -Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. -Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! -Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M -Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR -Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready -Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 -Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode -Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs -Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. -Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs -Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support -Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC -Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors -Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN -Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I -Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c -Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I -Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c -Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac -Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. -Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 -Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 -Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 -Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team -Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device -Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier -Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present -Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) -Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use -Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or -Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. -Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k -Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found diff --git a/resources/config/1/uniontmp/var/log/news/news.crit b/resources/config/1/uniontmp/var/log/news/news.crit deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/news/news.err b/resources/config/1/uniontmp/var/log/news/news.err deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/news/news.notice b/resources/config/1/uniontmp/var/log/news/news.notice deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/pm-powersave.log b/resources/config/1/uniontmp/var/log/pm-powersave.log deleted file mode 100755 index 996d91c..0000000 --- a/resources/config/1/uniontmp/var/log/pm-powersave.log +++ /dev/null @@ -1,7 +0,0 @@ -/usr/lib/pm-utils/power.d/95hdparm-apm false:success. -/usr/lib/pm-utils/power.d/anacron false:start: Unknown job: anacron -success. -/usr/lib/pm-utils/power.d/powersave-policy-dirty-writeback false:success. -/usr/lib/pm-utils/power.d/powersave-policy-hda-powerdown false:success. -/usr/lib/pm-utils/power.d/sched-powersave false:**sched policy powersave OFF -success. diff --git a/resources/config/1/uniontmp/var/log/syslog b/resources/config/1/uniontmp/var/log/syslog deleted file mode 100755 index 2261682..0000000 --- a/resources/config/1/uniontmp/var/log/syslog +++ /dev/null @@ -1,781 +0,0 @@ -Jan 5 13:24:31 lsfks20 rsyslogd: connot create '/var/spool/postfix/dev/log': No such file or directory -Jan 5 13:24:31 lsfks20 kernel: imklog 4.2.0, log source = /proc/kmsg started. -Jan 5 13:24:31 lsfks20 rsyslogd: [origin software="rsyslogd" swVersion="4.2.0" x-pid="2615" x-info="http://www.rsyslog.com"] (re)start -Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's groupid changed to 102 -Jan 5 13:24:31 lsfks20 rsyslogd: rsyslogd's userid changed to 101 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpuset -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing cgroup subsys cpu -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Linux version 2.6.32-25-generic-pae (buildd@rothera) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #44-Ubuntu SMP Fri Sep 17 21:57:48 UTC 2010 (Ubuntu 2.6.32-25.44-generic-pae 2.6.32.21+drm33.7) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] KERNEL supported cpus: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Intel GenuineIntel -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] AMD AuthenticAMD -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NSC Geode by NSC -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Cyrix CyrixInstead -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Centaur CentaurHauls -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta GenuineTMx86 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Transmeta TransmetaCPU -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] UMC UMC UMC UMC -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-provided physical RAM map: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009fc00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000000e8000 - 0000000000100000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 00000000cfeb7f00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000cfeb7f00 - 00000000d0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fec00000 - 00000000fed40000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 00000000fed45000 - 0000000100000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] BIOS-e820: 0000000100000000 - 0000000130000000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMI 2.4 present. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] last_pfn = 0x130000 max_arch_pfn = 0x1000000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR default type: uncachable -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR fixed ranges enabled: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 00000-9FFFF write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] A0000-BFFFF uncachable -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] C0000-E3FFF write-protect -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] E4000-EFFFF write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] F0000-FFFFF write-protect -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] MTRR variable ranges enabled: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0 base 0000000000 mask FF80000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 1 base 0080000000 mask FFC0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 2 base 00C0000000 mask FFF0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3 base 0100000000 mask FFE0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 4 base 0120000000 mask FFF0000000 write-back -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 5 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 6 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 7 disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] TOM2: 0000000130000000 aka 4864M -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 00000000d0000000 - 0000000100000000 (usable) ==> (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] e820 update range: 0000000000002000 - 0000000000006000 (usable) ==> (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Scanning 1 areas for low memory corruption -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified physical RAM map: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000000000 - 0000000000002000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000002000 - 0000000000006000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000006000 - 000000000009fc00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 000000000009fc00 - 00000000000a0000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000000e8000 - 0000000000100000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000000100000 - 00000000cfeb7f00 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000cfeb7f00 - 00000000d0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000e0000000 - 00000000f0000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fec00000 - 00000000fed40000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 00000000fed45000 - 0000000100000000 (reserved) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] modified: 0000000100000000 - 0000000130000000 (usable) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] initial memory mapped : 0 - 00e00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NX (Execute Disable) protection: active -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000000000 - 0000200000 page 4k -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0000200000 - 0037800000 page 2M -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0037800000 - 00379fe000 page 4k -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] kernel direct mapping tables up to 379fe000 @ 7000-d000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] RAMDISK: 7f9fc000 - 7ffff9f4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocated new RAMDISK: 0093e000 - 00f419f4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Move RAMDISK from 000000007f9fc000 - 000000007ffff9f3 to 0093e000 - 00f419f3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDP 000e7610 00014 (v00 COMPAQ) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: RSDT cfec7f40 0003C (v01 HPQOEM SLIC-BPC 20070418 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACP cfec7fe8 00074 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: DSDT cfec8343 093D2 (v01 COMPAQ DSDT_PRJ 00000001 MSFT 0100000E) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: FACS cfec7f00 00040 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: APIC cfec805c 00068 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: ASF! cfec80c4 00063 (v32 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: MCFG cfec8127 0003C (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: TCPA cfec8163 00032 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET cfec830b 00038 (v01 COMPAQ HP_RS485 00000001 00000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 3974MB HIGHMEM available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 889MB LOWMEM available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] mapped low ram: 0 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] low ram: 0 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 low ram: 00000000 - 379fe000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] node 0 bootmap 00009000 - 0000ff40 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] (9 early reservations) ==> bootmem [0000000000 - 00379fe000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #0 [0000000000 - 0000001000] BIOS data page ==> [0000000000 - 0000001000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #1 [0000001000 - 0000002000] EX TRAMPOLINE ==> [0000001000 - 0000002000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #2 [0000006000 - 0000007000] TRAMPOLINE ==> [0000006000 - 0000007000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #3 [0000100000 - 0000935818] TEXT DATA BSS ==> [0000100000 - 0000935818] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #4 [000009f800 - 0000100000] BIOS reserved ==> [000009f800 - 0000100000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #5 [0000936000 - 000093d0eb] BRK ==> [0000936000 - 000093d0eb] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #6 [0000007000 - 0000009000] PGTABLE ==> [0000007000 - 0000009000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #7 [000093e000 - 0000f419f4] NEW RAMDISK ==> [000093e000 - 0000f419f4] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] #8 [0000009000 - 0000010000] BOOTMAP ==> [0000009000 - 0000010000] -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Zone PFN ranges: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA 0x00000000 -> 0x00001000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal 0x00001000 -> 0x000379fe -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem 0x000379fe -> 0x00130000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Movable zone start PFN for each node -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] early_node_map[4] active PFN ranges -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000000 -> 0x00000002 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000006 -> 0x0000009f -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00000100 -> 0x000cfeb7 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] 0: 0x00100000 -> 0x00130000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] On node 0 totalpages: 1048146 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] free_area_init_node: node 0, pgdat c07d8d60, node_mem_map c1001000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 32 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 0 pages reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] DMA zone: 3963 pages, LIFO batch:0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 1748 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Normal zone: 221994 pages, LIFO batch:31 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 7949 pages used for memmap -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HighMem zone: 812460 pages, LIFO batch:31 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using APIC driver default -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0xf808 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ0 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ2 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: IRQ9 used by override. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] ACPI: HPET id: 0x10028300 base: 0xfed00000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] nr_irqs_gsi: 24 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e8000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PM: Registered nosave memory: 00000000000e8000 - 0000000000100000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Allocating PCI resources starting at d0000000 (gap: d0000000:10000000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PERCPU: Embedded 15 pages/cpu @c3800000 s39480 r0 d21960 u1048576 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: s39480 r0 d21960 u1048576 alloc=1*2097152 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1038417 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Kernel command line: initrd=132.230.4.5::initramfs-default file=tftp://132.230.4.5 vga=791 quiet ip=132.230.4.20:132.230.201.1:132.230.4.254:255.255.255.0 BOOTIF=01-00-1e-0b-27-f4-99 BOOT_IMAGE=132.230.4.5::kernel-default -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling fast FPU save and restore... done. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Enabling unmasked SIMD FPU exception support... done. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing CPU#0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] allocated 24903680 bytes of page_cgroup -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Initializing HighMem for node 0 (000379fe:00130000) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Memory: 4112724k/4980736k available (4833k kernel code, 78848k reserved, 2220k data, 672k init, 3281636k highmem) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] virtual kernel memory layout: -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] fixmap : 0xfff1d000 - 0xfffff000 ( 904 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] pkmap : 0xffa00000 - 0xffc00000 (2048 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] vmalloc : 0xf81fe000 - 0xff9fe000 ( 120 MB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf79fe000 ( 889 MB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .init : 0xc07e4000 - 0xc088c000 ( 672 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .data : 0xc05b877f - 0xc07e37c8 (2220 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] .text : 0xc0100000 - 0xc05b877f (4833 kB) -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Hierarchical RCU implementation. -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:424 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Console: colour dummy device 80x25 -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] console [tty0] enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] hpet clockevent registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Fast TSC calibration using PIT -Jan 5 13:24:31 lsfks20 kernel: [ 0.000000] Detected 2493.628 MHz processor. -Jan 5 13:24:31 lsfks20 kernel: [ 0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 4987.25 BogoMIPS (lpj=9974512) -Jan 5 13:24:31 lsfks20 kernel: [ 0.008020] Security Framework initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.008038] AppArmor: AppArmor initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.008044] Mount-cache hash table entries: 512 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012007] Initializing cgroup subsys ns -Jan 5 13:24:31 lsfks20 kernel: [ 0.012011] Initializing cgroup subsys cpuacct -Jan 5 13:24:31 lsfks20 kernel: [ 0.012014] Initializing cgroup subsys memory -Jan 5 13:24:31 lsfks20 kernel: [ 0.012020] Initializing cgroup subsys devices -Jan 5 13:24:31 lsfks20 kernel: [ 0.012022] Initializing cgroup subsys freezer -Jan 5 13:24:31 lsfks20 kernel: [ 0.012024] Initializing cgroup subsys net_cls -Jan 5 13:24:31 lsfks20 kernel: [ 0.012040] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012042] CPU: L2 Cache: 512K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012044] CPU: Physical Processor ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012046] CPU: Processor Core ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012049] mce: CPU supports 5 MCE banks -Jan 5 13:24:31 lsfks20 kernel: [ 0.012059] using C1E aware idle routine -Jan 5 13:24:31 lsfks20 kernel: [ 0.012066] Performance Events: AMD PMU driver. -Jan 5 13:24:31 lsfks20 kernel: [ 0.012069] ... version: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012071] ... bit width: 48 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012072] ... generic registers: 4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012074] ... value mask: 0000ffffffffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.012076] ... max period: 00007fffffffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.012078] ... fixed-purpose events: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012079] ... event mask: 000000000000000f -Jan 5 13:24:31 lsfks20 kernel: [ 0.012083] Checking 'hlt' instruction... OK. -Jan 5 13:24:31 lsfks20 kernel: [ 0.029950] ACPI: Core revision 20090903 -Jan 5 13:24:31 lsfks20 kernel: [ 0.039973] ftrace: converting mcount calls to 0f 1f 44 00 00 -Jan 5 13:24:31 lsfks20 kernel: [ 0.039977] ftrace: allocating 22420 entries in 44 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.044081] Enabling APIC mode: Flat. Using 1 I/O APICs -Jan 5 13:24:31 lsfks20 kernel: [ 0.044407] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.085806] CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -Jan 5 13:24:31 lsfks20 kernel: [ 0.088001] Booting processor 1 APIC 0x1 ip 0x6000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] Initializing CPU#1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: L2 Cache: 512K (64 bytes/line) -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Physical Processor ID: 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.012000] CPU: Processor Core ID: 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172051] CPU1: AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ stepping 01 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172072] Brought up 2 CPUs -Jan 5 13:24:31 lsfks20 kernel: [ 0.172074] Total of 2 processors activated (9974.72 BogoMIPS). -Jan 5 13:24:31 lsfks20 kernel: [ 0.172237] CPU0 attaching sched-domain: -Jan 5 13:24:31 lsfks20 kernel: [ 0.172240] domain 0: span 0-1 level MC -Jan 5 13:24:31 lsfks20 kernel: [ 0.172242] groups: 0 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172247] CPU1 attaching sched-domain: -Jan 5 13:24:31 lsfks20 kernel: [ 0.172249] domain 0: span 0-1 level MC -Jan 5 13:24:31 lsfks20 kernel: [ 0.172251] groups: 1 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] devtmpfs: initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] HP Compaq Laptop series board detected. Selecting BIOS-method for reboots. -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] regulator: core version 0.5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Time: 12:24:22 Date: 01/05/11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] NET: Registered protocol family 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] EISA bus registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] Trying to unpack rootfs image as initramfs... -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] ACPI: bus type pci registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: MCFG area at e0000000 reserved in E820 -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using MMCONFIG for extended config space -Jan 5 13:24:31 lsfks20 kernel: [ 0.172319] PCI: Using configuration type 1 for base access -Jan 5 13:24:31 lsfks20 kernel: [ 0.176093] bio: create slab at 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.176604] ACPI: EC: Look up EC in DSDT -Jan 5 13:24:31 lsfks20 kernel: [ 0.179477] ACPI: Interpreter enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.179481] ACPI: (supports S0 S3 S4 S5) -Jan 5 13:24:31 lsfks20 kernel: [ 0.179498] ACPI: Using IOAPIC for interrupt routing -Jan 5 13:24:31 lsfks20 kernel: [ 0.182958] ACPI: No dock devices found. -Jan 5 13:24:31 lsfks20 kernel: [ 0.183237] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.183243] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.183249] ACPI: Marking method _OSC as Serialized because of AE_ALREADY_EXISTS error -Jan 5 13:24:31 lsfks20 kernel: [ 0.183265] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -Jan 5 13:24:31 lsfks20 kernel: [ 0.183271] ACPI: PCI Root Bridge [PCI0] (0000:00) -Jan 5 13:24:31 lsfks20 kernel: [ 0.183339] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.183342] pci 0000:00:02.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183377] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.183380] pci 0000:00:07.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183439] pci 0000:00:12.0: reg 10 io port: [0x2130-0x2137] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183447] pci 0000:00:12.0: reg 14 io port: [0x2150-0x2153] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183454] pci 0000:00:12.0: reg 18 io port: [0x2138-0x213f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183462] pci 0000:00:12.0: reg 1c io port: [0x2154-0x2157] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183469] pci 0000:00:12.0: reg 20 io port: [0x2100-0x210f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183477] pci 0000:00:12.0: reg 24 32bit mmio: [0xf0209000-0xf02093ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183497] pci 0000:00:12.0: set SATA to AHCI mode -Jan 5 13:24:31 lsfks20 kernel: [ 0.183547] pci 0000:00:13.0: reg 10 32bit mmio: [0xf0204000-0xf0204fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183607] pci 0000:00:13.1: reg 10 32bit mmio: [0xf0205000-0xf0205fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183668] pci 0000:00:13.2: reg 10 32bit mmio: [0xf0206000-0xf0206fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183728] pci 0000:00:13.3: reg 10 32bit mmio: [0xf0207000-0xf0207fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183789] pci 0000:00:13.4: reg 10 32bit mmio: [0xf0208000-0xf0208fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183869] pci 0000:00:13.5: reg 10 32bit mmio: [0xf0209400-0xf02094ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.183927] pci 0000:00:13.5: supports D1 D2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.183929] pci 0000:00:13.5: PME# supported from D0 D1 D2 D3hot -Jan 5 13:24:31 lsfks20 kernel: [ 0.183933] pci 0000:00:13.5: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.183981] pci 0000:00:14.0: reg 10 io port: [0xfc00-0xfc0f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184072] pci 0000:00:14.1: reg 10 io port: [0x2140-0x2147] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184079] pci 0000:00:14.1: reg 14 io port: [0x2158-0x215b] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184086] pci 0000:00:14.1: reg 18 io port: [0x2148-0x214f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184094] pci 0000:00:14.1: reg 1c io port: [0x215c-0x215f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184101] pci 0000:00:14.1: reg 20 io port: [0x2120-0x212f] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184159] pci 0000:00:14.2: reg 10 64bit mmio: [0xf0200000-0xf0203fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184206] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.184211] pci 0000:00:14.2: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184405] pci 0000:02:00.0: reg 10 64bit mmio pref: [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184414] pci 0000:02:00.0: reg 18 64bit mmio: [0xf0100000-0xf010ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184419] pci 0000:02:00.0: reg 20 io port: [0x1100-0x11ff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184427] pci 0000:02:00.0: reg 30 32bit mmio pref: [0x000000-0x01ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184443] pci 0000:02:00.0: supports D1 D2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.184496] pci 0000:00:02.0: bridge io port: [0x1000-0x1fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184498] pci 0000:00:02.0: bridge 32bit mmio: [0xf0100000-0xf01fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184502] pci 0000:00:02.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184558] pci 0000:3f:00.0: reg 10 64bit mmio: [0xf0000000-0xf000ffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184624] pci 0000:3f:00.0: PME# supported from D3hot D3cold -Jan 5 13:24:31 lsfks20 kernel: [ 0.184629] pci 0000:3f:00.0: PME# disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.184691] pci 0000:00:07.0: bridge 32bit mmio: [0xf0000000-0xf00fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184755] pci 0000:00:14.4: transparent bridge -Jan 5 13:24:31 lsfks20 kernel: [ 0.184774] pci_bus 0000:00: on NUMA node 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.184778] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184874] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG1._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184936] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCX2._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.184992] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB_._PRT] -Jan 5 13:24:31 lsfks20 kernel: [ 0.185195] ACPI Error (dsfield-0143): [CAPD] Namespace lookup failure, AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.185200] ACPI Error (psparse-0537): Method parse/execution failed [\_SB_.PCI0._OSC] (Node f7415378), AE_ALREADY_EXISTS -Jan 5 13:24:31 lsfks20 kernel: [ 0.185218] ACPI Warning for \_SB_.PCI0._OSC: Parameter count mismatch - ASL declared 5, ACPI requires 4 (20090903/nspredef-336) -Jan 5 13:24:31 lsfks20 kernel: [ 0.199733] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199805] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199876] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.199947] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200028] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200099] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200173] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200244] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 14 15) *0, disabled. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200341] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none -Jan 5 13:24:31 lsfks20 kernel: [ 0.200343] vgaarb: loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.200440] SCSI subsystem initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.200519] libata version 3.00 loaded. -Jan 5 13:24:31 lsfks20 kernel: [ 0.200580] usbcore: registered new interface driver usbfs -Jan 5 13:24:31 lsfks20 kernel: [ 0.200595] usbcore: registered new interface driver hub -Jan 5 13:24:31 lsfks20 kernel: [ 0.200618] usbcore: registered new device driver usb -Jan 5 13:24:31 lsfks20 kernel: [ 0.200753] ACPI: WMI: Mapper loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.200755] PCI: Using ACPI for IRQ routing -Jan 5 13:24:31 lsfks20 kernel: [ 0.200903] NetLabel: Initializing -Jan 5 13:24:31 lsfks20 kernel: [ 0.200905] NetLabel: domain hash size = 128 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200906] NetLabel: protocols = UNLABELED CIPSOv4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200918] NetLabel: unlabeled traffic allowed by default -Jan 5 13:24:31 lsfks20 kernel: [ 0.200953] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.200958] hpet0: 4 comparators, 32-bit 14.318180 MHz counter -Jan 5 13:24:31 lsfks20 kernel: [ 0.202990] Switching to clocksource hpet -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] AppArmor: AppArmor Filesystem Enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] pnp: PnP ACPI init -Jan 5 13:24:31 lsfks20 kernel: [ 0.203240] ACPI: bus type pnp registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.203882] pnp: PnP ACPI: found 15 devices -Jan 5 13:24:31 lsfks20 kernel: [ 0.203884] ACPI: ACPI bus type pnp unregistered -Jan 5 13:24:31 lsfks20 kernel: [ 0.203887] PnPBIOS: Disabled by ACPI PNP -Jan 5 13:24:31 lsfks20 kernel: [ 0.203900] system 00:0c: ioport range 0x4d0-0x4df has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203904] system 00:0d: ioport range 0x400-0x41f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203907] system 00:0d: ioport range 0x420-0x43f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203909] system 00:0d: ioport range 0x440-0x45f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203912] system 00:0d: ioport range 0x460-0x47f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203914] system 00:0d: ioport range 0x480-0x48f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203917] system 00:0d: ioport range 0x800-0x81f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203919] system 00:0d: ioport range 0x820-0x83f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203922] system 00:0d: ioport range 0x840-0x85f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203925] system 00:0d: ioport range 0x860-0x87f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203927] system 00:0d: ioport range 0xc00-0xc1f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203930] system 00:0d: ioport range 0xc50-0xc6f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203932] system 00:0d: ioport range 0xcd0-0xcdf has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203935] system 00:0d: ioport range 0xf800-0xf81f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203938] system 00:0d: ioport range 0xf820-0xf83f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203940] system 00:0d: ioport range 0xf840-0xf85f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203943] system 00:0d: ioport range 0xf860-0xf87f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203946] system 00:0d: ioport range 0xfa00-0xfa3f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203949] system 00:0d: ioport range 0xfe00-0xfe7f has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203951] system 00:0d: ioport range 0xfe80-0xfeff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203956] system 00:0e: iomem range 0x0-0x9ffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203959] system 00:0e: iomem range 0x100000-0xcfffffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203962] system 00:0e: iomem range 0xe4000-0xfffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203965] system 00:0e: iomem range 0xfec01000-0xfecfffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203968] system 00:0e: iomem range 0xfed00400-0xfed3ffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203971] system 00:0e: iomem range 0xfed40000-0xffffffff could not be reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203973] system 00:0e: iomem range 0xe0000000-0xefffffff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.203976] system 00:0e: iomem range 0xd1c00-0xe3fff has been reserved -Jan 5 13:24:31 lsfks20 kernel: [ 0.238669] pci 0000:00:02.0: PCI bridge, secondary bus 0000:02 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238672] pci 0000:00:02.0: IO window: 0x1000-0x1fff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238675] pci 0000:00:02.0: MEM window: 0xf0100000-0xf01fffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238678] pci 0000:00:02.0: PREFETCH window: 0x000000d0000000-0x000000dfffffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238682] pci 0000:00:07.0: PCI bridge, secondary bus 0000:3f -Jan 5 13:24:31 lsfks20 kernel: [ 0.238684] pci 0000:00:07.0: IO window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238687] pci 0000:00:07.0: MEM window: 0xf0000000-0xf00fffff -Jan 5 13:24:31 lsfks20 kernel: [ 0.238689] pci 0000:00:07.0: PREFETCH window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238692] pci 0000:00:14.4: PCI bridge, secondary bus 0000:07 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238694] pci 0000:00:14.4: IO window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238699] pci 0000:00:14.4: MEM window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238703] pci 0000:00:14.4: PREFETCH window: disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.238717] pci 0000:00:02.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238722] pci 0000:00:07.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238730] pci_bus 0000:00: resource 0 io: [0x00-0xffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238732] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238735] pci_bus 0000:02: resource 0 io: [0x1000-0x1fff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238737] pci_bus 0000:02: resource 1 mem: [0xf0100000-0xf01fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238740] pci_bus 0000:02: resource 2 pref mem [0xd0000000-0xdfffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238742] pci_bus 0000:3f: resource 1 mem: [0xf0000000-0xf00fffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238745] pci_bus 0000:07: resource 3 io: [0x00-0xffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238747] pci_bus 0000:07: resource 4 mem: [0x000000-0xffffffffffffffff] -Jan 5 13:24:31 lsfks20 kernel: [ 0.238780] NET: Registered protocol family 2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.238861] IP route cache hash table entries: 32768 (order: 5, 131072 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.239163] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.239809] TCP bind hash table entries: 65536 (order: 7, 524288 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240195] TCP: Hash tables configured (established 131072 bind 65536) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240198] TCP reno registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.240284] NET: Registered protocol family 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.240297] pci 0000:00:00.0: MSI quirk detected; MSI disabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.240370] pci 0000:02:00.0: Boot video device -Jan 5 13:24:31 lsfks20 kernel: [ 0.240551] cpufreq-nforce2: No nForce2 chipset. -Jan 5 13:24:31 lsfks20 kernel: [ 0.240574] Scanning for low memory corruption every 60 seconds -Jan 5 13:24:31 lsfks20 kernel: [ 0.240681] audit: initializing netlink socket (disabled) -Jan 5 13:24:31 lsfks20 kernel: [ 0.240691] type=2000 audit(1294230262.240:1): initialized -Jan 5 13:24:31 lsfks20 kernel: [ 0.249307] highmem bounce pool size: 64 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.249312] HugeTLB registered 2 MB page size, pre-allocated 0 pages -Jan 5 13:24:31 lsfks20 kernel: [ 0.250539] VFS: Disk quotas dquot_6.5.2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.250588] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251068] fuse init (API version 7.13) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251139] msgmni has been set to 1625 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251329] alg: No test for stdrng (krng) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251374] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251377] io scheduler noop registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251379] io scheduler anticipatory registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251381] io scheduler deadline registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.251414] io scheduler cfq registered (default) -Jan 5 13:24:31 lsfks20 kernel: [ 0.251517] pcieport 0000:00:02.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251564] pcieport 0000:00:07.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251597] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251617] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251705] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251713] ACPI: Power Button [PBTN] -Jan 5 13:24:31 lsfks20 kernel: [ 0.251754] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.251756] ACPI: Power Button [PWRF] -Jan 5 13:24:31 lsfks20 kernel: [ 0.251956] processor LNXCPU:00: registered as cooling_device0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.252097] processor LNXCPU:01: registered as cooling_device1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.253777] isapnp: Scanning for PnP cards... -Jan 5 13:24:31 lsfks20 kernel: [ 0.254969] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled -Jan 5 13:24:31 lsfks20 kernel: [ 0.255096] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -Jan 5 13:24:31 lsfks20 kernel: [ 0.255423] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A -Jan 5 13:24:31 lsfks20 kernel: [ 0.256308] brd: module loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.256698] loop: module loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.256779] input: Macintosh mouse button emulation as /devices/virtual/input/input2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256921] alloc irq_desc for 16 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256923] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.256930] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257252] Fixed MDIO Bus: probed -Jan 5 13:24:31 lsfks20 kernel: [ 0.257286] PPP generic driver version 2.4.2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257318] tun: Universal TUN/TAP device driver, 1.6 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257319] tun: (C) 1999-2004 Max Krasnyansky -Jan 5 13:24:31 lsfks20 kernel: [ 0.257393] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.257413] alloc irq_desc for 19 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257415] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257421] ehci_hcd 0000:00:13.5: PCI INT D -> GSI 19 (level, low) -> IRQ 19 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257438] ehci_hcd 0000:00:13.5: EHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.257465] ehci_hcd 0000:00:13.5: new USB bus registered, assigned bus number 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257490] ehci_hcd 0000:00:13.5: applying AMD SB600/SB700 USB freeze workaround -Jan 5 13:24:31 lsfks20 kernel: [ 0.257505] ehci_hcd 0000:00:13.5: debug port 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.257528] ehci_hcd 0000:00:13.5: irq 19, io mem 0xf0209400 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269199] ehci_hcd 0000:00:13.5: USB 2.0 started, EHCI 1.00 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269326] usb usb1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.269352] hub 1-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.269360] hub 1-0:1.0: 10 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.269442] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.269461] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269479] ohci_hcd 0000:00:13.0: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.269510] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 2 -Jan 5 13:24:31 lsfks20 kernel: [ 0.269536] ohci_hcd 0000:00:13.0: irq 16, io mem 0xf0204000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.321535] Freeing initrd memory: 6158k freed -Jan 5 13:24:31 lsfks20 kernel: [ 0.329388] usb usb2: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.329413] hub 2-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.329426] hub 2-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.329480] alloc irq_desc for 17 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329482] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329489] ohci_hcd 0000:00:13.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329511] ohci_hcd 0000:00:13.1: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.329544] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.329578] ohci_hcd 0000:00:13.1: irq 17, io mem 0xf0205000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389066] usb usb3: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.389087] hub 3-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.389097] hub 3-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.389136] alloc irq_desc for 18 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389138] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389141] ohci_hcd 0000:00:13.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389150] ohci_hcd 0000:00:13.2: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.389180] ohci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.389202] ohci_hcd 0000:00:13.2: irq 18, io mem 0xf0206000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449065] usb usb4: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.449086] hub 4-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.449095] hub 4-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.449135] ohci_hcd 0000:00:13.3: PCI INT B -> GSI 17 (level, low) -> IRQ 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449144] ohci_hcd 0000:00:13.3: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.449173] ohci_hcd 0000:00:13.3: new USB bus registered, assigned bus number 5 -Jan 5 13:24:31 lsfks20 kernel: [ 0.449187] ohci_hcd 0000:00:13.3: irq 17, io mem 0xf0207000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509057] usb usb5: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.509078] hub 5-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.509087] hub 5-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.509133] ohci_hcd 0000:00:13.4: PCI INT C -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509142] ohci_hcd 0000:00:13.4: OHCI Host Controller -Jan 5 13:24:31 lsfks20 kernel: [ 0.509170] ohci_hcd 0000:00:13.4: new USB bus registered, assigned bus number 6 -Jan 5 13:24:31 lsfks20 kernel: [ 0.509184] ohci_hcd 0000:00:13.4: irq 18, io mem 0xf0208000 -Jan 5 13:24:31 lsfks20 kernel: [ 0.569055] usb usb6: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 0.569076] hub 6-0:1.0: USB hub found -Jan 5 13:24:31 lsfks20 kernel: [ 0.569085] hub 6-0:1.0: 2 ports detected -Jan 5 13:24:31 lsfks20 kernel: [ 0.569134] uhci_hcd: USB Universal Host Controller Interface driver -Jan 5 13:24:31 lsfks20 kernel: [ 0.569218] PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571693] serio: i8042 KBD port at 0x60,0x64 irq 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571700] serio: i8042 AUX port at 0x60,0x64 irq 12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571764] mice: PS/2 mouse device common for all mice -Jan 5 13:24:31 lsfks20 kernel: [ 0.571854] rtc_cmos 00:03: RTC can wake from S4 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571887] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.571914] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs -Jan 5 13:24:31 lsfks20 kernel: [ 0.571998] device-mapper: uevent: version 1.0.3 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572104] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com -Jan 5 13:24:31 lsfks20 kernel: [ 0.572162] device-mapper: multipath: version 1.1.0 loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.572164] device-mapper: multipath round-robin: version 1.0.0 loaded -Jan 5 13:24:31 lsfks20 kernel: [ 0.572263] EISA: Probing bus 0 at eisa.0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572270] Cannot allocate resource for EISA slot 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.572300] EISA: Detected 0 cards. -Jan 5 13:24:31 lsfks20 kernel: [ 0.572367] cpuidle: using governor ladder -Jan 5 13:24:31 lsfks20 kernel: [ 0.572369] cpuidle: using governor menu -Jan 5 13:24:31 lsfks20 kernel: [ 0.572740] TCP cubic registered -Jan 5 13:24:31 lsfks20 kernel: [ 0.572877] NET: Registered protocol family 10 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573274] lo: Disabled Privacy Extensions -Jan 5 13:24:31 lsfks20 kernel: [ 0.573540] NET: Registered protocol family 17 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573572] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4800+ processors (2 cpu cores) (version 2.20.00) -Jan 5 13:24:31 lsfks20 kernel: [ 0.573620] powernow-k8: 0 : fid 0x11 (2500 MHz), vid 0xa -Jan 5 13:24:31 lsfks20 kernel: [ 0.573622] powernow-k8: 1 : fid 0x10 (2400 MHz), vid 0xb -Jan 5 13:24:31 lsfks20 kernel: [ 0.573625] powernow-k8: 2 : fid 0xe (2200 MHz), vid 0xd -Jan 5 13:24:31 lsfks20 kernel: [ 0.573627] powernow-k8: 3 : fid 0xc (2000 MHz), vid 0xf -Jan 5 13:24:31 lsfks20 kernel: [ 0.573629] powernow-k8: 4 : fid 0xa (1800 MHz), vid 0x11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.573631] powernow-k8: 5 : fid 0x2 (1000 MHz), vid 0x12 -Jan 5 13:24:31 lsfks20 kernel: [ 0.607797] isapnp: No Plug & Play device found -Jan 5 13:24:31 lsfks20 kernel: [ 0.607819] powernow-k8: ph2 null fid transition 0x11 -Jan 5 13:24:31 lsfks20 kernel: [ 0.607844] Using IPI No-Shortcut mode -Jan 5 13:24:31 lsfks20 kernel: [ 0.607931] PM: Resume from disk failed. -Jan 5 13:24:31 lsfks20 kernel: [ 0.607947] registered taskstats version 1 -Jan 5 13:24:31 lsfks20 kernel: [ 0.608207] Magic number: 11:987:429 -Jan 5 13:24:31 lsfks20 kernel: [ 0.608297] rtc_cmos 00:03: setting system clock to 2011-01-05 12:24:22 UTC (1294230262) -Jan 5 13:24:31 lsfks20 kernel: [ 0.608300] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found -Jan 5 13:24:31 lsfks20 kernel: [ 0.608301] EDD information not available. -Jan 5 13:24:31 lsfks20 kernel: [ 0.608351] Freeing unused kernel memory: 672k freed -Jan 5 13:24:31 lsfks20 kernel: [ 0.608801] Write protecting the kernel text: 4836k -Jan 5 13:24:31 lsfks20 kernel: [ 0.608861] Write protecting the kernel read-only data: 1880k -Jan 5 13:24:31 lsfks20 kernel: [ 0.662995] vesafb: framebuffer at 0xd0000000, mapped to 0xf8280000, using 3072k, total 16384k -Jan 5 13:24:31 lsfks20 kernel: [ 0.662999] vesafb: mode is 1024x768x16, linelength=2048, pages=9 -Jan 5 13:24:31 lsfks20 kernel: [ 0.663001] vesafb: protected mode interface info at c000:a01e -Jan 5 13:24:31 lsfks20 kernel: [ 0.663004] vesafb: pmi: set display start = c00ca0c0, set palette = c00ca17e -Jan 5 13:24:31 lsfks20 kernel: [ 0.663005] vesafb: scrolling: redraw -Jan 5 13:24:31 lsfks20 kernel: [ 0.663008] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0 -Jan 5 13:24:31 lsfks20 kernel: [ 0.663591] fb0: VESA VGA frame buffer device -Jan 5 13:24:31 lsfks20 kernel: [ 0.671307] Console: switching to colour frame buffer device 128x48 -Jan 5 13:24:31 lsfks20 kernel: [ 0.705121] usbcore: registered new interface driver hiddev -Jan 5 13:24:31 lsfks20 kernel: [ 0.705613] usbcore: registered new interface driver usbhid -Jan 5 13:24:31 lsfks20 kernel: [ 0.705617] usbhid: v2.6:USB HID core driver -Jan 5 13:24:31 lsfks20 kernel: [ 1.021033] usb 2-1: new full speed USB device using ohci_hcd and address 2 -Jan 5 13:24:31 lsfks20 kernel: [ 1.066113] tg3.c:v3.102 (September 1, 2009) -Jan 5 13:24:31 lsfks20 kernel: [ 1.066131] tg3 0000:3f:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19 -Jan 5 13:24:31 lsfks20 kernel: [ 1.066140] tg3 0000:3f:00.0: setting latency timer to 64 -Jan 5 13:24:31 lsfks20 kernel: [ 1.083790] eth0: Tigon3 [partno(BCM95755) rev a002] (PCI Express) MAC address 00:1e:0b:27:f4:99 -Jan 5 13:24:31 lsfks20 kernel: [ 1.083794] eth0: attached PHY is 5755 (10/100/1000Base-T Ethernet) (WireSpeed[1]) -Jan 5 13:24:31 lsfks20 kernel: [ 1.083796] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1] -Jan 5 13:24:31 lsfks20 kernel: [ 1.083799] eth0: dma_rwctrl[76180000] dma_mask[64-bit] -Jan 5 13:24:31 lsfks20 kernel: [ 1.184045] Bridge firewalling registered -Jan 5 13:24:31 lsfks20 kernel: [ 1.222148] ADDRCONF(NETDEV_UP): eth0: link is not ready -Jan 5 13:24:31 lsfks20 kernel: [ 1.223023] usb 2-1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 1.232247] device eth0 entered promiscuous mode -Jan 5 13:24:31 lsfks20 kernel: [ 1.234899] input: Hewlett-Packard Company HP USB Smart Card Keyboard as /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 -Jan 5 13:24:31 lsfks20 kernel: [ 1.252091] generic-usb 0003:03F0:1024.0001: input,hidraw0: USB HID v1.11 Keyboard [Hewlett-Packard Company HP USB Smart Card Keyboard] on usb-0000:00:13.0-1/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 1.524020] usb 4-1: new full speed USB device using ohci_hcd and address 2 -Jan 5 13:24:31 lsfks20 kernel: [ 1.691251] usb 4-1: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 1.956016] usb 4-2: new low speed USB device using ohci_hcd and address 3 -Jan 5 13:24:31 lsfks20 kernel: [ 2.121234] usb 4-2: configuration #1 chosen from 1 choice -Jan 5 13:24:31 lsfks20 kernel: [ 2.128351] input: USB Optical Mouse as /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 -Jan 5 13:24:31 lsfks20 kernel: [ 2.130247] generic-usb 0003:0461:4D20.0003: input,hidraw1: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0000:00:13.2-2/input0 -Jan 5 13:24:31 lsfks20 kernel: [ 4.379763] tg3: eth0: Link is up at 1000 Mbps, full duplex. -Jan 5 13:24:31 lsfks20 kernel: [ 4.379766] tg3: eth0: Flow control is on for TX and on for RX. -Jan 5 13:24:31 lsfks20 kernel: [ 4.379946] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready -Jan 5 13:24:31 lsfks20 kernel: [ 4.379979] br0: port 1(eth0) entering forwarding state -Jan 5 13:24:31 lsfks20 kernel: [ 5.348605] RPC: Registered udp transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.348609] RPC: Registered tcp transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.348611] RPC: Registered tcp NFSv4.1 backchannel transport module. -Jan 5 13:24:31 lsfks20 kernel: [ 5.419953] ahci 0000:00:12.0: version 3.0 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419971] alloc irq_desc for 22 on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419973] alloc kstat_irqs on node -1 -Jan 5 13:24:31 lsfks20 kernel: [ 5.419980] ahci 0000:00:12.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.420011] ahci 0000:00:12.0: controller can't do 64bit DMA, forcing 32bit -Jan 5 13:24:31 lsfks20 kernel: [ 5.420102] ahci 0000:00:12.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl SATA mode -Jan 5 13:24:31 lsfks20 kernel: [ 5.420106] ahci 0000:00:12.0: flags: ncq sntf ilck pm led clo pmp pio slum part ccc -Jan 5 13:24:31 lsfks20 kernel: [ 5.420538] scsi0 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.421424] scsi1 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.421992] scsi2 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.423101] scsi3 : ahci -Jan 5 13:24:31 lsfks20 kernel: [ 5.423372] ata1: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209100 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423376] ata2: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209180 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423380] ata3: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209200 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.423384] ata4: SATA max UDMA/133 abar m1024@0xf0209000 port 0xf0209280 irq 22 -Jan 5 13:24:31 lsfks20 kernel: [ 5.744086] ata3: SATA link down (SStatus 0 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 5.744129] ata4: SATA link down (SStatus 0 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908026] ata1: softreset failed (device not ready) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908031] ata1: applying SB600 PMP SRST workaround and retrying -Jan 5 13:24:31 lsfks20 kernel: [ 5.908051] ata2: softreset failed (device not ready) -Jan 5 13:24:31 lsfks20 kernel: [ 5.908054] ata2: applying SB600 PMP SRST workaround and retrying -Jan 5 13:24:31 lsfks20 kernel: [ 6.072038] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072067] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072643] ata1.00: ATA-8: ST3250310AS, 4.ADA, max UDMA/133 -Jan 5 13:24:31 lsfks20 kernel: [ 6.072646] ata1.00: 488281250 sectors, multi 16: LBA48 NCQ (depth 31/32) -Jan 5 13:24:31 lsfks20 kernel: [ 6.072663] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.073399] ata1.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.073402] ata1.00: configured for UDMA/133 -Jan 5 13:24:31 lsfks20 kernel: [ 6.075252] ata2.00: ATAPI: HL-DT-ST DVD-RAM GSA-H60L, R90C, max UDMA/100 -Jan 5 13:24:31 lsfks20 kernel: [ 6.075270] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.079636] ata2.00: SB600 AHCI: limiting to 255 sectors per cmd -Jan 5 13:24:31 lsfks20 kernel: [ 6.079640] ata2.00: configured for UDMA/100 -Jan 5 13:24:31 lsfks20 kernel: [ 6.092122] scsi 0:0:0:0: Direct-Access ATA ST3250310AS 4.AD PQ: 0 ANSI: 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.093626] sd 0:0:0:0: [sda] 488281250 512-byte logical blocks: (250 GB/232 GiB) -Jan 5 13:24:31 lsfks20 kernel: [ 6.093666] sd 0:0:0:0: [sda] Write Protect is off -Jan 5 13:24:31 lsfks20 kernel: [ 6.093669] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 -Jan 5 13:24:31 lsfks20 kernel: [ 6.093686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA -Jan 5 13:24:31 lsfks20 kernel: [ 6.093820] sda: -Jan 5 13:24:31 lsfks20 kernel: [ 6.093924] sd 0:0:0:0: Attached scsi generic sg0 type 0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.112956] sda1 sda2 sda3 sda4 -Jan 5 13:24:31 lsfks20 kernel: [ 6.115566] sd 0:0:0:0: [sda] Attached SCSI disk -Jan 5 13:24:31 lsfks20 kernel: [ 6.216369] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-RAM GSA-H60L R90C PQ: 0 ANSI: 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.544928] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray -Jan 5 13:24:31 lsfks20 kernel: [ 6.544933] Uniform CD-ROM driver Revision: 3.20 -Jan 5 13:24:31 lsfks20 kernel: [ 6.545614] sr 1:0:0:0: Attached scsi CD-ROM sr0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.546125] sr 1:0:0:0: Attached scsi generic sg1 type 5 -Jan 5 13:24:31 lsfks20 kernel: [ 6.556221] Linux agpgart interface v0.103 -Jan 5 13:24:31 lsfks20 kernel: [ 6.609992] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xfc00, revision 0 -Jan 5 13:24:31 lsfks20 kernel: [ 6.618169] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141 -Jan 5 13:24:31 lsfks20 kernel: [ 6.661458] scsi4 : pata_atiixp -Jan 5 13:24:31 lsfks20 kernel: [ 6.662649] scsi5 : pata_atiixp -Jan 5 13:24:31 lsfks20 kernel: [ 6.662850] ata5: PATA max UDMA/100 cmd 0x2140 ctl 0x2158 bmdma 0x2120 irq 16 -Jan 5 13:24:31 lsfks20 kernel: [ 6.662852] ata6: PATA max UDMA/100 cmd 0x2148 ctl 0x215c bmdma 0x2128 irq 16 -Jan 5 13:24:31 lsfks20 kernel: [ 6.979187] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 -Jan 5 13:24:31 lsfks20 kernel: [ 7.039175] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16 -Jan 5 13:24:31 lsfks20 kernel: [ 7.150236] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:14.2/input/input5 -Jan 5 13:24:31 lsfks20 kernel: [ 7.584387] st: Version 20081215, fixed bufsize 32768, s/g segs 256 -Jan 5 13:24:31 lsfks20 kernel: [ 7.735788] parport_pc 00:07: reported by Plug and Play ACPI -Jan 5 13:24:31 lsfks20 kernel: [ 7.735858] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] -Jan 5 13:24:31 lsfks20 kernel: [ 7.848088] ppdev: user-space parallel port driver -Jan 5 13:24:31 lsfks20 kernel: [ 7.917660] aufs 2-standalone.tree-20091207 -Jan 5 13:24:31 lsfks20 kernel: [ 7.924067] aufs test_add:243:mount[1880]: uid/gid/perm /rorootfs 0/0/0755, 0/0/01777 -Jan 5 13:24:31 lsfks20 kernel: [ 7.985343] ramzswap: disk size not provided. You can use disksize_kb module param to specify size. -Jan 5 13:24:31 lsfks20 kernel: [ 7.985345] Using default: (25% of RAM). -Jan 5 13:24:31 lsfks20 kernel: [ 7.985348] ramzswap: disk size set to 1030140 kB -Jan 5 13:24:31 lsfks20 kernel: [ 8.050775] Adding 1030136k swap on /dev/ramzswap0. Priority:-1 extents:1 across:1030136k SS -Jan 5 13:24:31 lsfks20 kernel: [ 9.676674] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). -Jan 5 13:24:31 lsfks20 kernel: [ 9.732649] udev: starting version 151 -Jan 5 13:24:31 lsfks20 kernel: [ 9.783447] lp0: using parport0 (interrupt-driven). -Jan 5 13:24:31 lsfks20 udev-configure-printer: add /devices/pnp0/00:07/printer/lp0 -Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent -Jan 5 13:24:31 lsfks20 udev-configure-printer: add /module/lp -Jan 5 13:24:31 lsfks20 udev-configure-printer: Failed to get parent -Jan 5 13:24:31 lsfks20 acpid: starting up with proc fs -Jan 5 13:23:14 lsfks20 kernel: [ 9.963224] [drm] Initialized drm 1.1.0 20060810 -Jan 5 13:23:14 lsfks20 acpid: 36 rules loaded -Jan 5 13:23:14 lsfks20 acpid: waiting for events: event logging is off -Jan 5 13:23:14 lsfks20 udevd-work[2819]: mknod(/dev/pktcdvd/control, 020660, (10,60) failed: Not a directory -Jan 5 13:23:14 lsfks20 kernel: [ 10.081524] quanta-touch 0003:0408:3000.0002: hiddev96,hidraw2: USB HID v1.10 Device [Quanta Computer Inc. Optical Touch Screen] on usb-0000:00:13.2-1/input0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.165758] [drm] radeon defaulting to kernel modesetting. -Jan 5 13:23:14 lsfks20 kernel: [ 10.165761] [drm] radeon kernel modesetting enabled. -Jan 5 13:23:14 lsfks20 kernel: [ 10.165828] radeon 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 -Jan 5 13:23:14 lsfks20 kernel: [ 10.165840] radeon 0000:02:00.0: setting latency timer to 64 -Jan 5 13:23:14 lsfks20 kernel: [ 10.167854] [drm] radeon: Initializing kernel modesetting. -Jan 5 13:23:14 lsfks20 kernel: [ 10.203499] [drm] register mmio base: 0xF0100000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203502] [drm] register mmio size: 65536 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203754] ATOM BIOS: 113 -Jan 5 13:23:14 lsfks20 kernel: [ 10.203768] [drm] Clocks initialized ! -Jan 5 13:23:14 lsfks20 kernel: [ 10.203954] [drm] Detected VRAM RAM=256M, BAR=256M -Jan 5 13:23:14 lsfks20 kernel: [ 10.203959] [drm] RAM width 64bits DDR -Jan 5 13:23:14 lsfks20 kernel: [ 10.207458] [TTM] Zone kernel: Available graphics memory: 419464 kiB. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207461] [TTM] Zone highmem: Available graphics memory: 2060282 kiB. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207479] [drm] radeon: 256M of VRAM memory ready -Jan 5 13:23:14 lsfks20 kernel: [ 10.207481] [drm] radeon: 512M of GTT memory ready. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207521] [drm] radeon: irq initialized. -Jan 5 13:23:14 lsfks20 kernel: [ 10.207524] [drm] GART: num cpu pages 131072, num gpu pages 131072 -Jan 5 13:23:14 lsfks20 kernel: [ 10.217958] [drm] Loading RV610 Microcode -Jan 5 13:23:14 lsfks20 kernel: [ 10.217964] platform radeon_cp.0: firmware: requesting radeon/RV610_pfp.bin -Jan 5 13:23:14 lsfks20 sm-notify[2604]: Failed to open /var/lib/nfs/sm.bak: No such file or directory -Jan 5 13:23:14 lsfks20 kernel: [ 10.359964] platform radeon_cp.0: firmware: requesting radeon/RV610_me.bin -Jan 5 13:23:14 lsfks20 kernel: [ 10.367946] platform radeon_cp.0: firmware: requesting radeon/R600_rlc.bin -Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Version 1.1.6 Starting -Jan 5 13:23:14 lsfks20 rpc.statd[3035]: Flags: -Jan 5 13:23:14 lsfks20 kernel: [ 10.422024] [drm] ring test succeeded in 1 usecs -Jan 5 13:23:14 lsfks20 kernel: [ 10.426041] [drm] radeon: ib pool ready. -Jan 5 13:23:14 lsfks20 kernel: [ 10.426122] [drm] ib test succeeded in 0 usecs -Jan 5 13:23:14 lsfks20 kernel: [ 10.426125] [drm] Enabling audio support -Jan 5 13:23:14 lsfks20 kernel: [ 10.426155] [drm] Default TV standard: NTSC -Jan 5 13:23:14 lsfks20 kernel: [ 10.428628] [drm] Radeon Display Connectors -Jan 5 13:23:14 lsfks20 kernel: [ 10.428631] [drm] Connector 0: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428633] [drm] DIN -Jan 5 13:23:14 lsfks20 kernel: [ 10.428634] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428636] [drm] TV1: INTERNAL_KLDSCP_DAC2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428637] [drm] Connector 1: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428639] [drm] DVI-I -Jan 5 13:23:14 lsfks20 kernel: [ 10.428640] [drm] HPD2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428642] [drm] DDC: 0x7e50 0x7e50 0x7e54 0x7e54 0x7e58 0x7e58 0x7e5c 0x7e5c -Jan 5 13:23:14 lsfks20 kernel: [ 10.428644] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428645] [drm] CRT2: INTERNAL_KLDSCP_DAC2 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428647] [drm] DFP1: INTERNAL_KLDSCP_TMDS1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428648] [drm] Connector 2: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428650] [drm] DVI-I -Jan 5 13:23:14 lsfks20 kernel: [ 10.428651] [drm] HPD1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428653] [drm] DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c -Jan 5 13:23:14 lsfks20 kernel: [ 10.428654] [drm] Encoders: -Jan 5 13:23:14 lsfks20 kernel: [ 10.428656] [drm] CRT1: INTERNAL_KLDSCP_DAC1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.428657] [drm] DFP2: INTERNAL_LVTM1 -Jan 5 13:23:14 lsfks20 kernel: [ 10.451330] vboxdrv: Trying to deactivate the NMI watchdog permanently... -Jan 5 13:23:14 lsfks20 kernel: [ 10.451333] vboxdrv: Successfully done. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451335] vboxdrv: Found 2 processor cores. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451446] vboxdrv: fAsync=1 offMin=0x782ac offMax=0x782ac -Jan 5 13:23:14 lsfks20 kernel: [ 10.451575] vboxdrv: TSC mode is 'asynchronous', kernel timer mode is 'normal'. -Jan 5 13:23:14 lsfks20 kernel: [ 10.451577] vboxdrv: Successfully loaded version 3.2.10 (interface 0x00140001). -Jan 5 13:23:14 lsfks20 kernel: [ 10.539914] /dev/vmmon[3066]: Module vmmon: registered with major=10 minor=165 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539929] /dev/vmmon[3066]: Initial HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539934] /dev/vmmon[3066]: HV check: anyNotCapable=0 anyUnlocked=1 anyEnabled=1 anyDisabled=0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.539937] /dev/vmmon[3066]: Module vmmon: initialized -Jan 5 13:23:14 lsfks20 kernel: [ 10.575982] /dev/vmci[3079]: VMCI: Driver initialized. -Jan 5 13:23:14 lsfks20 kernel: [ 10.576976] /dev/vmci[3079]: Module vmci: registered with major=10 minor=53 -Jan 5 13:23:14 lsfks20 kernel: [ 10.576980] /dev/vmci[3079]: Module vmci: initialized -Jan 5 13:23:14 lsfks20 vmnetBridge: Daemon created. -Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface eth0 index:2 -Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge eth0 to virtual network 0. -Jan 5 13:23:14 lsfks20 vmnetBridge: Adding interface br0 index:3 -Jan 5 13:23:14 lsfks20 vmnetBridge: RTM_NEWROUTE: index:3 -Jan 5 13:23:14 lsfks20 kernel: [ 10.640535] /dev/vmnet: open called by PID 3108 (vmnet-bridge) -Jan 5 13:23:14 lsfks20 kernel: [ 10.640544] /dev/vmnet: hub 0 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.640566] /dev/vmnet: port on hub 0 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.640582] bridge-eth0: up -Jan 5 13:23:14 lsfks20 kernel: [ 10.640586] bridge-eth0: attached -Jan 5 13:23:14 lsfks20 kernel: [ 10.640796] bridge-eth0: disabling the bridge -Jan 5 13:23:14 lsfks20 kernel: [ 10.646042] /dev/vmnet: open called by PID 3109 (vmnet-netifup) -Jan 5 13:23:14 lsfks20 kernel: [ 10.646052] /dev/vmnet: hub 1 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.646075] /dev/vmnet: port on hub 1 successfully opened -Jan 5 13:23:14 lsfks20 vmnetBridge: Stopped bridge eth0 to virtual network 0. -Jan 5 13:23:14 lsfks20 vmnetBridge: Started bridge br0 to virtual network 0. -Jan 5 13:23:14 lsfks20 kernel: [ 10.656062] bridge-eth0: down -Jan 5 13:23:14 lsfks20 kernel: [ 10.656069] bridge-eth0: detached -Jan 5 13:23:14 lsfks20 kernel: [ 10.656115] /dev/vmnet: open called by PID 3108 (vmnet-bridge) -Jan 5 13:23:14 lsfks20 kernel: [ 10.656122] /dev/vmnet: hub 0 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.656144] /dev/vmnet: port on hub 0 successfully opened -Jan 5 13:23:14 lsfks20 kernel: [ 10.656155] bridge-br0: up -Jan 5 13:23:14 lsfks20 kernel: [ 10.656159] bridge-br0: attached -Jan 5 13:23:14 lsfks20 kernel: [ 10.680689] /dev/vmnet: open called by PID 3128 (vmnet-netifup) -Jan 5 13:23:14 lsfks20 kernel: [ 10.680700] /dev/vmnet: hub 8 does not exist, allocating memory. -Jan 5 13:23:14 lsfks20 kernel: [ 10.680722] /dev/vmnet: port on hub 8 successfully opened -Jan 5 13:23:14 lsfks20 udhcpd[3127]: udhcpd (v1.17.1) started -Jan 5 13:23:14 lsfks20 udhcpd[3127]: max_leases=235 is too big, setting to 81 -Jan 5 13:23:14 lsfks20 udhcpd[3127]: can't open '/var/run/vmware/udhcpd-vmnet1.leases': No such file or directory -Jan 5 13:23:14 lsfks20 kernel: [ 10.737985] [drm] fb mappable at 0xD0141000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737988] [drm] vram apper at 0xD0000000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737990] [drm] size 9216000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737992] [drm] fb depth is 24 -Jan 5 13:23:14 lsfks20 kernel: [ 10.737993] [drm] pitch is 7680 -Jan 5 13:23:14 lsfks20 kernel: [ 10.738346] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver -Jan 5 13:23:14 lsfks20 kernel: [ 10.738412] Console: switching to colour dummy device 80x25 -Jan 5 13:23:14 lsfks20 kernel: [ 10.740351] Console: switching to colour frame buffer device 200x67 -Jan 5 13:23:14 lsfks20 kernel: [ 10.757908] ip_tables: (C) 2000-2006 Netfilter Core Team -Jan 5 13:23:14 lsfks20 kernel: [ 10.772060] fb0: radeondrmfb frame buffer device -Jan 5 13:23:14 lsfks20 kernel: [ 10.772062] registered panic notifier -Jan 5 13:23:14 lsfks20 kernel: [ 10.774763] [drm] Initialized radeon 2.0.0 20080528 for 0000:02:00.0 on minor 0 -Jan 5 13:23:14 lsfks20 kernel: [ 10.783103] vga16fb: initializing -Jan 5 13:23:14 lsfks20 kernel: [ 10.783108] vga16fb: mapped to 0xc00a0000 -Jan 5 13:23:14 lsfks20 kernel: [ 10.783113] vga16fb: not registering due to another framebuffer present -Jan 5 13:23:14 lsfks20 kernel: [ 10.798182] nf_conntrack version 0.5.0 (16384 buckets, 65536 max) -Jan 5 13:23:14 lsfks20 kernel: [ 10.798796] CONFIG_NF_CT_ACCT is deprecated and will be removed soon. Please use -Jan 5 13:23:14 lsfks20 kernel: [ 10.798799] nf_conntrack.acct=1 kernel parameter, acct=1 nf_conntrack module option or -Jan 5 13:23:14 lsfks20 kernel: [ 10.798801] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. -Jan 5 13:23:14 lsfks20 udhcpd[3195]: udhcpd (v1.17.1) started -Jan 5 13:23:14 lsfks20 udhcpd[3195]: max_leases=235 is too big, setting to 81 -Jan 5 13:23:14 lsfks20 udhcpd[3195]: can't open '/var/run/vmware/udhcpd-vmnet8.leases': No such file or directory -Jan 5 13:23:15 lsfks20 kernel: [ 11.041993] Adding 3903752k swap on /dev/sda1. Priority:-2 extents:1 across:3903752k -Jan 5 13:23:15 lsfks20 kernel: [ 11.872013] br0: no IPv6 routers present -Jan 5 13:23:17 lsfks20 kernel: [ 13.284038] floppy0: no floppy controllers found -Jan 5 13:23:18 lsfks20 kernel: [ 14.796011] eth0: no IPv6 routers present -Jan 5 13:23:24 lsfks20 kernel: [ 20.864011] vmnet1: no IPv6 routers present -Jan 5 13:23:25 lsfks20 automount[3293]: read_map_source: relative path invalid in files map name -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:*-Greeter] at /etc/kde4/kdm/kdmrc:15 -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'LogSource' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:29 -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized key 'UseAdminSession' in section [X-:0-Greeter] at /etc/kde4/kdm/kdmrc:31 -Jan 5 13:23:25 lsfks20 kdm_config[3300]: Unrecognized section name [xdmcp] at /etc/kde4/kdm/kdmrc:33 -Jan 5 13:23:25 lsfks20 automount[3293]: lookup_init:136: lookup(yp): map #/etc/auto.misc: Local domain name not set -Jan 5 13:23:25 lsfks20 acpid: client connected from 3307[0:0] -Jan 5 13:23:25 lsfks20 acpid: 1 client rule loaded -Jan 5 13:23:25 lsfks20 kernel: [ 21.156024] vmnet8: no IPv6 routers present -Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: Could not parse desktop file /home/mp57/.config/autostart/xfconf-migration-4.6.desktop: Die Schlüsselwertedatei enthält nicht den Schlüssel »Name« -Jan 5 13:28:51 lsfks20 gnome-session[3434]: WARNING: could not read /home/mp57/.config/autostart/xfconf-migration-4.6.desktop -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully called chroot. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully dropped privileges. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully limited resources. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Watchdog thread running. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Canary thread running. -Jan 5 13:28:53 lsfks20 polkitd[3760]: started daemon version 0.96 using authority implementation `local' version `0.96' -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3770 of process 3770 (n/a) owned by 'mp57' high priority at nice level -11. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 1 threads of 1 processes of 1 users. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3776 of process 3770 (n/a) owned by 'mp57' RT at priority 5. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 2 threads of 1 processes of 1 users. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3777 of process 3770 (n/a) owned by 'mp57' RT at priority 5. -Jan 5 13:28:53 lsfks20 rtkit-daemon[3772]: Supervising 3 threads of 1 processes of 1 users. -Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Sucessfully made thread 3791 of process 3791 (n/a) owned by 'mp57' high priority at nice level -11. -Jan 5 13:28:54 lsfks20 rtkit-daemon[3772]: Supervising 4 threads of 2 processes of 1 users. -Jan 5 13:28:54 lsfks20 pulseaudio[3791]: pid.c: Daemon already running. -Jan 5 13:35:46 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) -Jan 5 13:35:59 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) diff --git a/resources/config/1/uniontmp/var/log/udev b/resources/config/1/uniontmp/var/log/udev deleted file mode 100755 index a441144..0000000 --- a/resources/config/1/uniontmp/var/log/udev +++ /dev/null @@ -1,9121 +0,0 @@ -monitor will print the received events for: -UDEV - the event which udev sends out after rule processing -KERNEL - the kernel uevent - -KERNEL[1294230271.657599] add /devices/virtual/vc/vcs4 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs4 -SUBSYSTEM=vc -DEVNAME=vcs4 -SEQNUM=832 -MAJOR=7 -MINOR=4 - -KERNEL[1294230271.657621] add /devices/virtual/vc/vcsa4 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa4 -SUBSYSTEM=vc -DEVNAME=vcsa4 -SEQNUM=833 -MAJOR=7 -MINOR=132 - -UDEV [1294230271.658269] add /devices/virtual/vc/vcsa4 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa4 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa4 -SEQNUM=833 -MAJOR=7 -MINOR=132 -DEVLINKS=/dev/char/7:132 - -UDEV [1294230271.658287] add /devices/virtual/vc/vcs4 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs4 -SUBSYSTEM=vc -DEVNAME=/dev/vcs4 -SEQNUM=832 -MAJOR=7 -MINOR=4 -DEVLINKS=/dev/char/7:4 - -KERNEL[1294230271.664310] add /devices/virtual/vc/vcs5 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs5 -SUBSYSTEM=vc -DEVNAME=vcs5 -SEQNUM=834 -MAJOR=7 -MINOR=5 - -KERNEL[1294230271.668907] add /devices/LNXSYSTM:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00 -SUBSYSTEM=acpi -MODALIAS=acpi:LNXSYSTM: -SEQNUM=835 - -UDEV [1294230271.672620] add /devices/virtual/vc/vcs5 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs5 -SUBSYSTEM=vc -DEVNAME=/dev/vcs5 -SEQNUM=834 -MAJOR=7 -MINOR=5 -DEVLINKS=/dev/char/7:5 - -KERNEL[1294230271.672963] add /devices/virtual/vc/vcsa5 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa5 -SUBSYSTEM=vc -DEVNAME=vcsa5 -SEQNUM=836 -MAJOR=7 -MINOR=133 - -UDEV [1294230271.673534] add /devices/virtual/vc/vcsa5 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa5 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa5 -SEQNUM=836 -MAJOR=7 -MINOR=133 -DEVLINKS=/dev/char/7:133 - -KERNEL[1294230271.673906] add /devices/LNXSYSTM:00/LNXCPU:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:00 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=837 - -KERNEL[1294230271.673987] add /devices/LNXSYSTM:00/LNXCPU:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:01 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=838 - -KERNEL[1294230271.674055] add /devices/LNXSYSTM:00/LNXCPU:02 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:02 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=839 - -KERNEL[1294230271.674122] add /devices/LNXSYSTM:00/LNXCPU:03 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:03 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=840 - -KERNEL[1294230271.674187] add /devices/LNXSYSTM:00/LNXPWRBN:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00 -SUBSYSTEM=acpi -DRIVER=button -MODALIAS=acpi:LNXPWRBN: -SEQNUM=841 - -KERNEL[1294230271.674265] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 -SUBSYSTEM=input -PRODUCT=19/0/1/0 -NAME="Power Button" -PHYS="LNXPWRBN/button/input0" -EV==3 -KEY==100000 0 0 0 -MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw -SEQNUM=842 - -KERNEL[1294230271.674339] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 -SUBSYSTEM=input -DEVNAME=input/event1 -SEQNUM=843 -MAJOR=13 -MINOR=65 - -KERNEL[1294230271.674405] add /devices/LNXSYSTM:00/LNXSYBUS:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00 -SUBSYSTEM=acpi -MODALIAS=acpi:LNXSYBUS: -SEQNUM=844 - -KERNEL[1294230271.674470] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 -SUBSYSTEM=acpi -DRIVER=pci_root -MODALIAS=acpi:PNP0A08:PNP0A03: -SEQNUM=845 - -KERNEL[1294230271.674536] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C02: -SEQNUM=846 - -KERNEL[1294230271.674601] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C02: -SEQNUM=847 - -KERNEL[1294230271.674679] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=848 - -KERNEL[1294230271.674753] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=849 - -KERNEL[1294230271.674819] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=850 - -KERNEL[1294230271.674885] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=851 - -KERNEL[1294230271.674951] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=852 - -KERNEL[1294230271.675026] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=854 - -KERNEL[1294230271.675039] add /module/lp (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/lp -SUBSYSTEM=module -SEQNUM=853 - -KERNEL[1294230271.675690] add /class/printer (class) -UDEV_LOG=3 -ACTION=add -DEVPATH=/class/printer -SUBSYSTEM=class -SEQNUM=855 - -UDEV [1294230271.675705] add /class/printer (class) -UDEV_LOG=3 -ACTION=add -DEVPATH=/class/printer -SUBSYSTEM=class -SEQNUM=855 - -KERNEL[1294230271.675745] add /devices/pnp0/00:07/printer/lp0 (printer) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:07/printer/lp0 -SUBSYSTEM=printer -DEVNAME=lp0 -SEQNUM=856 -MAJOR=6 -MINOR=0 - -KERNEL[1294230271.676233] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=857 - -KERNEL[1294230271.676311] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=858 - -KERNEL[1294230271.676379] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=859 - -KERNEL[1294230271.676447] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0000: -SEQNUM=860 - -KERNEL[1294230271.676515] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0003: -SEQNUM=861 - -KERNEL[1294230271.676582] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0100: -SEQNUM=862 - -KERNEL[1294230271.676648] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0103: -SEQNUM=863 - -KERNEL[1294230271.676743] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0200: -SEQNUM=864 - -KERNEL[1294230271.676823] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0303: -SEQNUM=865 - -KERNEL[1294230271.676889] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0401: -SEQNUM=866 - -KERNEL[1294230271.676965] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0501:PNP0500: -SEQNUM=867 - -KERNEL[1294230271.677036] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0700: -SEQNUM=868 - -KERNEL[1294230271.677106] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0800: -SEQNUM=869 - -KERNEL[1294230271.677182] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0B00: -SEQNUM=870 - -KERNEL[1294230271.677285] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C04: -SEQNUM=871 - -KERNEL[1294230271.680482] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0F13:PNP0F0E: -SEQNUM=872 - -KERNEL[1294230271.680857] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=873 - -KERNEL[1294230271.681021] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=874 - -KERNEL[1294230271.681099] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=875 - -KERNEL[1294230271.681254] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=876 - -KERNEL[1294230271.681469] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=877 - -KERNEL[1294230271.681673] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=878 - -KERNEL[1294230271.682048] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=879 - -KERNEL[1294230271.683231] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=880 - -KERNEL[1294230271.683385] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=881 - -KERNEL[1294230271.683625] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=882 - -KERNEL[1294230271.683808] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=883 - -KERNEL[1294230271.684821] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=884 - -KERNEL[1294230271.685183] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=885 - -KERNEL[1294230271.685290] add /devices/virtual/vc/vcs2 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs2 -SUBSYSTEM=vc -DEVNAME=vcs2 -SEQNUM=886 -MAJOR=7 -MINOR=2 - -KERNEL[1294230271.685385] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=887 - -KERNEL[1294230271.685513] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=888 - -KERNEL[1294230271.685647] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=889 - -KERNEL[1294230271.685793] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=890 - -UDEV [1294230271.686061] add /devices/virtual/vc/vcs2 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs2 -SUBSYSTEM=vc -DEVNAME=/dev/vcs2 -SEQNUM=886 -MAJOR=7 -MINOR=2 -DEVLINKS=/dev/char/7:2 - -KERNEL[1294230271.686663] add /devices/virtual/vc/vcsa2 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa2 -SUBSYSTEM=vc -DEVNAME=vcsa2 -SEQNUM=892 -MAJOR=7 -MINOR=130 - -UDEV [1294230271.687078] add /devices/virtual/vc/vcsa2 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa2 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa2 -SEQNUM=892 -MAJOR=7 -MINOR=130 -DEVLINKS=/dev/char/7:130 - -KERNEL[1294230271.687097] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=891 - -KERNEL[1294230271.687175] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=893 - -KERNEL[1294230271.687296] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C01: -SEQNUM=894 - -KERNEL[1294230271.687339] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 -SUBSYSTEM=acpi -DRIVER=button -MODALIAS=acpi:PNP0C0C: -SEQNUM=895 - -KERNEL[1294230271.688981] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 -SUBSYSTEM=input -PRODUCT=19/0/1/0 -NAME="Power Button" -PHYS="PNP0C0C/button/input0" -EV==3 -KEY==100000 0 0 0 -MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw -SEQNUM=896 - -KERNEL[1294230271.689084] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 -SUBSYSTEM=input -DEVNAME=input/event0 -SEQNUM=897 -MAJOR=13 -MINOR=64 - -KERNEL[1294230271.689164] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 -SUBSYSTEM=acpi -DRIVER=wmi -MODALIAS=acpi:PNP0C14: -SEQNUM=898 - -KERNEL[1294230271.689304] add /devices/LNXSYSTM:00/LNXTHERM:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXTHERM:00 -SUBSYSTEM=acpi -MODALIAS=acpi:LNXTHERM: -SEQNUM=899 - -KERNEL[1294230271.689385] add /devices/pci0000:00/0000:00:00.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:00.0 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1002:5950 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:00.0 -MODALIAS=pci:v00001002d00005950sv0000103Csd0000280Abc06sc00i00 -SEQNUM=900 - -KERNEL[1294230271.689987] add /devices/pci0000:00/0000:00:02.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0 -SUBSYSTEM=pci -DRIVER=pcieport -PCI_CLASS=60400 -PCI_ID=1002:5A34 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:02.0 -MODALIAS=pci:v00001002d00005A34sv00000000sd00000000bc06sc04i00 -SEQNUM=901 - -UDEV [1294230271.690809] add /devices/pci0000:00/0000:00:02.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0 -SUBSYSTEM=pci -DRIVER=pcieport -PCI_CLASS=60400 -PCI_ID=1002:5A34 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:02.0 -MODALIAS=pci:v00001002d00005A34sv00000000sd00000000bc06sc04i00 -SEQNUM=901 - -KERNEL[1294230271.692103] add /devices/virtual/vc/vcs3 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs3 -SUBSYSTEM=vc -DEVNAME=vcs3 -SEQNUM=902 -MAJOR=7 -MINOR=3 - -KERNEL[1294230271.692454] add /devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 (pci_express) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 -SUBSYSTEM=pci_express -SEQNUM=903 - -UDEV [1294230271.692705] add /devices/virtual/vc/vcs3 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs3 -SUBSYSTEM=vc -DEVNAME=/dev/vcs3 -SEQNUM=902 -MAJOR=7 -MINOR=3 -DEVLINKS=/dev/char/7:3 - -KERNEL[1294230271.692780] add /devices/virtual/vc/vcsa3 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa3 -SUBSYSTEM=vc -DEVNAME=vcsa3 -SEQNUM=904 -MAJOR=7 -MINOR=131 - -UDEV [1294230271.693078] add /devices/virtual/vc/vcsa3 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa3 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa3 -SEQNUM=904 -MAJOR=7 -MINOR=131 -DEVLINKS=/dev/char/7:131 - -UDEV [1294230271.693686] add /devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 (pci_express) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:00:02.0:pcie08 -SUBSYSTEM=pci_express -SEQNUM=903 - -KERNEL[1294230271.694011] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0 -SUBSYSTEM=pci -PCI_CLASS=30000 -PCI_ID=1002:94C1 -PCI_SUBSYS_ID=1028:0D02 -PCI_SLOT_NAME=0000:02:00.0 -MODALIAS=pci:v00001002d000094C1sv00001028sd00000D02bc03sc00i00 -SEQNUM=905 - -KERNEL[1294230271.697955] add /devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 -SUBSYSTEM=pci_bus -SEQNUM=906 - -KERNEL[1294230271.701309] add /devices/pci0000:00/0000:00:07.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0 -SUBSYSTEM=pci -DRIVER=pcieport -PCI_CLASS=60400 -PCI_ID=1002:5A39 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:07.0 -MODALIAS=pci:v00001002d00005A39sv00000000sd00000000bc06sc04i00 -SEQNUM=907 - -UDEV [1294230271.703167] add /module/lp (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/lp -SUBSYSTEM=module -SEQNUM=853 - -UDEV [1294230271.705953] add /devices/pnp0/00:07/printer/lp0 (printer) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:07/printer/lp0 -SUBSYSTEM=printer -DEVNAME=/dev/lp0 -SEQNUM=856 -MAJOR=6 -MINOR=0 -DEVLINKS=/dev/char/6:0 - -KERNEL[1294230271.707877] add /devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 (pci_express) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 -SUBSYSTEM=pci_express -SEQNUM=908 - -UDEV [1294230271.708277] add /devices/pci0000:00/0000:00:07.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0 -SUBSYSTEM=pci -DRIVER=pcieport -PCI_CLASS=60400 -PCI_ID=1002:5A39 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:07.0 -MODALIAS=pci:v00001002d00005A39sv00000000sd00000000bc06sc04i00 -SEQNUM=907 - -KERNEL[1294230271.708485] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0 -SUBSYSTEM=pci -DRIVER=tg3 -PCI_CLASS=20000 -PCI_ID=14E4:167B -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:3f:00.0 -MODALIAS=pci:v000014E4d0000167Bsv0000103Csd0000280Abc02sc00i00 -SEQNUM=909 - -UDEV [1294230271.708876] add /devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 (pci_express) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:00:07.0:pcie08 -SUBSYSTEM=pci_express -SEQNUM=908 - -KERNEL[1294230271.710227] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 -SUBSYSTEM=net -INTERFACE=eth0 -IFINDEX=2 -SEQNUM=910 - -UDEV [1294230271.710248] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0 -SUBSYSTEM=pci -DRIVER=tg3 -PCI_CLASS=20000 -PCI_ID=14E4:167B -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:3f:00.0 -MODALIAS=pci:v000014E4d0000167Bsv0000103Csd0000280Abc02sc00i00 -SEQNUM=909 - -KERNEL[1294230271.710262] add /devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f -SUBSYSTEM=pci_bus -SEQNUM=911 - -UDEV [1294230271.710276] add /devices/pci0000:00/0000:00:00.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:00.0 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1002:5950 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:00.0 -MODALIAS=pci:v00001002d00005950sv0000103Csd0000280Abc06sc00i00 -SEQNUM=900 - -KERNEL[1294230271.710293] add /devices/pci0000:00/0000:00:12.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0 -SUBSYSTEM=pci -DRIVER=ahci -PCI_CLASS=10601 -PCI_ID=1002:4380 -PCI_SUBSYS_ID=103C:2813 -PCI_SLOT_NAME=0000:00:12.0 -MODALIAS=pci:v00001002d00004380sv0000103Csd00002813bc01sc06i01 -SEQNUM=912 - -KERNEL[1294230271.710307] add /devices/pci0000:00/0000:00:12.0/host0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=913 - -KERNEL[1294230271.710318] add /devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 -SUBSYSTEM=scsi_host -SEQNUM=914 - -KERNEL[1294230271.710330] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_target -SEQNUM=915 - -KERNEL[1294230271.710342] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_device -DRIVER=sd -MODALIAS=scsi:t-0x00 -SEQNUM=916 - -KERNEL[1294230271.710358] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda -SUBSYSTEM=block -DEVNAME=sda -DEVTYPE=disk -SEQNUM=917 -MAJOR=8 -MINOR=0 - -UDEV [1294230271.710786] add /devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/pci_bus/0000:3f -SUBSYSTEM=pci_bus -SEQNUM=911 - -KERNEL[1294230271.711345] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 -SUBSYSTEM=block -DEVNAME=sda1 -DEVTYPE=partition -SEQNUM=918 -MAJOR=8 -MINOR=1 - -UDEV [1294230271.712051] add /devices/LNXSYSTM:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00 -SUBSYSTEM=acpi -MODALIAS=acpi:LNXSYSTM: -SEQNUM=835 - -UDEV [1294230271.712372] add /devices/LNXSYSTM:00/LNXCPU:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:01 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=838 - -UDEV [1294230271.712387] add /devices/LNXSYSTM:00/LNXCPU:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:00 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=837 - -UDEV [1294230271.712401] add /devices/LNXSYSTM:00/LNXCPU:02 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:02 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=839 - -KERNEL[1294230271.713380] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 -SUBSYSTEM=block -DEVNAME=sda2 -DEVTYPE=partition -SEQNUM=919 -MAJOR=8 -MINOR=2 - -KERNEL[1294230271.713481] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 -SUBSYSTEM=block -DEVNAME=sda3 -DEVTYPE=partition -SEQNUM=920 -MAJOR=8 -MINOR=3 - -KERNEL[1294230271.713578] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 -SUBSYSTEM=block -DEVNAME=sda4 -DEVTYPE=partition -SEQNUM=921 -MAJOR=8 -MINOR=4 - -KERNEL[1294230271.713672] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 (bsg) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 -SUBSYSTEM=bsg -DEVNAME=bsg/0:0:0:0 -SEQNUM=922 -MAJOR=253 -MINOR=0 - -KERNEL[1294230271.713825] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 (scsi_device) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 -SUBSYSTEM=scsi_device -SEQNUM=923 - -KERNEL[1294230271.713917] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 (scsi_disk) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 -SUBSYSTEM=scsi_disk -SEQNUM=924 - -KERNEL[1294230271.714000] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 (scsi_generic) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 -SUBSYSTEM=scsi_generic -DEVNAME=sg0 -SEQNUM=925 -MAJOR=21 -MINOR=0 - -KERNEL[1294230271.714056] add /devices/virtual/vc/vcs6 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs6 -SUBSYSTEM=vc -DEVNAME=vcs6 -SEQNUM=926 -MAJOR=7 -MINOR=6 - -KERNEL[1294230271.714077] add /devices/pci0000:00/0000:00:12.0/host1 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=927 - -KERNEL[1294230271.714123] add /devices/virtual/vc/vcsa6 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa6 -SUBSYSTEM=vc -DEVNAME=vcsa6 -SEQNUM=928 -MAJOR=7 -MINOR=134 - -UDEV [1294230271.714862] add /devices/virtual/vc/vcsa6 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa6 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa6 -SEQNUM=928 -MAJOR=7 -MINOR=134 -DEVLINKS=/dev/char/7:134 - -UDEV [1294230271.714881] add /devices/virtual/vc/vcs6 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs6 -SUBSYSTEM=vc -DEVNAME=/dev/vcs6 -SEQNUM=926 -MAJOR=7 -MINOR=6 -DEVLINKS=/dev/char/7:6 - -KERNEL[1294230271.714982] add /devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 -SUBSYSTEM=scsi_host -SEQNUM=929 - -KERNEL[1294230271.715046] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_target -SEQNUM=930 - -KERNEL[1294230271.715085] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_device -DRIVER=sr -MODALIAS=scsi:t-0x05 -SEQNUM=931 - -KERNEL[1294230271.715129] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 -SUBSYSTEM=block -DEVNAME=sr0 -DEVTYPE=disk -SEQNUM=932 -MAJOR=11 -MINOR=0 - -KERNEL[1294230271.715174] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 (bsg) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 -SUBSYSTEM=bsg -DEVNAME=bsg/1:0:0:0 -SEQNUM=933 -MAJOR=253 -MINOR=1 - -KERNEL[1294230271.715212] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 (scsi_device) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 -SUBSYSTEM=scsi_device -SEQNUM=934 - -KERNEL[1294230271.715330] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 (scsi_generic) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 -SUBSYSTEM=scsi_generic -DEVNAME=sg1 -SEQNUM=935 -MAJOR=21 -MINOR=1 - -KERNEL[1294230271.715426] add /devices/pci0000:00/0000:00:12.0/host2 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host2 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=936 - -KERNEL[1294230271.715468] add /devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 -SUBSYSTEM=scsi_host -SEQNUM=937 - -KERNEL[1294230271.715542] add /devices/pci0000:00/0000:00:12.0/host3 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host3 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=938 - -KERNEL[1294230271.715668] add /devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 -SUBSYSTEM=scsi_host -SEQNUM=939 - -KERNEL[1294230271.715830] add /devices/pci0000:00/0000:00:13.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:4387 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.0 -MODALIAS=pci:v00001002d00004387sv0000103Csd0000280Abc0Csc03i10 -SEQNUM=940 - -KERNEL[1294230271.715957] add /devices/pci0000:00/0000:00:13.0/usb2 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2 -SUBSYSTEM=usb -DEVNAME=bus/usb/002/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=002 -DEVNUM=001 -SEQNUM=941 -MAJOR=189 -MINOR=128 - -KERNEL[1294230271.716095] add /devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=942 - -UDEV [1294230271.716145] add /devices/pci0000:00/0000:00:13.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:4387 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.0 -MODALIAS=pci:v00001002d00004387sv0000103Csd0000280Abc0Csc03i10 -SEQNUM=940 - -KERNEL[1294230271.716533] add /devices/pci0000:00/0000:00:13.0/usb2/2-1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1 -SUBSYSTEM=usb -DEVNAME=bus/usb/002/002 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=3f0/1024/535 -TYPE=0/0/0 -BUSNUM=002 -DEVNUM=002 -SEQNUM=943 -MAJOR=189 -MINOR=129 - -KERNEL[1294230271.716899] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=usbhid -PRODUCT=3f0/1024/535 -TYPE=0/0/0 -INTERFACE=3/1/1 -MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic03isc01ip01 -SEQNUM=944 - -KERNEL[1294230271.717798] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 (hid) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 -SUBSYSTEM=hid -DRIVER=generic-usb -HID_ID=0003:000003F0:00001024 -HID_NAME=Hewlett-Packard Company HP USB Smart Card Keyboard -HID_PHYS=usb-0000:00:13.0-1/input0 -HID_UNIQ=0817bd66 -MODALIAS=hid:b0003v000003F0p00001024 -SEQNUM=945 - -KERNEL[1294230271.718123] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 (hidraw) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 -SUBSYSTEM=hidraw -DEVNAME=hidraw0 -SEQNUM=946 -MAJOR=251 -MINOR=0 - -KERNEL[1294230271.718380] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 -SUBSYSTEM=input -PRODUCT=3/3f0/1024/111 -NAME="Hewlett-Packard Company HP USB Smart Card Keyboard" -PHYS="usb-0000:00:13.0-1/input0" -UNIQ="0817bd66" -EV==120013 -KEY==10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe -MSC==10 -LED==7 -MODALIAS=input:b0003v03F0p1024e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw -SEQNUM=947 - -KERNEL[1294230271.718689] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 -SUBSYSTEM=input -DEVNAME=input/event3 -SEQNUM=948 -MAJOR=13 -MINOR=67 - -UDEV [1294230271.722952] add /devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/pci_bus/0000:02 -SUBSYSTEM=pci_bus -SEQNUM=906 - -UDEV [1294230271.723779] add /devices/LNXSYSTM:00/LNXPWRBN:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00 -SUBSYSTEM=acpi -DRIVER=button -MODALIAS=acpi:LNXPWRBN: -SEQNUM=841 - -UDEV [1294230271.724530] add /devices/LNXSYSTM:00/LNXCPU:03 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXCPU:03 -SUBSYSTEM=acpi -DRIVER=processor -MODALIAS=acpi:LNXCPU: -SEQNUM=840 - -KERNEL[1294230271.724649] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 -SUBSYSTEM=usb -DEVTYPE=usb_interface -PRODUCT=3f0/1024/535 -TYPE=0/0/0 -INTERFACE=11/0/0 -MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic0Bisc00ip00 -SEQNUM=949 - -KERNEL[1294230271.724768] add /devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 -SUBSYSTEM=usbmon -DEVNAME=usbmon2 -SEQNUM=950 -MAJOR=252 -MINOR=2 - -UDEV [1294230271.725132] add /devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usbmon/usbmon2 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon2 -SEQNUM=950 -MAJOR=252 -MINOR=2 -DEVLINKS=/dev/char/252:2 - -KERNEL[1294230271.725181] add /devices/pci0000:00/0000:00:13.1 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:4388 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.1 -MODALIAS=pci:v00001002d00004388sv0000103Csd0000280Abc0Csc03i10 -SEQNUM=951 - -KERNEL[1294230271.725231] add /devices/pci0000:00/0000:00:13.1/usb3 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3 -SUBSYSTEM=usb -DEVNAME=bus/usb/003/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=003 -DEVNUM=001 -SEQNUM=952 -MAJOR=189 -MINOR=256 - -KERNEL[1294230271.725278] add /devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=953 - -KERNEL[1294230271.725333] add /devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 -SUBSYSTEM=usbmon -DEVNAME=usbmon3 -SEQNUM=954 -MAJOR=252 -MINOR=3 - -KERNEL[1294230271.725375] add /devices/pci0000:00/0000:00:13.2 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:4389 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.2 -MODALIAS=pci:v00001002d00004389sv0000103Csd0000280Abc0Csc03i10 -SEQNUM=955 - -KERNEL[1294230271.725425] add /devices/pci0000:00/0000:00:13.2/usb4 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4 -SUBSYSTEM=usb -DEVNAME=bus/usb/004/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=004 -DEVNUM=001 -SEQNUM=956 -MAJOR=189 -MINOR=384 - -KERNEL[1294230271.725474] add /devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=957 - -KERNEL[1294230271.725524] add /devices/pci0000:00/0000:00:13.2/usb4/4-1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1 -SUBSYSTEM=usb -DEVNAME=bus/usb/004/002 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=408/3000/0 -TYPE=0/0/0 -BUSNUM=004 -DEVNUM=002 -SEQNUM=958 -MAJOR=189 -MINOR=385 - -UDEV [1294230271.725545] add /devices/pci0000:00/0000:00:13.1 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:4388 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.1 -MODALIAS=pci:v00001002d00004388sv0000103Csd0000280Abc0Csc03i10 -SEQNUM=951 - -KERNEL[1294230271.725590] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=usbhid -PRODUCT=408/3000/0 -TYPE=0/0/0 -INTERFACE=3/0/0 -MODALIAS=usb:v0408p3000d0000dc00dsc00dp00ic03isc00ip00 -SEQNUM=959 - -UDEV [1294230271.725874] add /devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1/usbmon/usbmon3 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon3 -SEQNUM=954 -MAJOR=252 -MINOR=3 -DEVLINKS=/dev/char/252:3 - -KERNEL[1294230271.726231] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 (hid) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 -SUBSYSTEM=hid -HID_ID=0003:00000408:00003000 -HID_NAME=Quanta Computer Inc. Optical Touch Screen -HID_PHYS=usb-0000:00:13.2-1/input0 -MODALIAS=hid:b0003v00000408p00003000 -SEQNUM=960 - -KERNEL[1294230271.726390] add /devices/pci0000:00/0000:00:13.2/usb4/4-2 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2 -SUBSYSTEM=usb -DEVNAME=bus/usb/004/003 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=461/4d20/200 -TYPE=0/0/0 -BUSNUM=004 -DEVNUM=003 -SEQNUM=961 -MAJOR=189 -MINOR=386 - -KERNEL[1294230271.726489] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=usbhid -PRODUCT=461/4d20/200 -TYPE=0/0/0 -INTERFACE=3/1/2 -MODALIAS=usb:v0461p4D20d0200dc00dsc00dp00ic03isc01ip02 -SEQNUM=962 - -KERNEL[1294230271.726626] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 (hid) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 -SUBSYSTEM=hid -DRIVER=generic-usb -HID_ID=0003:00000461:00004D20 -HID_NAME=USB Optical Mouse -HID_PHYS=usb-0000:00:13.2-2/input0 -MODALIAS=hid:b0003v00000461p00004D20 -SEQNUM=963 - -UDEV [1294230271.726758] add /devices/pci0000:00/0000:00:13.2 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:4389 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.2 -MODALIAS=pci:v00001002d00004389sv0000103Csd0000280Abc0Csc03i10 -SEQNUM=955 - -KERNEL[1294230271.726796] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 (hidraw) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 -SUBSYSTEM=hidraw -DEVNAME=hidraw1 -SEQNUM=964 -MAJOR=251 -MINOR=1 - -KERNEL[1294230271.726899] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 -SUBSYSTEM=input -PRODUCT=3/461/4d20/111 -NAME="USB Optical Mouse" -PHYS="usb-0000:00:13.2-2/input0" -UNIQ="" -EV==17 -KEY==70000 0 0 0 0 0 0 0 0 -REL==103 -MSC==10 -MODALIAS=input:b0003v0461p4D20e0111-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw -SEQNUM=965 - -KERNEL[1294230271.726994] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 -SUBSYSTEM=input -DEVNAME=input/event4 -SEQNUM=966 -MAJOR=13 -MINOR=68 - -KERNEL[1294230271.727400] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 -SUBSYSTEM=input -DEVNAME=input/mouse1 -SEQNUM=967 -MAJOR=13 -MINOR=33 - -KERNEL[1294230271.727509] add /devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 -SUBSYSTEM=usbmon -DEVNAME=usbmon4 -SEQNUM=968 -MAJOR=252 -MINOR=4 - -KERNEL[1294230271.727626] add /devices/pci0000:00/0000:00:13.3 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:438A -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.3 -MODALIAS=pci:v00001002d0000438Asv0000103Csd0000280Abc0Csc03i10 -SEQNUM=969 - -UDEV [1294230271.728196] add /devices/pci0000:00/0000:00:13.3 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:438A -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.3 -MODALIAS=pci:v00001002d0000438Asv0000103Csd0000280Abc0Csc03i10 -SEQNUM=969 - -UDEV [1294230271.728216] add /devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usbmon/usbmon4 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon4 -SEQNUM=968 -MAJOR=252 -MINOR=4 -DEVLINKS=/dev/char/252:4 - -KERNEL[1294230271.728279] add /devices/pci0000:00/0000:00:13.3/usb5 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5 -SUBSYSTEM=usb -DEVNAME=bus/usb/005/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=005 -DEVNUM=001 -SEQNUM=970 -MAJOR=189 -MINOR=512 - -KERNEL[1294230271.730197] add /devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=971 - -KERNEL[1294230271.730349] add /devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 -SUBSYSTEM=usbmon -DEVNAME=usbmon5 -SEQNUM=972 -MAJOR=252 -MINOR=5 - -UDEV [1294230271.730770] add /devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3/usbmon/usbmon5 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon5 -SEQNUM=972 -MAJOR=252 -MINOR=5 -DEVLINKS=/dev/char/252:5 - -KERNEL[1294230271.732268] add /devices/pci0000:00/0000:00:13.4 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:438B -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.4 -MODALIAS=pci:v00001002d0000438Bsv0000103Csd0000280Abc0Csc03i10 -SEQNUM=973 - -UDEV [1294230271.740008] add /devices/pci0000:00/0000:00:13.4 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4 -SUBSYSTEM=pci -DRIVER=ohci_hcd -PCI_CLASS=C0310 -PCI_ID=1002:438B -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.4 -MODALIAS=pci:v00001002d0000438Bsv0000103Csd0000280Abc0Csc03i10 -SEQNUM=973 - -UDEV [1294230271.740031] add /devices/LNXSYSTM:00/LNXSYBUS:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00 -SUBSYSTEM=acpi -MODALIAS=acpi:LNXSYBUS: -SEQNUM=844 - -UDEV [1294230271.740043] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00 -SUBSYSTEM=acpi -DRIVER=pci_root -MODALIAS=acpi:PNP0A08:PNP0A03: -SEQNUM=845 - -KERNEL[1294230271.742928] add /devices/pci0000:00/0000:00:13.4/usb6 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6 -SUBSYSTEM=usb -DEVNAME=bus/usb/006/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=006 -DEVNUM=001 -SEQNUM=974 -MAJOR=189 -MINOR=640 - -UDEV [1294230271.742955] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 -SUBSYSTEM=input -PRODUCT=19/0/1/0 -NAME="Power Button" -PHYS="LNXPWRBN/button/input0" -EV==3 -KEY==100000 0 0 0 -MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw -SEQNUM=842 - -KERNEL[1294230271.743472] add /devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=975 - -KERNEL[1294230271.744068] add /devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 -SUBSYSTEM=usbmon -DEVNAME=usbmon6 -SEQNUM=976 -MAJOR=252 -MINOR=6 - -UDEV [1294230271.746330] add /devices/pci0000:00/0000:00:13.0/usb2 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/002/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=002 -DEVNUM=001 -SEQNUM=941 -ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd -ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd -ID_VENDOR_ID=1d6b -ID_MODEL=OHCI_Host_Controller -ID_MODEL_ENC=OHCI\x20Host\x20Controller -ID_MODEL_ID=0001 -ID_REVISION=0206 -ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.0 -ID_SERIAL_SHORT=0000:00:13.0 -ID_BUS=usb -ID_USB_INTERFACES=:090000: -MAJOR=189 -MINOR=128 -DEVLINKS=/dev/char/189:128 - -UDEV [1294230271.746534] add /devices/pci0000:00/0000:00:13.1/usb3 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/003/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=003 -DEVNUM=001 -SEQNUM=952 -ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd -ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd -ID_VENDOR_ID=1d6b -ID_MODEL=OHCI_Host_Controller -ID_MODEL_ENC=OHCI\x20Host\x20Controller -ID_MODEL_ID=0001 -ID_REVISION=0206 -ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.1 -ID_SERIAL_SHORT=0000:00:13.1 -ID_BUS=usb -ID_USB_INTERFACES=:090000: -MAJOR=189 -MINOR=256 -DEVLINKS=/dev/char/189:256 - -KERNEL[1294230271.747174] add /module/i2c_algo_bit (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/i2c_algo_bit -SUBSYSTEM=module -SEQNUM=977 - -KERNEL[1294230271.749798] add /devices/pci0000:00/0000:00:13.5 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5 -SUBSYSTEM=pci -DRIVER=ehci_hcd -PCI_CLASS=C0320 -PCI_ID=1002:4386 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.5 -MODALIAS=pci:v00001002d00004386sv0000103Csd0000280Abc0Csc03i20 -SEQNUM=978 - -UDEV [1294230271.749820] add /devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=942 - -KERNEL[1294230271.749859] add /devices/pci0000:00/0000:00:13.5/usb1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1 -SUBSYSTEM=usb -DEVNAME=bus/usb/001/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/2/206 -TYPE=9/0/0 -BUSNUM=001 -DEVNUM=001 -SEQNUM=979 -MAJOR=189 -MINOR=0 - -UDEV [1294230271.749875] add /devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4/usbmon/usbmon6 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon6 -SEQNUM=976 -MAJOR=252 -MINOR=6 -DEVLINKS=/dev/char/252:6 - -KERNEL[1294230271.749892] add /devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/2/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=980 - -UDEV [1294230271.749904] add /module/i2c_algo_bit (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/i2c_algo_bit -SUBSYSTEM=module -SEQNUM=977 - -KERNEL[1294230271.749917] add /devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 -SUBSYSTEM=usbmon -DEVNAME=usbmon1 -SEQNUM=981 -MAJOR=252 -MINOR=1 - -KERNEL[1294230271.749933] add /devices/pci0000:00/0000:00:14.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.0 -SUBSYSTEM=pci -DRIVER=piix4_smbus -PCI_CLASS=C0500 -PCI_ID=1002:4385 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.0 -MODALIAS=pci:v00001002d00004385sv0000103Csd0000280Abc0Csc05i00 -SEQNUM=982 - -KERNEL[1294230271.749947] add /devices/pci0000:00/0000:00:14.0/i2c-0 (i2c) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.0/i2c-0 -SUBSYSTEM=i2c -SEQNUM=983 - -KERNEL[1294230271.749961] add /devices/pci0000:00/0000:00:14.1 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1 -SUBSYSTEM=pci -DRIVER=pata_atiixp -PCI_CLASS=1018F -PCI_ID=1002:438C -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.1 -MODALIAS=pci:v00001002d0000438Csv0000103Csd0000280Abc01sc01i8f -SEQNUM=984 - -KERNEL[1294230271.749975] add /devices/pci0000:00/0000:00:14.1/host4 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host4 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=985 - -KERNEL[1294230271.749987] add /devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 -SUBSYSTEM=scsi_host -SEQNUM=986 - -KERNEL[1294230271.749999] add /devices/pci0000:00/0000:00:14.1/host5 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host5 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=987 - -KERNEL[1294230271.750010] add /devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 -SUBSYSTEM=scsi_host -SEQNUM=988 - -KERNEL[1294230271.750024] add /devices/pci0000:00/0000:00:14.2 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2 -SUBSYSTEM=pci -DRIVER=HDA Intel -PCI_CLASS=40300 -PCI_ID=1002:4383 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.2 -MODALIAS=pci:v00001002d00004383sv0000103Csd0000280Abc04sc03i00 -SEQNUM=989 - -KERNEL[1294230271.750041] add /devices/pci0000:00/0000:00:14.2/input/input5 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5 -SUBSYSTEM=input -PRODUCT=1/10ec/260/1 -NAME="HDA Digital PCBeep" -PHYS="card0/codec#3/beep0" -EV==40001 -SND==6 -MODALIAS=input:b0001v10ECp0260e0001-e0,12,kramls1,2,fw -SEQNUM=990 - -KERNEL[1294230271.750056] add /devices/pci0000:00/0000:00:14.2/input/input5/event5 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5/event5 -SUBSYSTEM=input -DEVNAME=input/event5 -SEQNUM=991 -MAJOR=13 -MINOR=69 - -KERNEL[1294230271.750068] add /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 -SUBSYSTEM=sound -SEQNUM=992 - -KERNEL[1294230271.750088] add /devices/pci0000:00/0000:00:14.2/sound/card0/audio (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/audio -SUBSYSTEM=sound -DEVNAME=audio -SEQNUM=993 -MAJOR=14 -MINOR=4 - -KERNEL[1294230271.750102] add /devices/pci0000:00/0000:00:14.2/sound/card0/dsp (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/dsp -SUBSYSTEM=sound -DEVNAME=dsp -SEQNUM=994 -MAJOR=14 -MINOR=3 - -KERNEL[1294230271.750116] add /devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 -SUBSYSTEM=sound -DEVNAME=snd/hwC0D3 -SEQNUM=995 -MAJOR=116 -MINOR=5 - -KERNEL[1294230271.750130] add /devices/pci0000:00/0000:00:14.2/sound/card0/mixer (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/mixer -SUBSYSTEM=sound -DEVNAME=mixer -SEQNUM=996 -MAJOR=14 -MINOR=0 - -KERNEL[1294230271.750144] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c -SUBSYSTEM=sound -DEVNAME=snd/pcmC0D0c -SEQNUM=997 -MAJOR=116 -MINOR=4 - -KERNEL[1294230271.750158] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p -SUBSYSTEM=sound -DEVNAME=snd/pcmC0D0p -SEQNUM=998 -MAJOR=116 -MINOR=3 - -KERNEL[1294230271.751042] add /devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 -SUBSYSTEM=sound -DEVNAME=snd/controlC0 -SEQNUM=999 -MAJOR=116 -MINOR=6 - -KERNEL[1294230271.751192] add /devices/pci0000:00/0000:00:14.3 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.3 -SUBSYSTEM=pci -PCI_CLASS=60100 -PCI_ID=1002:438D -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.3 -MODALIAS=pci:v00001002d0000438Dsv0000103Csd0000280Abc06sc01i00 -SEQNUM=1000 - -KERNEL[1294230271.755958] add /devices/pci0000:00/0000:00:14.4 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.4 -SUBSYSTEM=pci -PCI_CLASS=60401 -PCI_ID=1002:4384 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:14.4 -MODALIAS=pci:v00001002d00004384sv00000000sd00000000bc06sc04i01 -SEQNUM=1001 - -UDEV [1294230271.755979] add /devices/pci0000:00/0000:00:14.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.0 -SUBSYSTEM=pci -DRIVER=piix4_smbus -PCI_CLASS=C0500 -PCI_ID=1002:4385 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.0 -MODALIAS=pci:v00001002d00004385sv0000103Csd0000280Abc0Csc05i00 -SEQNUM=982 - -KERNEL[1294230271.755994] add /devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 -SUBSYSTEM=pci_bus -SEQNUM=1002 - -UDEV [1294230271.756004] add /devices/pci0000:00/0000:00:14.0/i2c-0 (i2c) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.0/i2c-0 -SUBSYSTEM=i2c -SEQNUM=983 - -KERNEL[1294230271.756017] add /devices/pci0000:00/0000:00:18.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.0 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1022:1100 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.0 -MODALIAS=pci:v00001022d00001100sv00000000sd00000000bc06sc00i00 -SEQNUM=1003 - -KERNEL[1294230271.756033] add /devices/pci0000:00/0000:00:18.1 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.1 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1022:1101 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.1 -MODALIAS=pci:v00001022d00001101sv00000000sd00000000bc06sc00i00 -SEQNUM=1004 - -KERNEL[1294230271.756049] add /devices/pci0000:00/0000:00:18.2 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.2 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1022:1102 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.2 -MODALIAS=pci:v00001022d00001102sv00000000sd00000000bc06sc00i00 -SEQNUM=1005 - -KERNEL[1294230271.756065] add /devices/pci0000:00/0000:00:18.3 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.3 -SUBSYSTEM=pci -DRIVER=k8temp -PCI_CLASS=60000 -PCI_ID=1022:1103 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.3 -MODALIAS=pci:v00001022d00001103sv00000000sd00000000bc06sc00i00 -SEQNUM=1006 - -KERNEL[1294230271.756093] add /devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 (hwmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 -SUBSYSTEM=hwmon -SEQNUM=1007 - -KERNEL[1294230271.756103] add /devices/pci0000:00/pci_bus/0000:00 (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/pci_bus/0000:00 -SUBSYSTEM=pci_bus -SEQNUM=1008 - -KERNEL[1294230271.756115] add /devices/platform/Fixed MDIO bus.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/Fixed MDIO bus.0 -SUBSYSTEM=platform -MODALIAS=platform:Fixed MDIO bus -SEQNUM=1009 - -KERNEL[1294230271.756126] add /devices/platform/Fixed MDIO bus.0/mdio_bus/0 (mdio_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/Fixed MDIO bus.0/mdio_bus/0 -SUBSYSTEM=mdio_bus -SEQNUM=1010 - -KERNEL[1294230271.756137] add /devices/platform/eisa.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/eisa.0 -SUBSYSTEM=platform -MODALIAS=platform:eisa -SEQNUM=1011 - -KERNEL[1294230271.756149] add /devices/platform/i8042 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/i8042 -SUBSYSTEM=platform -DRIVER=i8042 -MODALIAS=platform:i8042 -SEQNUM=1012 - -KERNEL[1294230271.756164] add /devices/platform/i8042/serio0 (serio) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/i8042/serio0 -SUBSYSTEM=serio -SERIO_TYPE=06 -SERIO_PROTO=00 -SERIO_ID=00 -SERIO_EXTRA=00 -MODALIAS=serio:ty06pr00id00ex00 -SEQNUM=1013 - -KERNEL[1294230271.756180] add /devices/platform/i8042/serio1 (serio) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/i8042/serio1 -SUBSYSTEM=serio -SERIO_TYPE=01 -SERIO_PROTO=00 -SERIO_ID=00 -SERIO_EXTRA=00 -MODALIAS=serio:ty01pr00id00ex00 -SEQNUM=1014 - -KERNEL[1294230271.756193] add /devices/platform/pcspkr (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/pcspkr -SUBSYSTEM=platform -MODALIAS=platform:pcspkr -SEQNUM=1015 - -KERNEL[1294230271.756206] add /devices/platform/serial8250 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250 -SUBSYSTEM=platform -DRIVER=serial8250 -MODALIAS=platform:serial8250 -SEQNUM=1016 - -KERNEL[1294230271.756220] add /devices/platform/serial8250/tty/ttyS1 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250/tty/ttyS1 -SUBSYSTEM=tty -DEVNAME=ttyS1 -SEQNUM=1017 -MAJOR=4 -MINOR=65 - -KERNEL[1294230271.756233] add /devices/platform/serial8250/tty/ttyS2 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250/tty/ttyS2 -SUBSYSTEM=tty -DEVNAME=ttyS2 -SEQNUM=1018 -MAJOR=4 -MINOR=66 - -KERNEL[1294230271.756247] add /devices/platform/serial8250/tty/ttyS3 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250/tty/ttyS3 -SUBSYSTEM=tty -DEVNAME=ttyS3 -SEQNUM=1019 -MAJOR=4 -MINOR=67 - -KERNEL[1294230271.756260] add /devices/platform/vesafb.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vesafb.0 -SUBSYSTEM=platform -DRIVER=vesafb -MODALIAS=platform:vesafb -SEQNUM=1020 - -KERNEL[1294230271.756274] add /devices/platform/vesafb.0/graphics/fb0 (graphics) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vesafb.0/graphics/fb0 -SUBSYSTEM=graphics -DEVNAME=fb0 -SEQNUM=1021 -MAJOR=29 -MINOR=0 - -KERNEL[1294230271.756285] add /devices/pnp0/00:00 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:00 -SUBSYSTEM=pnp -SEQNUM=1022 - -KERNEL[1294230271.756296] add /devices/pnp0/00:01 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:01 -SUBSYSTEM=pnp -SEQNUM=1023 - -KERNEL[1294230271.756306] add /devices/pnp0/00:02 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:02 -SUBSYSTEM=pnp -SEQNUM=1024 - -KERNEL[1294230271.756317] add /devices/pnp0/00:03 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:03 -SUBSYSTEM=pnp -DRIVER=rtc_cmos -SEQNUM=1025 - -KERNEL[1294230271.756330] add /devices/pnp0/00:03/rtc/rtc0 (rtc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:03/rtc/rtc0 -SUBSYSTEM=rtc -DEVNAME=rtc0 -SEQNUM=1026 -MAJOR=254 -MINOR=0 - -KERNEL[1294230271.756342] add /devices/pnp0/00:04 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:04 -SUBSYSTEM=pnp -SEQNUM=1027 - -KERNEL[1294230271.756359] add /devices/pnp0/00:05 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:05 -SUBSYSTEM=pnp -DRIVER=i8042 aux -SEQNUM=1028 - -KERNEL[1294230271.756370] add /devices/pnp0/00:06 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:06 -SUBSYSTEM=pnp -DRIVER=i8042 kbd -SEQNUM=1029 - -KERNEL[1294230271.756382] add /devices/pnp0/00:07 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:07 -SUBSYSTEM=pnp -DRIVER=parport_pc -SEQNUM=1030 - -KERNEL[1294230271.756395] add /devices/pnp0/00:07/ppdev/parport0 (ppdev) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:07/ppdev/parport0 -SUBSYSTEM=ppdev -DEVNAME=parport0 -SEQNUM=1031 -MAJOR=99 -MINOR=0 - -UDEV [1294230271.762547] add /devices/pci0000:00/0000:00:13.2/usb4 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/004/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=004 -DEVNUM=001 -SEQNUM=956 -ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd -ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd -ID_VENDOR_ID=1d6b -ID_MODEL=OHCI_Host_Controller -ID_MODEL_ENC=OHCI\x20Host\x20Controller -ID_MODEL_ID=0001 -ID_REVISION=0206 -ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.2 -ID_SERIAL_SHORT=0000:00:13.2 -ID_BUS=usb -ID_USB_INTERFACES=:090000: -MAJOR=189 -MINOR=384 -DEVLINKS=/dev/char/189:384 - -UDEV [1294230271.764522] add /devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=957 - -UDEV [1294230271.764542] add /devices/pnp0/00:07 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:07 -SUBSYSTEM=pnp -DRIVER=parport_pc -SEQNUM=1030 - -UDEV [1294230271.764556] add /devices/pnp0/00:07/ppdev/parport0 (ppdev) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:07/ppdev/parport0 -SUBSYSTEM=ppdev -DEVNAME=/dev/parport0 -SEQNUM=1031 -MAJOR=99 -MINOR=0 -DEVLINKS=/dev/char/99:0 - -UDEV [1294230271.765879] add /devices/LNXSYSTM:00/LNXTHERM:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXTHERM:00 -SUBSYSTEM=acpi -MODALIAS=acpi:LNXTHERM: -SEQNUM=899 - -UDEV [1294230271.768377] add /devices/pci0000:00/0000:00:13.3/usb5 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/005/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=005 -DEVNUM=001 -SEQNUM=970 -ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd -ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd -ID_VENDOR_ID=1d6b -ID_MODEL=OHCI_Host_Controller -ID_MODEL_ENC=OHCI\x20Host\x20Controller -ID_MODEL_ID=0001 -ID_REVISION=0206 -ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.3 -ID_SERIAL_SHORT=0000:00:13.3 -ID_BUS=usb -ID_USB_INTERFACES=:090000: -MAJOR=189 -MINOR=512 -DEVLINKS=/dev/char/189:512 - -UDEV [1294230271.769215] add /devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.3/usb5/5-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=971 - -UDEV [1294230271.771978] add /devices/pci0000:00/0000:00:13.2/usb4/4-1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/004/002 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=408/3000/0 -TYPE=0/0/0 -BUSNUM=004 -DEVNUM=002 -SEQNUM=958 -ID_VENDOR=Quanta_Computer_Inc. -ID_VENDOR_ENC=Quanta\x20Computer\x20Inc. -ID_VENDOR_ID=0408 -ID_MODEL=Optical_Touch_Screen -ID_MODEL_ENC=Optical\x20Touch\x20Screen -ID_MODEL_ID=3000 -ID_REVISION=0000 -ID_SERIAL=Quanta_Computer_Inc._Optical_Touch_Screen -ID_BUS=usb -ID_USB_INTERFACES=:030000: -MAJOR=189 -MINOR=385 -DEVLINKS=/dev/char/189:385 - -UDEV [1294230271.773073] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=usbhid -PRODUCT=408/3000/0 -TYPE=0/0/0 -INTERFACE=3/0/0 -MODALIAS=usb:v0408p3000d0000dc00dsc00dp00ic03isc00ip00 -SEQNUM=959 - -UDEV [1294230271.773707] add /devices/pnp0/00:05 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:05 -SUBSYSTEM=pnp -DRIVER=i8042 aux -SEQNUM=1028 - -UDEV [1294230271.774710] add /devices/pnp0/00:04 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:04 -SUBSYSTEM=pnp -SEQNUM=1027 - -UDEV [1294230271.777511] add /devices/pnp0/00:02 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:02 -SUBSYSTEM=pnp -SEQNUM=1024 - -UDEV [1294230271.778277] add /devices/pnp0/00:00 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:00 -SUBSYSTEM=pnp -SEQNUM=1022 - -UDEV [1294230271.778943] add /devices/pnp0/00:06 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:06 -SUBSYSTEM=pnp -DRIVER=i8042 kbd -SEQNUM=1029 - -UDEV [1294230271.779536] add /devices/platform/serial8250 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250 -SUBSYSTEM=platform -DRIVER=serial8250 -MODALIAS=platform:serial8250 -SEQNUM=1016 - -UDEV [1294230271.780281] add /devices/platform/serial8250/tty/ttyS2 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250/tty/ttyS2 -SUBSYSTEM=tty -DEVNAME=/dev/ttyS2 -SEQNUM=1018 -MAJOR=4 -MINOR=66 -DEVLINKS=/dev/char/4:66 - -UDEV [1294230271.780299] add /devices/platform/serial8250/tty/ttyS3 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250/tty/ttyS3 -SUBSYSTEM=tty -DEVNAME=/dev/ttyS3 -SEQNUM=1019 -MAJOR=4 -MINOR=67 -DEVLINKS=/dev/char/4:67 - -UDEV [1294230271.780560] add /devices/platform/serial8250/tty/ttyS1 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/serial8250/tty/ttyS1 -SUBSYSTEM=tty -DEVNAME=/dev/ttyS1 -SEQNUM=1017 -MAJOR=4 -MINOR=65 -DEVLINKS=/dev/char/4:65 - -UDEV [1294230271.781734] add /devices/platform/i8042 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/i8042 -SUBSYSTEM=platform -DRIVER=i8042 -MODALIAS=platform:i8042 -SEQNUM=1012 - -UDEV [1294230271.783318] add /devices/pci0000:00/0000:00:18.3 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.3 -SUBSYSTEM=pci -DRIVER=k8temp -PCI_CLASS=60000 -PCI_ID=1022:1103 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.3 -MODALIAS=pci:v00001022d00001103sv00000000sd00000000bc06sc00i00 -SEQNUM=1006 - -UDEV [1294230271.783587] add /devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 (hwmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.3/hwmon/hwmon0 -SUBSYSTEM=hwmon -SEQNUM=1007 - -UDEV [1294230271.785338] add /devices/pci0000:00/0000:00:12.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0 -SUBSYSTEM=pci -DRIVER=ahci -PCI_CLASS=10601 -PCI_ID=1002:4380 -PCI_SUBSYS_ID=103C:2813 -PCI_SLOT_NAME=0000:00:12.0 -MODALIAS=pci:v00001002d00004380sv0000103Csd00002813bc01sc06i01 -SEQNUM=912 -ID_VENDOR_FROM_DATABASE=ATI Technologies Inc -ID_MODEL_FROM_DATABASE=SB600 Non-Raid-5 SATA - -UDEV [1294230271.787166] add /devices/pci0000:00/0000:00:12.0/host0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=913 - -UDEV [1294230271.787183] add /devices/pci0000:00/0000:00:12.0/host1 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=927 - -UDEV [1294230271.787195] add /devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/scsi_host/host0 -SUBSYSTEM=scsi_host -SEQNUM=914 - -UDEV [1294230271.787208] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_target -SEQNUM=915 - -UDEV [1294230271.787220] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_device -DRIVER=sd -MODALIAS=scsi:t-0x00 -SEQNUM=916 - -UDEV [1294230271.787254] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 (bsg) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/bsg/0:0:0:0 -SUBSYSTEM=bsg -DEVNAME=/dev/bsg/0:0:0:0 -SEQNUM=922 -MAJOR=253 -MINOR=0 -DEVLINKS=/dev/char/253:0 - -UDEV [1294230193.977227] add /devices/pci0000:00/0000:00:13.0/usb2/2-1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/002/002 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=3f0/1024/535 -TYPE=0/0/0 -BUSNUM=002 -DEVNUM=002 -SEQNUM=943 -ID_VENDOR=Hewlett-Packard_Company -ID_VENDOR_ENC=Hewlett-Packard\x20Company -ID_VENDOR_ID=03f0 -ID_MODEL=HP_USB_Smart_Card_Keyboard -ID_MODEL_ENC=HP\x20USB\x20Smart\x20Card\x20Keyboard -ID_MODEL_ID=1024 -ID_REVISION=0535 -ID_SERIAL=Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66 -ID_SERIAL_SHORT=0817bd66 -ID_BUS=usb -ID_USB_INTERFACES=:030101:0b0000: -MAJOR=189 -MINOR=129 -DEVLINKS=/dev/char/189:129 - -UDEV [1294230193.978525] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=usbhid -PRODUCT=3f0/1024/535 -TYPE=0/0/0 -INTERFACE=3/1/1 -MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic03isc01ip01 -SEQNUM=944 - -UDEV [1294230193.978548] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 (hid) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001 -SUBSYSTEM=hid -DRIVER=generic-usb -HID_ID=0003:000003F0:00001024 -HID_NAME=Hewlett-Packard Company HP USB Smart Card Keyboard -HID_PHYS=usb-0000:00:13.0-1/input0 -HID_UNIQ=0817bd66 -MODALIAS=hid:b0003v000003F0p00001024 -SEQNUM=945 - -UDEV [1294230193.978567] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 (hidraw) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/0003:03F0:1024.0001/hidraw/hidraw0 -SUBSYSTEM=hidraw -DEVNAME=/dev/hidraw0 -SEQNUM=946 -MAJOR=251 -MINOR=0 -DEVLINKS=/dev/char/251:0 - -UDEV [1294230193.981364] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:07 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=858 - -UDEV [1294230193.982177] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:05 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=854 - -UDEV [1294230193.983589] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C01:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C01: -SEQNUM=894 - -UDEV [1294230193.984150] add /devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.1/usb3/3-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=953 - -UDEV [1294230193.984669] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:03 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=851 - -UDEV [1294230193.985441] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 (scsi_generic) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_generic/sg0 -SUBSYSTEM=scsi_generic -DEVNAME=/dev/sg0 -SEQNUM=925 -MAJOR=21 -MINOR=0 -DEVLINKS=/dev/char/21:0 - -UDEV [1294230193.985764] add /devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/scsi_host/host1 -SUBSYSTEM=scsi_host -SEQNUM=929 - -UDEV [1294230193.985779] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:01 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=849 - -UDEV [1294230193.986300] add /devices/pci0000:00/0000:00:12.0/host3 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host3 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=938 - -UDEV [1294230193.986590] add /devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host3/scsi_host/host3 -SUBSYSTEM=scsi_host -SEQNUM=939 - -UDEV [1294230193.986788] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 (scsi_disk) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_disk/0:0:0:0 -SUBSYSTEM=scsi_disk -SEQNUM=924 - -UDEV [1294230193.992516] add /devices/pci0000:00/0000:00:13.5 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5 -SUBSYSTEM=pci -DRIVER=ehci_hcd -PCI_CLASS=C0320 -PCI_ID=1002:4386 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:13.5 -MODALIAS=pci:v00001002d00004386sv0000103Csd0000280Abc0Csc03i20 -SEQNUM=978 - -UDEV [1294230193.992832] add /devices/pci0000:00/0000:00:14.2 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2 -SUBSYSTEM=pci -DRIVER=HDA Intel -PCI_CLASS=40300 -PCI_ID=1002:4383 -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.2 -MODALIAS=pci:v00001002d00004383sv0000103Csd0000280Abc04sc03i00 -SEQNUM=989 - -UDEV [1294230193.993140] add /devices/pci0000:00/0000:00:12.0/host2 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host2 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=936 - -UDEV [1294230193.993777] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C14:00 -SUBSYSTEM=acpi -DRIVER=wmi -MODALIAS=acpi:PNP0C14: -SEQNUM=898 - -UDEV [1294230193.993993] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00 -SUBSYSTEM=acpi -DRIVER=button -MODALIAS=acpi:PNP0C0C: -SEQNUM=895 - -UDEV [1294230193.995929] add /devices/pnp0/00:01 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:01 -SUBSYSTEM=pnp -SEQNUM=1023 - -UDEV [1294230193.996294] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_target -SEQNUM=930 - -UDEV [1294230193.996552] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:06 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=857 - -UDEV [1294230193.996691] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:04 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=852 - -UDEV [1294230193.998244] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:02 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=850 - -UDEV [1294230193.998408] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C0F:00 -SUBSYSTEM=acpi -DRIVER=pci_link -MODALIAS=acpi:PNP0C0F: -SEQNUM=848 - -UDEV [1294230194.000083] add /devices/platform/vesafb.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vesafb.0 -SUBSYSTEM=platform -DRIVER=vesafb -MODALIAS=platform:vesafb -SEQNUM=1020 - -UDEV [1294230194.000655] add /devices/pnp0/00:03 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:03 -SUBSYSTEM=pnp -DRIVER=rtc_cmos -SEQNUM=1025 - -UDEV [1294230194.000900] add /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 -SUBSYSTEM=sound -SEQNUM=992 - -UDEV [1294230194.002135] add /devices/pci0000:00/pci_bus/0000:00 (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/pci_bus/0000:00 -SUBSYSTEM=pci_bus -SEQNUM=1008 - -UDEV [1294230194.002842] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 (scsi_device) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/scsi_device/0:0:0:0 -SUBSYSTEM=scsi_device -SEQNUM=923 - -UDEV [1294230194.003850] add /devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5/usbmon/usbmon1 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon1 -SEQNUM=981 -MAJOR=252 -MINOR=1 -DEVLINKS=/dev/char/252:1 - -UDEV [1294230194.004355] add /devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host2/scsi_host/host2 -SUBSYSTEM=scsi_host -SEQNUM=937 - -UDEV [1294230194.005734] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0 -SUBSYSTEM=scsi -DEVTYPE=scsi_device -DRIVER=sr -MODALIAS=scsi:t-0x05 -SEQNUM=931 - -UDEV [1294230194.006458] add /devices/pnp0/00:03/rtc/rtc0 (rtc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:03/rtc/rtc0 -SUBSYSTEM=rtc -DEVNAME=/dev/rtc0 -SEQNUM=1026 -MAJOR=254 -MINOR=0 -DEVLINKS=/dev/char/254:0 /dev/rtc - -UDEV [1294230194.006753] add /devices/pci0000:00/0000:00:14.2/sound/card0/audio (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/audio -SUBSYSTEM=sound -DEVNAME=/dev/audio -SEQNUM=993 -ACL_MANAGE=1 -MAJOR=14 -MINOR=4 -DEVLINKS=/dev/char/14:4 - -UDEV [1294230194.006993] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0c -SUBSYSTEM=sound -DEVNAME=/dev/snd/pcmC0D0c -SEQNUM=997 -ACL_MANAGE=1 -MAJOR=116 -MINOR=4 -DEVLINKS=/dev/char/116:4 - -UDEV [1294230194.007199] add /devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/hwC0D3 -SUBSYSTEM=sound -DEVNAME=/dev/snd/hwC0D3 -SEQNUM=995 -ACL_MANAGE=1 -MAJOR=116 -MINOR=5 -DEVLINKS=/dev/char/116:5 - -UDEV [1294230194.007397] add /devices/pci0000:00/0000:00:14.2/sound/card0/dsp (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/dsp -SUBSYSTEM=sound -DEVNAME=/dev/dsp -SEQNUM=994 -ACL_MANAGE=1 -MAJOR=14 -MINOR=3 -DEVLINKS=/dev/char/14:3 - -UDEV [1294230194.007602] add /devices/pci0000:00/0000:00:14.2/sound/card0/mixer (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/mixer -SUBSYSTEM=sound -DEVNAME=/dev/mixer -SEQNUM=996 -ACL_MANAGE=1 -MAJOR=14 -MINOR=0 -DEVLINKS=/dev/char/14:0 - -UDEV [1294230194.007853] add /devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/pcmC0D0p -SUBSYSTEM=sound -DEVNAME=/dev/snd/pcmC0D0p -SEQNUM=998 -ACL_MANAGE=1 -MAJOR=116 -MINOR=3 -DEVLINKS=/dev/char/116:3 - -UDEV [1294230194.008744] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 (scsi_device) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_device/1:0:0:0 -SUBSYSTEM=scsi_device -SEQNUM=934 - -UDEV [1294230194.009360] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 (bsg) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/bsg/1:0:0:0 -SUBSYSTEM=bsg -DEVNAME=/dev/bsg/1:0:0:0 -SEQNUM=933 -MAJOR=253 -MINOR=1 -DEVLINKS=/dev/char/253:1 - -UDEV [1294230194.009631] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 (scsi_generic) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/scsi_generic/sg1 -SUBSYSTEM=scsi_generic -DEVNAME=/dev/sg1 -SEQNUM=935 -MAJOR=21 -MINOR=1 -DEVLINKS=/dev/char/21:1 - -KERNEL[1294230194.011878] add /devices/pnp0/00:08 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:08 -SUBSYSTEM=pnp -DRIVER=serial -SEQNUM=1032 - -KERNEL[1294230194.012718] add /devices/pnp0/00:08/tty/ttyS0 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:08/tty/ttyS0 -SUBSYSTEM=tty -DEVNAME=ttyS0 -SEQNUM=1033 -MAJOR=4 -MINOR=64 - -UDEV [1294230194.012918] add /devices/pnp0/00:08 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:08 -SUBSYSTEM=pnp -DRIVER=serial -SEQNUM=1032 - -KERNEL[1294230194.014153] add /devices/pnp0/00:09 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:09 -SUBSYSTEM=pnp -SEQNUM=1034 - -KERNEL[1294230194.014273] add /devices/pnp0/00:0a (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0a -SUBSYSTEM=pnp -SEQNUM=1035 - -KERNEL[1294230194.014359] add /devices/pnp0/00:0b (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0b -SUBSYSTEM=pnp -SEQNUM=1036 - -KERNEL[1294230194.014441] add /devices/pnp0/00:0c (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0c -SUBSYSTEM=pnp -DRIVER=system -SEQNUM=1037 - -UDEV [1294230194.014702] add /devices/pnp0/00:0c (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0c -SUBSYSTEM=pnp -DRIVER=system -SEQNUM=1037 - -UDEV [1294230194.014854] add /devices/pnp0/00:09 (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:09 -SUBSYSTEM=pnp -SEQNUM=1034 - -UDEV [1294230194.014996] add /devices/pnp0/00:0a (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0a -SUBSYSTEM=pnp -SEQNUM=1035 - -UDEV [1294230194.015309] add /devices/pnp0/00:08/tty/ttyS0 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:08/tty/ttyS0 -SUBSYSTEM=tty -DEVNAME=/dev/ttyS0 -SEQNUM=1033 -MAJOR=4 -MINOR=64 -DEVLINKS=/dev/char/4:64 - -UDEV [1294230194.015417] add /devices/pnp0/00:0b (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0b -SUBSYSTEM=pnp -SEQNUM=1036 - -KERNEL[1294230194.016126] add /devices/pnp0/00:0d (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0d -SUBSYSTEM=pnp -DRIVER=system -SEQNUM=1038 - -KERNEL[1294230194.016942] add /devices/pnp0/00:0e (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0e -SUBSYSTEM=pnp -DRIVER=system -SEQNUM=1039 - -KERNEL[1294230194.017032] add /devices/virtual/bdi/0:17 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/0:17 -SUBSYSTEM=bdi -SEQNUM=1040 - -KERNEL[1294230194.017112] add /devices/virtual/bdi/0:21 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/0:21 -SUBSYSTEM=bdi -SEQNUM=1041 - -KERNEL[1294230194.017191] add /devices/virtual/bdi/11:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/11:0 -SUBSYSTEM=bdi -SEQNUM=1042 - -KERNEL[1294230194.017271] add /devices/virtual/bdi/1:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:0 -SUBSYSTEM=bdi -SEQNUM=1043 - -KERNEL[1294230194.017353] add /devices/virtual/bdi/1:1 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:1 -SUBSYSTEM=bdi -SEQNUM=1044 - -KERNEL[1294230194.017431] add /devices/virtual/bdi/1:10 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:10 -SUBSYSTEM=bdi -SEQNUM=1045 - -KERNEL[1294230194.017511] add /devices/virtual/bdi/1:11 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:11 -SUBSYSTEM=bdi -SEQNUM=1046 - -UDEV [1294230194.017666] add /devices/virtual/bdi/11:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/11:0 -SUBSYSTEM=bdi -SEQNUM=1042 - -UDEV [1294230194.017801] add /devices/virtual/bdi/1:10 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:10 -SUBSYSTEM=bdi -SEQNUM=1045 - -UDEV [1294230194.017923] add /devices/virtual/bdi/1:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:0 -SUBSYSTEM=bdi -SEQNUM=1043 - -UDEV [1294230194.018043] add /devices/virtual/bdi/1:1 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:1 -SUBSYSTEM=bdi -SEQNUM=1044 - -UDEV [1294230194.018199] add /devices/pnp0/00:0e (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0e -SUBSYSTEM=pnp -DRIVER=system -SEQNUM=1039 - -UDEV [1294230194.018327] add /devices/virtual/bdi/0:17 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/0:17 -SUBSYSTEM=bdi -SEQNUM=1040 - -UDEV [1294230194.018448] add /devices/virtual/bdi/0:21 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/0:21 -SUBSYSTEM=bdi -SEQNUM=1041 - -UDEV [1294230194.018655] add /devices/pnp0/00:0d (pnp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pnp0/00:0d -SUBSYSTEM=pnp -DRIVER=system -SEQNUM=1038 - -KERNEL[1294230194.018872] add /devices/virtual/bdi/1:12 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:12 -SUBSYSTEM=bdi -SEQNUM=1047 - -UDEV [1294230194.019084] add /devices/virtual/bdi/1:12 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:12 -SUBSYSTEM=bdi -SEQNUM=1047 - -UDEV [1294230194.019209] add /devices/virtual/bdi/1:11 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:11 -SUBSYSTEM=bdi -SEQNUM=1046 - -KERNEL[1294230194.019403] add /devices/virtual/bdi/1:13 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:13 -SUBSYSTEM=bdi -SEQNUM=1048 - -KERNEL[1294230194.019525] add /devices/virtual/bdi/1:14 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:14 -SUBSYSTEM=bdi -SEQNUM=1049 - -KERNEL[1294230194.019606] add /devices/virtual/bdi/1:15 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:15 -SUBSYSTEM=bdi -SEQNUM=1050 - -KERNEL[1294230194.019686] add /devices/virtual/bdi/1:2 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:2 -SUBSYSTEM=bdi -SEQNUM=1051 - -UDEV [1294230194.019863] add /devices/virtual/bdi/1:15 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:15 -SUBSYSTEM=bdi -SEQNUM=1050 - -UDEV [1294230194.019991] add /devices/virtual/bdi/1:2 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:2 -SUBSYSTEM=bdi -SEQNUM=1051 - -UDEV [1294230194.020114] add /devices/virtual/bdi/1:14 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:14 -SUBSYSTEM=bdi -SEQNUM=1049 - -UDEV [1294230194.020239] add /devices/virtual/bdi/1:13 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:13 -SUBSYSTEM=bdi -SEQNUM=1048 - -KERNEL[1294230194.020685] add /devices/virtual/bdi/1:3 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:3 -SUBSYSTEM=bdi -SEQNUM=1052 - -KERNEL[1294230194.020972] add /devices/virtual/bdi/1:4 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:4 -SUBSYSTEM=bdi -SEQNUM=1053 - -UDEV [1294230194.021193] add /devices/virtual/bdi/1:4 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:4 -SUBSYSTEM=bdi -SEQNUM=1053 - -UDEV [1294230194.021321] add /devices/virtual/bdi/1:3 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:3 -SUBSYSTEM=bdi -SEQNUM=1052 - -KERNEL[1294230194.021571] add /devices/virtual/bdi/1:5 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:5 -SUBSYSTEM=bdi -SEQNUM=1054 - -UDEV [1294230194.021799] add /devices/virtual/bdi/1:5 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:5 -SUBSYSTEM=bdi -SEQNUM=1054 - -KERNEL[1294230194.022489] add /devices/virtual/bdi/1:6 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:6 -SUBSYSTEM=bdi -SEQNUM=1055 - -UDEV [1294230194.022833] add /devices/virtual/bdi/1:6 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:6 -SUBSYSTEM=bdi -SEQNUM=1055 - -KERNEL[1294230194.023628] add /devices/virtual/bdi/1:7 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:7 -SUBSYSTEM=bdi -SEQNUM=1056 - -KERNEL[1294230194.023761] add /devices/virtual/bdi/1:8 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:8 -SUBSYSTEM=bdi -SEQNUM=1057 - -UDEV [1294230194.023968] add /devices/virtual/bdi/1:8 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:8 -SUBSYSTEM=bdi -SEQNUM=1057 - -UDEV [1294230194.024098] add /devices/virtual/bdi/1:7 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:7 -SUBSYSTEM=bdi -SEQNUM=1056 - -KERNEL[1294230194.024316] add /devices/virtual/bdi/1:9 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:9 -SUBSYSTEM=bdi -SEQNUM=1058 - -KERNEL[1294230194.024588] add /devices/virtual/bdi/250:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/250:0 -SUBSYSTEM=bdi -SEQNUM=1059 - -UDEV [1294230194.024800] add /devices/virtual/bdi/250:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/250:0 -SUBSYSTEM=bdi -SEQNUM=1059 - -UDEV [1294230194.024931] add /devices/virtual/bdi/1:9 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/1:9 -SUBSYSTEM=bdi -SEQNUM=1058 - -KERNEL[1294230194.027129] add /devices/virtual/bdi/7:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:0 -SUBSYSTEM=bdi -SEQNUM=1060 - -KERNEL[1294230194.027508] add /devices/virtual/bdi/7:1 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:1 -SUBSYSTEM=bdi -SEQNUM=1061 - -UDEV [1294230194.028074] add /devices/virtual/bdi/7:1 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:1 -SUBSYSTEM=bdi -SEQNUM=1061 - -UDEV [1294230194.028498] add /devices/virtual/bdi/7:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:0 -SUBSYSTEM=bdi -SEQNUM=1060 - -KERNEL[1294230194.029493] add /devices/virtual/bdi/7:2 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:2 -SUBSYSTEM=bdi -SEQNUM=1062 - -KERNEL[1294230194.029633] add /devices/virtual/bdi/7:3 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:3 -SUBSYSTEM=bdi -SEQNUM=1063 - -UDEV [1294230194.030097] add /devices/virtual/bdi/7:3 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:3 -SUBSYSTEM=bdi -SEQNUM=1063 - -UDEV [1294230194.030292] add /devices/virtual/bdi/7:2 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:2 -SUBSYSTEM=bdi -SEQNUM=1062 - -KERNEL[1294230194.030969] add /devices/virtual/bdi/7:4 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:4 -SUBSYSTEM=bdi -SEQNUM=1064 - -KERNEL[1294230194.031103] add /devices/virtual/bdi/7:5 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:5 -SUBSYSTEM=bdi -SEQNUM=1065 - -UDEV [1294230194.031312] add /devices/virtual/bdi/7:5 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:5 -SUBSYSTEM=bdi -SEQNUM=1065 - -UDEV [1294230194.031439] add /devices/virtual/bdi/7:4 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:4 -SUBSYSTEM=bdi -SEQNUM=1064 - -KERNEL[1294230194.032231] add /devices/virtual/bdi/7:6 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:6 -SUBSYSTEM=bdi -SEQNUM=1066 - -UDEV [1294230194.032566] add /devices/virtual/bdi/7:6 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:6 -SUBSYSTEM=bdi -SEQNUM=1066 - -UDEV [1294230194.034933] add /devices/pci0000:00/0000:00:14.1 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1 -SUBSYSTEM=pci -DRIVER=pata_atiixp -PCI_CLASS=1018F -PCI_ID=1002:438C -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.1 -MODALIAS=pci:v00001002d0000438Csv0000103Csd0000280Abc01sc01i8f -SEQNUM=984 -ID_VENDOR_FROM_DATABASE=ATI Technologies Inc -ID_MODEL_FROM_DATABASE=SB600 IDE - -UDEV [1294230194.035287] add /devices/pci0000:00/0000:00:14.1/host5 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host5 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=987 - -UDEV [1294230194.035301] add /devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host5/scsi_host/host5 -SUBSYSTEM=scsi_host -SEQNUM=988 - -UDEV [1294230194.035643] add /devices/pci0000:00/0000:00:14.1/host4 (scsi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host4 -SUBSYSTEM=scsi -DEVTYPE=scsi_host -SEQNUM=985 - -UDEV [1294230194.035657] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0b -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=883 - -UDEV [1294230194.035668] add /devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 (scsi_host) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.1/host4/scsi_host/host4 -SUBSYSTEM=scsi_host -SEQNUM=986 - -KERNEL[1294230194.036243] add /devices/virtual/bdi/7:7 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:7 -SUBSYSTEM=bdi -SEQNUM=1067 - -UDEV [1294230194.036259] add /devices/virtual/bdi/default (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/default -SUBSYSTEM=bdi -SEQNUM=1069 - -KERNEL[1294230194.036271] add /devices/virtual/bdi/8:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/8:0 -SUBSYSTEM=bdi -SEQNUM=1068 - -KERNEL[1294230194.036282] add /devices/virtual/bdi/default (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/default -SUBSYSTEM=bdi -SEQNUM=1069 - -KERNEL[1294230194.036312] add /devices/virtual/block/loop0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop0 -SUBSYSTEM=block -DEVNAME=loop0 -DEVTYPE=disk -SEQNUM=1070 -MAJOR=7 -MINOR=0 - -KERNEL[1294230194.036327] add /devices/virtual/block/loop1 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop1 -SUBSYSTEM=block -DEVNAME=loop1 -DEVTYPE=disk -SEQNUM=1071 -MAJOR=7 -MINOR=1 - -KERNEL[1294230194.036342] add /devices/virtual/block/loop2 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop2 -SUBSYSTEM=block -DEVNAME=loop2 -DEVTYPE=disk -SEQNUM=1072 -MAJOR=7 -MINOR=2 - -KERNEL[1294230194.036356] add /devices/virtual/block/loop3 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop3 -SUBSYSTEM=block -DEVNAME=loop3 -DEVTYPE=disk -SEQNUM=1073 -MAJOR=7 -MINOR=3 - -KERNEL[1294230194.036521] add /devices/virtual/block/loop4 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop4 -SUBSYSTEM=block -DEVNAME=loop4 -DEVTYPE=disk -SEQNUM=1074 -MAJOR=7 -MINOR=4 - -KERNEL[1294230194.036714] add /module/drm (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/drm -SUBSYSTEM=module -SEQNUM=1075 - -UDEV [1294230194.036906] add /module/drm (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/drm -SUBSYSTEM=module -SEQNUM=1075 - -UDEV [1294230194.039375] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.1 -SUBSYSTEM=usb -DEVTYPE=usb_interface -PRODUCT=3f0/1024/535 -TYPE=0/0/0 -INTERFACE=11/0/0 -MODALIAS=usb:v03F0p1024d0535dc00dsc00dp00ic0Bisc00ip00 -SEQNUM=949 - -KERNEL[1294230194.039708] add /devices/virtual/block/loop5 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop5 -SUBSYSTEM=block -DEVNAME=loop5 -DEVTYPE=disk -SEQNUM=1076 -MAJOR=7 -MINOR=5 - -KERNEL[1294230194.040460] add /class/drm (class) -UDEV_LOG=3 -ACTION=add -DEVPATH=/class/drm -SUBSYSTEM=class -SEQNUM=1077 - -UDEV [1294230194.040693] add /class/drm (class) -UDEV_LOG=3 -ACTION=add -DEVPATH=/class/drm -SUBSYSTEM=class -SEQNUM=1077 - -KERNEL[1294230194.042887] add /devices/virtual/block/loop6 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop6 -SUBSYSTEM=block -DEVNAME=loop6 -DEVTYPE=disk -SEQNUM=1078 -MAJOR=7 -MINOR=6 - -KERNEL[1294230194.043510] add /devices/virtual/block/loop7 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop7 -SUBSYSTEM=block -DEVNAME=loop7 -DEVTYPE=disk -SEQNUM=1079 -MAJOR=7 -MINOR=7 - -UDEV [1294230194.043599] add /devices/virtual/bdi/8:0 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/8:0 -SUBSYSTEM=bdi -SEQNUM=1068 - -KERNEL[1294230194.044228] add /devices/virtual/block/ram0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram0 -SUBSYSTEM=block -DEVNAME=ram0 -DEVTYPE=disk -SEQNUM=1080 -MAJOR=1 -MINOR=0 - -UDEV [1294230194.044245] add /devices/platform/eisa.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/eisa.0 -SUBSYSTEM=platform -MODALIAS=platform:eisa -SEQNUM=1011 - -KERNEL[1294230194.044258] add /devices/virtual/block/ram1 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram1 -SUBSYSTEM=block -DEVNAME=ram1 -DEVTYPE=disk -SEQNUM=1081 -MAJOR=1 -MINOR=1 - -KERNEL[1294230194.044663] add /devices/virtual/block/ram10 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram10 -SUBSYSTEM=block -DEVNAME=ram10 -DEVTYPE=disk -SEQNUM=1082 -MAJOR=1 -MINOR=10 - -KERNEL[1294230194.044681] add /devices/virtual/block/ram11 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram11 -SUBSYSTEM=block -DEVNAME=ram11 -DEVTYPE=disk -SEQNUM=1083 -MAJOR=1 -MINOR=11 - -KERNEL[1294230194.045313] add /devices/virtual/block/ram12 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram12 -SUBSYSTEM=block -DEVNAME=ram12 -DEVTYPE=disk -SEQNUM=1084 -MAJOR=1 -MINOR=12 - -KERNEL[1294230194.045332] add /devices/virtual/block/ram13 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram13 -SUBSYSTEM=block -DEVNAME=ram13 -DEVTYPE=disk -SEQNUM=1085 -MAJOR=1 -MINOR=13 - -KERNEL[1294230194.045845] add /devices/virtual/block/ram14 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram14 -SUBSYSTEM=block -DEVNAME=ram14 -DEVTYPE=disk -SEQNUM=1086 -MAJOR=1 -MINOR=14 - -KERNEL[1294230194.045879] add /devices/virtual/block/ram15 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram15 -SUBSYSTEM=block -DEVNAME=ram15 -DEVTYPE=disk -SEQNUM=1087 -MAJOR=1 -MINOR=15 - -KERNEL[1294230194.046421] add /devices/virtual/block/ram2 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram2 -SUBSYSTEM=block -DEVNAME=ram2 -DEVTYPE=disk -SEQNUM=1088 -MAJOR=1 -MINOR=2 - -KERNEL[1294230194.046441] add /devices/virtual/block/ram3 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram3 -SUBSYSTEM=block -DEVNAME=ram3 -DEVTYPE=disk -SEQNUM=1089 -MAJOR=1 -MINOR=3 - -KERNEL[1294230194.046999] add /devices/virtual/block/ram4 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram4 -SUBSYSTEM=block -DEVNAME=ram4 -DEVTYPE=disk -SEQNUM=1090 -MAJOR=1 -MINOR=4 - -KERNEL[1294230194.047019] add /devices/virtual/block/ram5 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram5 -SUBSYSTEM=block -DEVNAME=ram5 -DEVTYPE=disk -SEQNUM=1091 -MAJOR=1 -MINOR=5 - -KERNEL[1294230194.054567] add /devices/virtual/block/ram6 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram6 -SUBSYSTEM=block -DEVNAME=ram6 -DEVTYPE=disk -SEQNUM=1092 -MAJOR=1 -MINOR=6 - -KERNEL[1294230194.054591] add /devices/virtual/block/ram7 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram7 -SUBSYSTEM=block -DEVNAME=ram7 -DEVTYPE=disk -SEQNUM=1093 -MAJOR=1 -MINOR=7 - -KERNEL[1294230194.054607] add /devices/virtual/block/ram8 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram8 -SUBSYSTEM=block -DEVNAME=ram8 -DEVTYPE=disk -SEQNUM=1094 -MAJOR=1 -MINOR=8 - -KERNEL[1294230194.054622] add /devices/virtual/block/ram9 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram9 -SUBSYSTEM=block -DEVNAME=ram9 -DEVTYPE=disk -SEQNUM=1095 -MAJOR=1 -MINOR=9 - -KERNEL[1294230194.054638] add /devices/virtual/block/ramzswap0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ramzswap0 -SUBSYSTEM=block -DEVNAME=ramzswap0 -DEVTYPE=disk -SEQNUM=1096 -MAJOR=250 -MINOR=0 - -KERNEL[1294230194.054652] add /devices/virtual/dmi/id (dmi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/dmi/id -SUBSYSTEM=dmi -MODALIAS=dmi:bvnHewlett-Packard:bvr786E3v02.22:bd04/18/2007:svnHewlett-Packard:pnHPCompaqdc5750Microtower:pvr:rvnHewlett-Packard:rn0A64h:rvr:cvnHewlett-Packard:ct6:cvr: -SEQNUM=1097 - -KERNEL[1294230194.054665] add /devices/virtual/graphics/fbcon (graphics) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/graphics/fbcon -SUBSYSTEM=graphics -SEQNUM=1098 - -KERNEL[1294230194.054681] add /devices/virtual/input/input2 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/input2 -SUBSYSTEM=input -PRODUCT=17/1/1/100 -NAME="Macintosh mouse button emulation" -EV==7 -KEY==70000 0 0 0 0 0 0 0 0 -REL==3 -MODALIAS=input:b0017v0001p0001e0100-e0,1,2,k110,111,112,r0,1,amlsfw -SEQNUM=1099 - -KERNEL[1294230194.054697] add /devices/virtual/input/input2/event2 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/input2/event2 -SUBSYSTEM=input -DEVNAME=input/event2 -SEQNUM=1100 -MAJOR=13 -MINOR=66 - -KERNEL[1294230194.054712] add /devices/virtual/input/input2/mouse0 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/input2/mouse0 -SUBSYSTEM=input -DEVNAME=input/mouse0 -SEQNUM=1101 -MAJOR=13 -MINOR=32 - -KERNEL[1294230194.054726] add /devices/virtual/input/mice (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/mice -SUBSYSTEM=input -DEVNAME=input/mice -SEQNUM=1102 -MAJOR=13 -MINOR=63 - -KERNEL[1294230194.054741] add /devices/virtual/mem/full (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/full -SUBSYSTEM=mem -DEVNAME=full -DEVMODE=0666 -SEQNUM=1103 -MAJOR=1 -MINOR=7 - -KERNEL[1294230194.054757] add /devices/virtual/mem/kmsg (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/kmsg -SUBSYSTEM=mem -DEVNAME=kmsg -SEQNUM=1104 -MAJOR=1 -MINOR=11 - -KERNEL[1294230194.054771] add /devices/virtual/mem/mem (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/mem -SUBSYSTEM=mem -DEVNAME=mem -SEQNUM=1105 -MAJOR=1 -MINOR=1 - -KERNEL[1294230194.054799] add /devices/virtual/mem/null (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/null -SUBSYSTEM=mem -DEVNAME=null -DEVMODE=0666 -SEQNUM=1106 -MAJOR=1 -MINOR=3 - -KERNEL[1294230194.054814] add /devices/virtual/mem/oldmem (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/oldmem -SUBSYSTEM=mem -DEVNAME=oldmem -SEQNUM=1107 -MAJOR=1 -MINOR=12 - -KERNEL[1294230194.054829] add /devices/virtual/mem/port (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/port -SUBSYSTEM=mem -DEVNAME=port -SEQNUM=1108 -MAJOR=1 -MINOR=4 - -KERNEL[1294230194.054846] add /devices/virtual/mem/random (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/random -SUBSYSTEM=mem -DEVNAME=random -DEVMODE=0666 -SEQNUM=1109 -MAJOR=1 -MINOR=8 - -KERNEL[1294230194.054861] add /devices/virtual/mem/urandom (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/urandom -SUBSYSTEM=mem -DEVNAME=urandom -DEVMODE=0666 -SEQNUM=1110 -MAJOR=1 -MINOR=9 - -KERNEL[1294230194.054877] add /devices/virtual/mem/zero (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/zero -SUBSYSTEM=mem -DEVNAME=zero -DEVMODE=0666 -SEQNUM=1111 -MAJOR=1 -MINOR=5 - -KERNEL[1294230194.054893] add /devices/virtual/misc/cpu_dma_latency (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/cpu_dma_latency -SUBSYSTEM=misc -DEVNAME=cpu_dma_latency -SEQNUM=1112 -MAJOR=10 -MINOR=58 - -KERNEL[1294230194.054907] add /devices/virtual/misc/device-mapper (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/device-mapper -SUBSYSTEM=misc -DEVNAME=mapper/control -SEQNUM=1113 -MAJOR=10 -MINOR=59 - -KERNEL[1294230194.054922] add /devices/virtual/misc/ecryptfs (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/ecryptfs -SUBSYSTEM=misc -DEVNAME=ecryptfs -SEQNUM=1114 -MAJOR=10 -MINOR=61 - -KERNEL[1294230194.054937] add /devices/virtual/misc/fuse (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/fuse -SUBSYSTEM=misc -DEVNAME=fuse -SEQNUM=1115 -MAJOR=10 -MINOR=229 - -KERNEL[1294230194.054951] add /devices/virtual/misc/hpet (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/hpet -SUBSYSTEM=misc -DEVNAME=hpet -SEQNUM=1116 -MAJOR=10 -MINOR=228 - -KERNEL[1294230194.054966] add /devices/virtual/misc/mcelog (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/mcelog -SUBSYSTEM=misc -DEVNAME=mcelog -SEQNUM=1117 -MAJOR=10 -MINOR=227 - -KERNEL[1294230194.054981] add /devices/virtual/misc/network_latency (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/network_latency -SUBSYSTEM=misc -DEVNAME=network_latency -SEQNUM=1118 -MAJOR=10 -MINOR=57 - -KERNEL[1294230194.054995] add /devices/virtual/misc/network_throughput (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/network_throughput -SUBSYSTEM=misc -DEVNAME=network_throughput -SEQNUM=1119 -MAJOR=10 -MINOR=56 - -KERNEL[1294230194.055010] add /devices/virtual/misc/pktcdvd (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/pktcdvd -SUBSYSTEM=misc -DEVNAME=pktcdvd/control -SEQNUM=1120 -MAJOR=10 -MINOR=60 - -KERNEL[1294230194.055025] add /devices/virtual/misc/psaux (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/psaux -SUBSYSTEM=misc -DEVNAME=psaux -SEQNUM=1121 -MAJOR=10 -MINOR=1 - -KERNEL[1294230194.055039] add /devices/virtual/misc/rfkill (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/rfkill -SUBSYSTEM=misc -DEVNAME=rfkill -SEQNUM=1122 -MAJOR=10 -MINOR=62 - -KERNEL[1294230194.055053] add /devices/virtual/misc/snapshot (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/snapshot -SUBSYSTEM=misc -DEVNAME=snapshot -SEQNUM=1123 -MAJOR=10 -MINOR=231 - -KERNEL[1294230194.055068] add /devices/virtual/misc/tun (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/tun -SUBSYSTEM=misc -DEVNAME=net/tun -SEQNUM=1124 -MAJOR=10 -MINOR=200 - -KERNEL[1294230194.055083] add /devices/virtual/misc/vga_arbiter (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vga_arbiter -SUBSYSTEM=misc -DEVNAME=vga_arbiter -SEQNUM=1125 -MAJOR=10 -MINOR=63 - -KERNEL[1294230194.055097] add /devices/virtual/net/br0 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/br0 -SUBSYSTEM=net -DEVTYPE=bridge -INTERFACE=br0 -IFINDEX=3 -SEQNUM=1126 - -KERNEL[1294230194.055119] add /devices/virtual/net/lo (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/lo -SUBSYSTEM=net -INTERFACE=lo -IFINDEX=1 -SEQNUM=1127 - -KERNEL[1294230194.055134] add /devices/virtual/ppp/ppp (ppp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/ppp/ppp -SUBSYSTEM=ppp -DEVNAME=ppp -SEQNUM=1128 -MAJOR=108 -MINOR=0 - -KERNEL[1294230194.055148] add /devices/virtual/sound/timer (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/sound/timer -SUBSYSTEM=sound -DEVNAME=snd/timer -SEQNUM=1129 -MAJOR=116 -MINOR=2 - -KERNEL[1294230194.055161] add /devices/virtual/thermal/cooling_device0 (thermal) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/thermal/cooling_device0 -SUBSYSTEM=thermal -SEQNUM=1130 - -KERNEL[1294230194.055173] add /devices/virtual/thermal/cooling_device1 (thermal) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/thermal/cooling_device1 -SUBSYSTEM=thermal -SEQNUM=1131 - -KERNEL[1294230194.055186] add /devices/virtual/tty/console (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/console -SUBSYSTEM=tty -DEVNAME=console -SEQNUM=1132 -MAJOR=5 -MINOR=1 - -KERNEL[1294230194.055202] add /devices/virtual/tty/ptmx (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/ptmx -SUBSYSTEM=tty -DEVNAME=ptmx -DEVMODE=0666 -SEQNUM=1133 -MAJOR=5 -MINOR=2 - -KERNEL[1294230194.055217] add /devices/virtual/tty/tty (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty -SUBSYSTEM=tty -DEVNAME=tty -DEVMODE=0666 -SEQNUM=1134 -MAJOR=5 -MINOR=0 - -KERNEL[1294230194.055232] add /devices/virtual/tty/tty0 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty0 -SUBSYSTEM=tty -DEVNAME=tty0 -SEQNUM=1135 -MAJOR=4 -MINOR=0 - -KERNEL[1294230194.055246] add /devices/virtual/tty/tty1 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty1 -SUBSYSTEM=tty -DEVNAME=tty1 -SEQNUM=1136 -MAJOR=4 -MINOR=1 - -KERNEL[1294230194.055261] add /devices/virtual/tty/tty10 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty10 -SUBSYSTEM=tty -DEVNAME=tty10 -SEQNUM=1137 -MAJOR=4 -MINOR=10 - -KERNEL[1294230194.055275] add /devices/virtual/tty/tty11 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty11 -SUBSYSTEM=tty -DEVNAME=tty11 -SEQNUM=1138 -MAJOR=4 -MINOR=11 - -KERNEL[1294230194.055290] add /devices/virtual/tty/tty12 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty12 -SUBSYSTEM=tty -DEVNAME=tty12 -SEQNUM=1139 -MAJOR=4 -MINOR=12 - -KERNEL[1294230194.055304] add /devices/virtual/tty/tty13 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty13 -SUBSYSTEM=tty -DEVNAME=tty13 -SEQNUM=1140 -MAJOR=4 -MINOR=13 - -KERNEL[1294230194.055318] add /devices/virtual/tty/tty14 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty14 -SUBSYSTEM=tty -DEVNAME=tty14 -SEQNUM=1141 -MAJOR=4 -MINOR=14 - -KERNEL[1294230194.055333] add /devices/virtual/tty/tty15 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty15 -SUBSYSTEM=tty -DEVNAME=tty15 -SEQNUM=1142 -MAJOR=4 -MINOR=15 - -KERNEL[1294230194.055347] add /devices/virtual/tty/tty16 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty16 -SUBSYSTEM=tty -DEVNAME=tty16 -SEQNUM=1143 -MAJOR=4 -MINOR=16 - -KERNEL[1294230194.055361] add /devices/virtual/tty/tty17 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty17 -SUBSYSTEM=tty -DEVNAME=tty17 -SEQNUM=1144 -MAJOR=4 -MINOR=17 - -KERNEL[1294230194.055376] add /devices/virtual/tty/tty18 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty18 -SUBSYSTEM=tty -DEVNAME=tty18 -SEQNUM=1145 -MAJOR=4 -MINOR=18 - -KERNEL[1294230194.055390] add /devices/virtual/tty/tty19 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty19 -SUBSYSTEM=tty -DEVNAME=tty19 -SEQNUM=1146 -MAJOR=4 -MINOR=19 - -KERNEL[1294230194.055404] add /devices/virtual/tty/tty2 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty2 -SUBSYSTEM=tty -DEVNAME=tty2 -SEQNUM=1147 -MAJOR=4 -MINOR=2 - -KERNEL[1294230194.055419] add /devices/virtual/tty/tty20 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty20 -SUBSYSTEM=tty -DEVNAME=tty20 -SEQNUM=1148 -MAJOR=4 -MINOR=20 - -KERNEL[1294230194.055441] add /devices/virtual/tty/tty21 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty21 -SUBSYSTEM=tty -DEVNAME=tty21 -SEQNUM=1149 -MAJOR=4 -MINOR=21 - -KERNEL[1294230194.055456] add /devices/virtual/tty/tty22 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty22 -SUBSYSTEM=tty -DEVNAME=tty22 -SEQNUM=1150 -MAJOR=4 -MINOR=22 - -KERNEL[1294230194.055470] add /devices/virtual/tty/tty23 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty23 -SUBSYSTEM=tty -DEVNAME=tty23 -SEQNUM=1151 -MAJOR=4 -MINOR=23 - -KERNEL[1294230194.055485] add /devices/virtual/tty/tty24 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty24 -SUBSYSTEM=tty -DEVNAME=tty24 -SEQNUM=1152 -MAJOR=4 -MINOR=24 - -KERNEL[1294230194.055499] add /devices/virtual/tty/tty25 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty25 -SUBSYSTEM=tty -DEVNAME=tty25 -SEQNUM=1153 -MAJOR=4 -MINOR=25 - -KERNEL[1294230194.055513] add /devices/virtual/tty/tty26 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty26 -SUBSYSTEM=tty -DEVNAME=tty26 -SEQNUM=1154 -MAJOR=4 -MINOR=26 - -KERNEL[1294230194.055528] add /devices/virtual/tty/tty27 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty27 -SUBSYSTEM=tty -DEVNAME=tty27 -SEQNUM=1155 -MAJOR=4 -MINOR=27 - -KERNEL[1294230194.055542] add /devices/virtual/tty/tty28 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty28 -SUBSYSTEM=tty -DEVNAME=tty28 -SEQNUM=1156 -MAJOR=4 -MINOR=28 - -KERNEL[1294230194.055556] add /devices/virtual/tty/tty29 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty29 -SUBSYSTEM=tty -DEVNAME=tty29 -SEQNUM=1157 -MAJOR=4 -MINOR=29 - -KERNEL[1294230194.055571] add /devices/virtual/tty/tty3 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty3 -SUBSYSTEM=tty -DEVNAME=tty3 -SEQNUM=1158 -MAJOR=4 -MINOR=3 - -KERNEL[1294230194.055585] add /devices/virtual/tty/tty30 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty30 -SUBSYSTEM=tty -DEVNAME=tty30 -SEQNUM=1159 -MAJOR=4 -MINOR=30 - -KERNEL[1294230194.055599] add /devices/virtual/tty/tty31 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty31 -SUBSYSTEM=tty -DEVNAME=tty31 -SEQNUM=1160 -MAJOR=4 -MINOR=31 - -KERNEL[1294230194.055614] add /devices/virtual/tty/tty32 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty32 -SUBSYSTEM=tty -DEVNAME=tty32 -SEQNUM=1161 -MAJOR=4 -MINOR=32 - -KERNEL[1294230194.055628] add /devices/virtual/tty/tty33 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty33 -SUBSYSTEM=tty -DEVNAME=tty33 -SEQNUM=1162 -MAJOR=4 -MINOR=33 - -KERNEL[1294230194.055642] add /devices/virtual/tty/tty34 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty34 -SUBSYSTEM=tty -DEVNAME=tty34 -SEQNUM=1163 -MAJOR=4 -MINOR=34 - -KERNEL[1294230194.055657] add /devices/virtual/tty/tty35 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty35 -SUBSYSTEM=tty -DEVNAME=tty35 -SEQNUM=1164 -MAJOR=4 -MINOR=35 - -KERNEL[1294230194.055671] add /devices/virtual/tty/tty36 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty36 -SUBSYSTEM=tty -DEVNAME=tty36 -SEQNUM=1165 -MAJOR=4 -MINOR=36 - -KERNEL[1294230194.055686] add /devices/virtual/tty/tty37 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty37 -SUBSYSTEM=tty -DEVNAME=tty37 -SEQNUM=1166 -MAJOR=4 -MINOR=37 - -KERNEL[1294230194.055700] add /devices/virtual/tty/tty38 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty38 -SUBSYSTEM=tty -DEVNAME=tty38 -SEQNUM=1167 -MAJOR=4 -MINOR=38 - -KERNEL[1294230194.055714] add /devices/virtual/tty/tty39 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty39 -SUBSYSTEM=tty -DEVNAME=tty39 -SEQNUM=1168 -MAJOR=4 -MINOR=39 - -KERNEL[1294230194.055729] add /devices/virtual/tty/tty4 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty4 -SUBSYSTEM=tty -DEVNAME=tty4 -SEQNUM=1169 -MAJOR=4 -MINOR=4 - -KERNEL[1294230194.055743] add /devices/virtual/tty/tty40 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty40 -SUBSYSTEM=tty -DEVNAME=tty40 -SEQNUM=1170 -MAJOR=4 -MINOR=40 - -KERNEL[1294230194.055766] add /devices/virtual/tty/tty41 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty41 -SUBSYSTEM=tty -DEVNAME=tty41 -SEQNUM=1171 -MAJOR=4 -MINOR=41 - -KERNEL[1294230194.055780] add /devices/virtual/tty/tty42 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty42 -SUBSYSTEM=tty -DEVNAME=tty42 -SEQNUM=1172 -MAJOR=4 -MINOR=42 - -KERNEL[1294230194.055795] add /devices/virtual/tty/tty43 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty43 -SUBSYSTEM=tty -DEVNAME=tty43 -SEQNUM=1173 -MAJOR=4 -MINOR=43 - -KERNEL[1294230194.055809] add /devices/virtual/tty/tty44 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty44 -SUBSYSTEM=tty -DEVNAME=tty44 -SEQNUM=1174 -MAJOR=4 -MINOR=44 - -KERNEL[1294230194.055823] add /devices/virtual/tty/tty45 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty45 -SUBSYSTEM=tty -DEVNAME=tty45 -SEQNUM=1175 -MAJOR=4 -MINOR=45 - -KERNEL[1294230194.055838] add /devices/virtual/tty/tty46 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty46 -SUBSYSTEM=tty -DEVNAME=tty46 -SEQNUM=1176 -MAJOR=4 -MINOR=46 - -KERNEL[1294230194.055852] add /devices/virtual/tty/tty47 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty47 -SUBSYSTEM=tty -DEVNAME=tty47 -SEQNUM=1177 -MAJOR=4 -MINOR=47 - -KERNEL[1294230194.055866] add /devices/virtual/tty/tty48 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty48 -SUBSYSTEM=tty -DEVNAME=tty48 -SEQNUM=1178 -MAJOR=4 -MINOR=48 - -KERNEL[1294230194.055881] add /devices/virtual/tty/tty49 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty49 -SUBSYSTEM=tty -DEVNAME=tty49 -SEQNUM=1179 -MAJOR=4 -MINOR=49 - -KERNEL[1294230194.055895] add /devices/virtual/tty/tty5 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty5 -SUBSYSTEM=tty -DEVNAME=tty5 -SEQNUM=1180 -MAJOR=4 -MINOR=5 - -KERNEL[1294230194.055909] add /devices/virtual/tty/tty50 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty50 -SUBSYSTEM=tty -DEVNAME=tty50 -SEQNUM=1181 -MAJOR=4 -MINOR=50 - -KERNEL[1294230194.055924] add /devices/virtual/tty/tty51 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty51 -SUBSYSTEM=tty -DEVNAME=tty51 -SEQNUM=1182 -MAJOR=4 -MINOR=51 - -KERNEL[1294230194.055939] add /devices/virtual/tty/tty52 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty52 -SUBSYSTEM=tty -DEVNAME=tty52 -SEQNUM=1183 -MAJOR=4 -MINOR=52 - -KERNEL[1294230194.055953] add /devices/virtual/tty/tty53 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty53 -SUBSYSTEM=tty -DEVNAME=tty53 -SEQNUM=1184 -MAJOR=4 -MINOR=53 - -KERNEL[1294230194.055967] add /devices/virtual/tty/tty54 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty54 -SUBSYSTEM=tty -DEVNAME=tty54 -SEQNUM=1185 -MAJOR=4 -MINOR=54 - -KERNEL[1294230194.055982] add /devices/virtual/tty/tty55 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty55 -SUBSYSTEM=tty -DEVNAME=tty55 -SEQNUM=1186 -MAJOR=4 -MINOR=55 - -KERNEL[1294230194.055996] add /devices/virtual/tty/tty56 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty56 -SUBSYSTEM=tty -DEVNAME=tty56 -SEQNUM=1187 -MAJOR=4 -MINOR=56 - -KERNEL[1294230194.056011] add /devices/virtual/tty/tty57 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty57 -SUBSYSTEM=tty -DEVNAME=tty57 -SEQNUM=1188 -MAJOR=4 -MINOR=57 - -KERNEL[1294230194.056025] add /devices/virtual/tty/tty58 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty58 -SUBSYSTEM=tty -DEVNAME=tty58 -SEQNUM=1189 -MAJOR=4 -MINOR=58 - -KERNEL[1294230194.056039] add /devices/virtual/tty/tty59 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty59 -SUBSYSTEM=tty -DEVNAME=tty59 -SEQNUM=1190 -MAJOR=4 -MINOR=59 - -KERNEL[1294230194.056053] add /devices/virtual/tty/tty6 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty6 -SUBSYSTEM=tty -DEVNAME=tty6 -SEQNUM=1191 -MAJOR=4 -MINOR=6 - -KERNEL[1294230194.056068] add /devices/virtual/tty/tty60 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty60 -SUBSYSTEM=tty -DEVNAME=tty60 -SEQNUM=1192 -MAJOR=4 -MINOR=60 - -KERNEL[1294230194.056082] add /devices/virtual/tty/tty61 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty61 -SUBSYSTEM=tty -DEVNAME=tty61 -SEQNUM=1193 -MAJOR=4 -MINOR=61 - -KERNEL[1294230194.056104] add /devices/virtual/tty/tty62 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty62 -SUBSYSTEM=tty -DEVNAME=tty62 -SEQNUM=1194 -MAJOR=4 -MINOR=62 - -KERNEL[1294230194.056119] add /devices/virtual/tty/tty63 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty63 -SUBSYSTEM=tty -DEVNAME=tty63 -SEQNUM=1195 -MAJOR=4 -MINOR=63 - -KERNEL[1294230194.056133] add /devices/virtual/tty/tty7 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty7 -SUBSYSTEM=tty -DEVNAME=tty7 -SEQNUM=1196 -MAJOR=4 -MINOR=7 - -KERNEL[1294230194.056147] add /devices/virtual/tty/tty8 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty8 -SUBSYSTEM=tty -DEVNAME=tty8 -SEQNUM=1197 -MAJOR=4 -MINOR=8 - -KERNEL[1294230194.056162] add /devices/virtual/tty/tty9 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty9 -SUBSYSTEM=tty -DEVNAME=tty9 -SEQNUM=1198 -MAJOR=4 -MINOR=9 - -KERNEL[1294230194.056176] add /devices/virtual/usbmon/usbmon0 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/usbmon/usbmon0 -SUBSYSTEM=usbmon -DEVNAME=usbmon0 -SEQNUM=1199 -MAJOR=252 -MINOR=0 - -KERNEL[1294230194.056191] add /devices/virtual/vc/vcs (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs -SUBSYSTEM=vc -DEVNAME=vcs -SEQNUM=1200 -MAJOR=7 -MINOR=0 - -KERNEL[1294230194.056205] add /devices/virtual/vc/vcs1 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs1 -SUBSYSTEM=vc -DEVNAME=vcs1 -SEQNUM=1201 -MAJOR=7 -MINOR=1 - -KERNEL[1294230194.056220] add /devices/virtual/vc/vcs10 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs10 -SUBSYSTEM=vc -DEVNAME=vcs10 -SEQNUM=1202 -MAJOR=7 -MINOR=10 - -KERNEL[1294230194.056234] add /devices/virtual/vc/vcsa (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa -SUBSYSTEM=vc -DEVNAME=vcsa -SEQNUM=1203 -MAJOR=7 -MINOR=128 - -KERNEL[1294230194.056249] add /devices/virtual/vc/vcsa1 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa1 -SUBSYSTEM=vc -DEVNAME=vcsa1 -SEQNUM=1204 -MAJOR=7 -MINOR=129 - -KERNEL[1294230194.056263] add /devices/virtual/vc/vcsa10 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa10 -SUBSYSTEM=vc -DEVNAME=vcsa10 -SEQNUM=1205 -MAJOR=7 -MINOR=138 - -KERNEL[1294230194.056276] add /devices/virtual/vtconsole/vtcon0 (vtconsole) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vtconsole/vtcon0 -SUBSYSTEM=vtconsole -SEQNUM=1206 - -KERNEL[1294230194.056287] add /devices/virtual/vtconsole/vtcon1 (vtconsole) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vtconsole/vtcon1 -SUBSYSTEM=vtconsole -SEQNUM=1207 - -UDEV [1294230194.063927] add /devices/virtual/bdi/7:7 (bdi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/bdi/7:7 -SUBSYSTEM=bdi -SEQNUM=1067 - -UDEV [1294230194.066856] add /devices/virtual/tty/tty28 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty28 -SUBSYSTEM=tty -DEVNAME=/dev/tty28 -SEQNUM=1156 -MAJOR=4 -MINOR=28 -DEVLINKS=/dev/char/4:28 - -KERNEL[1294230194.073883] add /module/drm_kms_helper (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/drm_kms_helper -SUBSYSTEM=module -SEQNUM=1208 - -UDEV [1294230194.079788] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=878 - -UDEV [1294230194.079810] add /devices/virtual/tty/tty36 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty36 -SUBSYSTEM=tty -DEVNAME=/dev/tty36 -SEQNUM=1165 -MAJOR=4 -MINOR=36 -DEVLINKS=/dev/char/4:36 - -UDEV [1294230194.079826] add /devices/virtual/tty/tty34 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty34 -SUBSYSTEM=tty -DEVNAME=/dev/tty34 -SEQNUM=1163 -MAJOR=4 -MINOR=34 -DEVLINKS=/dev/char/4:34 - -UDEV [1294230194.079841] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=875 - -UDEV [1294230194.079853] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C02: -SEQNUM=846 - -UDEV [1294230194.079886] add /devices/virtual/tty/tty27 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty27 -SUBSYSTEM=tty -DEVNAME=/dev/tty27 -SEQNUM=1155 -MAJOR=4 -MINOR=27 -DEVLINKS=/dev/char/4:27 - -UDEV [1294230194.079901] add /devices/virtual/tty/tty31 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty31 -SUBSYSTEM=tty -DEVNAME=/dev/tty31 -SEQNUM=1160 -MAJOR=4 -MINOR=31 -DEVLINKS=/dev/char/4:31 - -UDEV [1294230194.079916] add /devices/virtual/tty/tty25 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty25 -SUBSYSTEM=tty -DEVNAME=/dev/tty25 -SEQNUM=1153 -MAJOR=4 -MINOR=25 -DEVLINKS=/dev/char/4:25 - -UDEV [1294230194.079974] add /devices/virtual/tty/tty39 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty39 -SUBSYSTEM=tty -DEVNAME=/dev/tty39 -SEQNUM=1168 -MAJOR=4 -MINOR=39 -DEVLINKS=/dev/char/4:39 - -UDEV [1294230194.080017] add /devices/pci0000:00/0000:00:18.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.0 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1022:1100 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.0 -MODALIAS=pci:v00001022d00001100sv00000000sd00000000bc06sc00i00 -SEQNUM=1003 - -UDEV [1294230194.080065] add /devices/pci0000:00/0000:00:18.2 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.2 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1022:1102 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.2 -MODALIAS=pci:v00001022d00001102sv00000000sd00000000bc06sc00i00 -SEQNUM=1005 - -UDEV [1294230194.080395] add /devices/virtual/tty/tty37 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty37 -SUBSYSTEM=tty -DEVNAME=/dev/tty37 -SEQNUM=1166 -MAJOR=4 -MINOR=37 -DEVLINKS=/dev/char/4:37 - -UDEV [1294230194.080971] add /devices/virtual/tty/tty20 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty20 -SUBSYSTEM=tty -DEVNAME=/dev/tty20 -SEQNUM=1148 -MAJOR=4 -MINOR=20 -DEVLINKS=/dev/char/4:20 - -UDEV [1294230194.081403] add /devices/virtual/tty/tty22 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty22 -SUBSYSTEM=tty -DEVNAME=/dev/tty22 -SEQNUM=1150 -MAJOR=4 -MINOR=22 -DEVLINKS=/dev/char/4:22 - -UDEV [1294230194.082070] add /devices/virtual/tty/tty19 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty19 -SUBSYSTEM=tty -DEVNAME=/dev/tty19 -SEQNUM=1146 -MAJOR=4 -MINOR=19 -DEVLINKS=/dev/char/4:19 - -UDEV [1294230194.082822] add /devices/virtual/tty/tty23 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty23 -SUBSYSTEM=tty -DEVNAME=/dev/tty23 -SEQNUM=1151 -MAJOR=4 -MINOR=23 -DEVLINKS=/dev/char/4:23 - -UDEV [1294230194.083188] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=887 - -UDEV [1294230194.084059] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=873 - -UDEV [1294230194.084076] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:09 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=881 - -UDEV [1294230194.084091] add /devices/pci0000:00/0000:00:18.1 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:18.1 -SUBSYSTEM=pci -PCI_CLASS=60000 -PCI_ID=1022:1101 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:18.1 -MODALIAS=pci:v00001022d00001101sv00000000sd00000000bc06sc00i00 -SEQNUM=1004 - -UDEV [1294230194.084264] add /devices/virtual/tty/tty38 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty38 -SUBSYSTEM=tty -DEVNAME=/dev/tty38 -SEQNUM=1167 -MAJOR=4 -MINOR=38 -DEVLINKS=/dev/char/4:38 - -UDEV [1294230194.084536] add /devices/virtual/tty/tty35 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty35 -SUBSYSTEM=tty -DEVNAME=/dev/tty35 -SEQNUM=1164 -MAJOR=4 -MINOR=35 -DEVLINKS=/dev/char/4:35 - -UDEV [1294230194.085206] add /devices/virtual/tty/tty33 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty33 -SUBSYSTEM=tty -DEVNAME=/dev/tty33 -SEQNUM=1162 -MAJOR=4 -MINOR=33 -DEVLINKS=/dev/char/4:33 - -UDEV [1294230194.085557] add /devices/virtual/tty/tty32 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty32 -SUBSYSTEM=tty -DEVNAME=/dev/tty32 -SEQNUM=1161 -MAJOR=4 -MINOR=32 -DEVLINKS=/dev/char/4:32 - -UDEV [1294230194.085925] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=885 - -UDEV [1294230194.086047] add /devices/virtual/tty/tty30 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty30 -SUBSYSTEM=tty -DEVNAME=/dev/tty30 -SEQNUM=1159 -MAJOR=4 -MINOR=30 -DEVLINKS=/dev/char/4:30 - -UDEV [1294230194.086252] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0c -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=884 - -UDEV [1294230194.086407] add /devices/virtual/tty/tty29 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty29 -SUBSYSTEM=tty -DEVNAME=/dev/tty29 -SEQNUM=1157 -MAJOR=4 -MINOR=29 -DEVLINKS=/dev/char/4:29 - -UDEV [1294230194.086614] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=888 - -UDEV [1294230194.086706] add /devices/virtual/tty/tty26 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty26 -SUBSYSTEM=tty -DEVNAME=/dev/tty26 -SEQNUM=1154 -MAJOR=4 -MINOR=26 -DEVLINKS=/dev/char/4:26 - -UDEV [1294230194.087120] add /devices/virtual/tty/tty24 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty24 -SUBSYSTEM=tty -DEVNAME=/dev/tty24 -SEQNUM=1152 -MAJOR=4 -MINOR=24 -DEVLINKS=/dev/char/4:24 - -UDEV [1294230194.087818] add /devices/virtual/tty/tty21 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty21 -SUBSYSTEM=tty -DEVNAME=/dev/tty21 -SEQNUM=1149 -MAJOR=4 -MINOR=21 -DEVLINKS=/dev/char/4:21 - -UDEV [1294230194.088003] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=882 - -UDEV [1294230194.088315] add /devices/pci0000:00/0000:00:14.3 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.3 -SUBSYSTEM=pci -PCI_CLASS=60100 -PCI_ID=1002:438D -PCI_SUBSYS_ID=103C:280A -PCI_SLOT_NAME=0000:00:14.3 -MODALIAS=pci:v00001002d0000438Dsv0000103Csd0000280Abc06sc01i00 -SEQNUM=1000 - -UDEV [1294230194.088337] add /devices/virtual/tty/tty18 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty18 -SUBSYSTEM=tty -DEVNAME=/dev/tty18 -SEQNUM=1145 -MAJOR=4 -MINOR=18 -DEVLINKS=/dev/char/4:18 - -UDEV [1294230194.088609] add /devices/virtual/tty/tty16 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty16 -SUBSYSTEM=tty -DEVNAME=/dev/tty16 -SEQNUM=1143 -MAJOR=4 -MINOR=16 -DEVLINKS=/dev/char/4:16 - -UDEV [1294230194.088626] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:08 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=880 - -UDEV [1294230194.088914] add /devices/virtual/tty/tty14 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty14 -SUBSYSTEM=tty -DEVNAME=/dev/tty14 -SEQNUM=1141 -MAJOR=4 -MINOR=14 -DEVLINKS=/dev/char/4:14 - -UDEV [1294230194.089262] add /devices/virtual/tty/tty12 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty12 -SUBSYSTEM=tty -DEVNAME=/dev/tty12 -SEQNUM=1139 -MAJOR=4 -MINOR=12 -DEVLINKS=/dev/char/4:12 - -UDEV [1294230194.089718] add /devices/virtual/tty/tty10 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty10 -SUBSYSTEM=tty -DEVNAME=/dev/tty10 -SEQNUM=1137 -MAJOR=4 -MINOR=10 -DEVLINKS=/dev/char/4:10 - -UDEV [1294230194.090059] add /devices/virtual/tty/tty0 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty0 -SUBSYSTEM=tty -DEVNAME=/dev/tty0 -SEQNUM=1135 -MAJOR=4 -MINOR=0 -DEVLINKS=/dev/char/4:0 - -UDEV [1294230194.090362] add /devices/virtual/tty/ptmx (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/ptmx -SUBSYSTEM=tty -DEVNAME=/dev/ptmx -DEVMODE=0666 -SEQNUM=1133 -MAJOR=5 -MINOR=2 -DEVLINKS=/dev/char/5:2 - -UDEV [1294230194.090612] add /devices/virtual/net/lo (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/lo -SUBSYSTEM=net -INTERFACE=lo -IFINDEX=1 -SEQNUM=1127 - -UDEV [1294230194.090762] add /devices/virtual/thermal/cooling_device1 (thermal) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/thermal/cooling_device1 -SUBSYSTEM=thermal -SEQNUM=1131 - -UDEV [1294230194.091099] add /devices/virtual/misc/vga_arbiter (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vga_arbiter -SUBSYSTEM=misc -DEVNAME=/dev/vga_arbiter -SEQNUM=1125 -MAJOR=10 -MINOR=63 -DEVLINKS=/dev/char/10:63 - -UDEV [1294230194.091437] add /devices/virtual/misc/snapshot (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/snapshot -SUBSYSTEM=misc -DEVNAME=/dev/snapshot -SEQNUM=1123 -MAJOR=10 -MINOR=231 -DEVLINKS=/dev/char/10:231 - -UDEV [1294230194.091770] add /devices/virtual/misc/psaux (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/psaux -SUBSYSTEM=misc -DEVNAME=/dev/psaux -SEQNUM=1121 -MAJOR=10 -MINOR=1 -DEVLINKS=/dev/char/10:1 - -UDEV [1294230194.092040] add /devices/virtual/misc/network_throughput (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/network_throughput -SUBSYSTEM=misc -DEVNAME=/dev/network_throughput -SEQNUM=1119 -MAJOR=10 -MINOR=56 -DEVLINKS=/dev/char/10:56 - -UDEV [1294230194.092378] add /devices/virtual/misc/hpet (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/hpet -SUBSYSTEM=misc -DEVNAME=/dev/hpet -SEQNUM=1116 -MAJOR=10 -MINOR=228 -DEVLINKS=/dev/char/10:228 - -UDEV [1294230194.092738] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 -SUBSYSTEM=input -PRODUCT=19/0/1/0 -NAME="Power Button" -PHYS="PNP0C0C/button/input0" -EV==3 -KEY==100000 0 0 0 -MODALIAS=input:b0019v0000p0001e0000-e0,1,k74,ramlsfw -SEQNUM=896 - -UDEV [1294230194.092818] add /devices/virtual/misc/ecryptfs (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/ecryptfs -SUBSYSTEM=misc -DEVNAME=/dev/ecryptfs -SEQNUM=1114 -MAJOR=10 -MINOR=61 -DEVLINKS=/dev/char/10:61 - -UDEV [1294230194.093165] add /devices/virtual/misc/cpu_dma_latency (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/cpu_dma_latency -SUBSYSTEM=misc -DEVNAME=/dev/cpu_dma_latency -SEQNUM=1112 -MAJOR=10 -MINOR=58 -DEVLINKS=/dev/char/10:58 - -UDEV [1294230194.093527] add /devices/virtual/mem/urandom (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/urandom -SUBSYSTEM=mem -DEVNAME=/dev/urandom -DEVMODE=0666 -SEQNUM=1110 -MAJOR=1 -MINOR=9 -DEVLINKS=/dev/char/1:9 - -UDEV [1294230194.093871] add /devices/virtual/mem/port (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/port -SUBSYSTEM=mem -DEVNAME=/dev/port -SEQNUM=1108 -MAJOR=1 -MINOR=4 -DEVLINKS=/dev/char/1:4 - -UDEV [1294230194.093983] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=876 - -UDEV [1294230194.094259] add /devices/virtual/mem/null (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/null -SUBSYSTEM=mem -DEVNAME=/dev/null -DEVMODE=0666 -SEQNUM=1106 -MAJOR=1 -MINOR=3 -DEVLINKS=/dev/char/1:3 - -UDEV [1294230194.094311] add /devices/virtual/tty/tty17 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty17 -SUBSYSTEM=tty -DEVNAME=/dev/tty17 -SEQNUM=1144 -MAJOR=4 -MINOR=17 -DEVLINKS=/dev/char/4:17 - -UDEV [1294230194.094718] add /devices/virtual/tty/tty13 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty13 -SUBSYSTEM=tty -DEVNAME=/dev/tty13 -SEQNUM=1140 -MAJOR=4 -MINOR=13 -DEVLINKS=/dev/char/4:13 - -UDEV [1294230194.095029] add /devices/virtual/tty/tty11 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty11 -SUBSYSTEM=tty -DEVNAME=/dev/tty11 -SEQNUM=1138 -MAJOR=4 -MINOR=11 -DEVLINKS=/dev/char/4:11 - -UDEV [1294230194.095750] add /devices/virtual/mem/kmsg (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/kmsg -SUBSYSTEM=mem -DEVNAME=/dev/kmsg -SEQNUM=1104 -MAJOR=1 -MINOR=11 -DEVLINKS=/dev/char/1:11 - -UDEV [1294230194.096030] add /devices/virtual/thermal/cooling_device0 (thermal) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/thermal/cooling_device0 -SUBSYSTEM=thermal -SEQNUM=1130 - -UDEV [1294230194.101694] add /devices/virtual/tty/tty (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty -SUBSYSTEM=tty -DEVNAME=/dev/tty -DEVMODE=0666 -SEQNUM=1134 -MAJOR=5 -MINOR=0 -DEVLINKS=/dev/char/5:0 - -UDEV [1294230194.101904] add /devices/virtual/tty/tty15 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty15 -SUBSYSTEM=tty -DEVNAME=/dev/tty15 -SEQNUM=1142 -MAJOR=4 -MINOR=15 -DEVLINKS=/dev/char/4:15 - -UDEV [1294230194.103156] add /devices/virtual/tty/console (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/console -SUBSYSTEM=tty -DEVNAME=/dev/console -SEQNUM=1132 -MAJOR=5 -MINOR=1 -DEVLINKS=/dev/char/5:1 - -UDEV [1294230194.103319] add /devices/virtual/net/br0 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/br0 -SUBSYSTEM=net -DEVTYPE=bridge -INTERFACE=br0 -IFINDEX=3 -SEQNUM=1126 - -UDEV [1294230194.103588] add /devices/virtual/sound/timer (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/sound/timer -SUBSYSTEM=sound -DEVNAME=/dev/snd/timer -SEQNUM=1129 -ACL_MANAGE=1 -MAJOR=116 -MINOR=2 -DEVLINKS=/dev/char/116:2 - -UDEV [1294230194.103788] add /devices/virtual/ppp/ppp (ppp) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/ppp/ppp -SUBSYSTEM=ppp -DEVNAME=/dev/ppp -SEQNUM=1128 -MAJOR=108 -MINOR=0 -DEVLINKS=/dev/char/108:0 - -UDEV [1294230194.104328] add /devices/virtual/misc/tun (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/tun -SUBSYSTEM=misc -DEVNAME=/dev/net/tun -SEQNUM=1124 -MAJOR=10 -MINOR=200 -DEVLINKS=/dev/char/10:200 - -UDEV [1294230194.105004] add /devices/virtual/misc/rfkill (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/rfkill -SUBSYSTEM=misc -DEVNAME=/dev/rfkill -SEQNUM=1122 -ACL_MANAGE=1 -MAJOR=10 -MINOR=62 -DEVLINKS=/dev/char/10:62 - -UDEV [1294230194.105549] add /devices/virtual/misc/network_latency (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/network_latency -SUBSYSTEM=misc -DEVNAME=/dev/network_latency -SEQNUM=1118 -MAJOR=10 -MINOR=57 -DEVLINKS=/dev/char/10:57 - -UDEV [1294230194.105741] add /devices/virtual/misc/mcelog (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/mcelog -SUBSYSTEM=misc -DEVNAME=/dev/mcelog -SEQNUM=1117 -MAJOR=10 -MINOR=227 -DEVLINKS=/dev/char/10:227 - -UDEV [1294230194.105947] add /devices/virtual/misc/fuse (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/fuse -SUBSYSTEM=misc -DEVNAME=/dev/fuse -SEQNUM=1115 -MAJOR=10 -MINOR=229 -DEVLINKS=/dev/char/10:229 - -UDEV [1294230194.106017] add /devices/virtual/misc/pktcdvd (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/pktcdvd -SUBSYSTEM=misc -DEVNAME=/dev/pktcdvd/control -SEQNUM=1120 -MAJOR=10 -MINOR=60 -DEVLINKS=/dev/char/10:60 - -UDEV [1294230194.106169] add /devices/virtual/misc/device-mapper (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/device-mapper -SUBSYSTEM=misc -DEVNAME=/dev/mapper/control -SEQNUM=1113 -MAJOR=10 -MINOR=59 -DEVLINKS=/dev/char/10:59 - -UDEV [1294230194.106361] add /devices/virtual/mem/zero (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/zero -SUBSYSTEM=mem -DEVNAME=/dev/zero -DEVMODE=0666 -SEQNUM=1111 -MAJOR=1 -MINOR=5 -DEVLINKS=/dev/char/1:5 - -UDEV [1294230194.106589] add /devices/virtual/mem/random (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/random -SUBSYSTEM=mem -DEVNAME=/dev/random -DEVMODE=0666 -SEQNUM=1109 -MAJOR=1 -MINOR=8 -DEVLINKS=/dev/char/1:8 - -UDEV [1294230194.106835] add /devices/virtual/mem/oldmem (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/oldmem -SUBSYSTEM=mem -DEVNAME=/dev/oldmem -SEQNUM=1107 -MAJOR=1 -MINOR=12 -DEVLINKS=/dev/char/1:12 - -UDEV [1294230194.107033] add /devices/virtual/mem/mem (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/mem -SUBSYSTEM=mem -DEVNAME=/dev/mem -SEQNUM=1105 -MAJOR=1 -MINOR=1 -DEVLINKS=/dev/char/1:1 - -UDEV [1294230194.107254] add /devices/virtual/mem/full (mem) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/mem/full -SUBSYSTEM=mem -DEVNAME=/dev/full -DEVMODE=0666 -SEQNUM=1103 -MAJOR=1 -MINOR=7 -DEVLINKS=/dev/char/1:7 - -KERNEL[1294230194.108625] change /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 -SUBSYSTEM=sound -SEQNUM=1209 - -UDEV [1294230194.109986] add /devices/platform/vesafb.0/graphics/fb0 (graphics) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vesafb.0/graphics/fb0 -SUBSYSTEM=graphics -DEVNAME=/dev/fb0 -SEQNUM=1021 -PRIMARY_DEVICE_FOR_DISPLAY=1 -MAJOR=29 -MINOR=0 -DEVLINKS=/dev/char/29:0 - -UDEV [1294230194.110010] add /devices/pci0000:00/0000:00:14.4 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.4 -SUBSYSTEM=pci -PCI_CLASS=60401 -PCI_ID=1002:4384 -PCI_SUBSYS_ID=0000:0000 -PCI_SLOT_NAME=0000:00:14.4 -MODALIAS=pci:v00001002d00004384sv00000000sd00000000bc06sc04i01 -SEQNUM=1001 - -UDEV [1294230194.114957] add /devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 (pci_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.4/pci_bus/0000:07 -SUBSYSTEM=pci_bus -SEQNUM=1002 - -UDEV [1294230194.114992] add /devices/virtual/tty/tty41 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty41 -SUBSYSTEM=tty -DEVNAME=/dev/tty41 -SEQNUM=1171 -MAJOR=4 -MINOR=41 -DEVLINKS=/dev/char/4:41 - -UDEV [1294230194.115009] add /devices/virtual/tty/tty42 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty42 -SUBSYSTEM=tty -DEVNAME=/dev/tty42 -SEQNUM=1172 -MAJOR=4 -MINOR=42 -DEVLINKS=/dev/char/4:42 - -UDEV [1294230194.115024] add /devices/virtual/tty/tty43 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty43 -SUBSYSTEM=tty -DEVNAME=/dev/tty43 -SEQNUM=1173 -MAJOR=4 -MINOR=43 -DEVLINKS=/dev/char/4:43 - -UDEV [1294230194.115039] add /devices/virtual/tty/tty44 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty44 -SUBSYSTEM=tty -DEVNAME=/dev/tty44 -SEQNUM=1174 -MAJOR=4 -MINOR=44 -DEVLINKS=/dev/char/4:44 - -UDEV [1294230194.115053] add /devices/virtual/tty/tty45 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty45 -SUBSYSTEM=tty -DEVNAME=/dev/tty45 -SEQNUM=1175 -MAJOR=4 -MINOR=45 -DEVLINKS=/dev/char/4:45 - -UDEV [1294230194.115410] add /devices/virtual/tty/tty46 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty46 -SUBSYSTEM=tty -DEVNAME=/dev/tty46 -SEQNUM=1176 -MAJOR=4 -MINOR=46 -DEVLINKS=/dev/char/4:46 - -UDEV [1294230194.115632] add /devices/virtual/tty/tty47 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty47 -SUBSYSTEM=tty -DEVNAME=/dev/tty47 -SEQNUM=1177 -MAJOR=4 -MINOR=47 -DEVLINKS=/dev/char/4:47 - -UDEV [1294230194.115834] add /module/drm_kms_helper (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/drm_kms_helper -SUBSYSTEM=module -SEQNUM=1208 - -UDEV [1294230194.116915] add /devices/virtual/tty/tty48 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty48 -SUBSYSTEM=tty -DEVNAME=/dev/tty48 -SEQNUM=1178 -MAJOR=4 -MINOR=48 -DEVLINKS=/dev/char/4:48 - -UDEV [1294230194.117547] add /devices/virtual/tty/tty49 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty49 -SUBSYSTEM=tty -DEVNAME=/dev/tty49 -SEQNUM=1179 -MAJOR=4 -MINOR=49 -DEVLINKS=/dev/char/4:49 - -UDEV [1294230194.118703] add /devices/virtual/tty/tty50 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty50 -SUBSYSTEM=tty -DEVNAME=/dev/tty50 -SEQNUM=1181 -MAJOR=4 -MINOR=50 -DEVLINKS=/dev/char/4:50 - -UDEV [1294230194.118724] add /devices/virtual/tty/tty51 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty51 -SUBSYSTEM=tty -DEVNAME=/dev/tty51 -SEQNUM=1182 -MAJOR=4 -MINOR=51 -DEVLINKS=/dev/char/4:51 - -UDEV [1294230194.119468] add /devices/virtual/tty/tty52 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty52 -SUBSYSTEM=tty -DEVNAME=/dev/tty52 -SEQNUM=1183 -MAJOR=4 -MINOR=52 -DEVLINKS=/dev/char/4:52 - -UDEV [1294230194.119504] add /devices/virtual/tty/tty53 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty53 -SUBSYSTEM=tty -DEVNAME=/dev/tty53 -SEQNUM=1184 -MAJOR=4 -MINOR=53 -DEVLINKS=/dev/char/4:53 - -UDEV [1294230194.119519] add /devices/virtual/tty/tty54 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty54 -SUBSYSTEM=tty -DEVNAME=/dev/tty54 -SEQNUM=1185 -MAJOR=4 -MINOR=54 -DEVLINKS=/dev/char/4:54 - -UDEV [1294230194.120001] add /devices/virtual/vtconsole/vtcon1 (vtconsole) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vtconsole/vtcon1 -SUBSYSTEM=vtconsole -SEQNUM=1207 - -UDEV [1294230194.120436] add /devices/virtual/tty/tty55 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty55 -SUBSYSTEM=tty -DEVNAME=/dev/tty55 -SEQNUM=1186 -MAJOR=4 -MINOR=55 -DEVLINKS=/dev/char/4:55 - -UDEV [1294230194.120923] add /devices/virtual/tty/tty59 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty59 -SUBSYSTEM=tty -DEVNAME=/dev/tty59 -SEQNUM=1190 -MAJOR=4 -MINOR=59 -DEVLINKS=/dev/char/4:59 - -UDEV [1294230194.121385] add /devices/virtual/vc/vcs10 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs10 -SUBSYSTEM=vc -DEVNAME=/dev/vcs10 -SEQNUM=1202 -MAJOR=7 -MINOR=10 -DEVLINKS=/dev/char/7:10 - -UDEV [1294230194.121727] add /devices/virtual/vc/vcsa (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa -SUBSYSTEM=vc -DEVNAME=/dev/vcsa -SEQNUM=1203 -MAJOR=7 -MINOR=128 -DEVLINKS=/dev/char/7:128 - -UDEV [1294230194.121890] add /devices/virtual/vc/vcsa1 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa1 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa1 -SEQNUM=1204 -MAJOR=7 -MINOR=129 -DEVLINKS=/dev/char/7:129 - -UDEV [1294230194.122136] add /devices/virtual/vc/vcs (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs -SUBSYSTEM=vc -DEVNAME=/dev/vcs -SEQNUM=1200 -MAJOR=7 -MINOR=0 -DEVLINKS=/dev/char/7:0 - -UDEV [1294230194.122301] add /devices/platform/Fixed MDIO bus.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/Fixed MDIO bus.0 -SUBSYSTEM=platform -MODALIAS=platform:Fixed MDIO bus -SEQNUM=1009 - -UDEV [1294230194.122472] add /devices/virtual/tty/tty7 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty7 -SUBSYSTEM=tty -DEVNAME=/dev/tty7 -SEQNUM=1196 -MAJOR=4 -MINOR=7 -DEVLINKS=/dev/char/4:7 - -UDEV [1294230194.122665] add /devices/virtual/tty/tty9 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty9 -SUBSYSTEM=tty -DEVNAME=/dev/tty9 -SEQNUM=1198 -MAJOR=4 -MINOR=9 -DEVLINKS=/dev/char/4:9 - -UDEV [1294230194.122831] add /devices/virtual/tty/tty60 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty60 -SUBSYSTEM=tty -DEVNAME=/dev/tty60 -SEQNUM=1192 -MAJOR=4 -MINOR=60 -DEVLINKS=/dev/char/4:60 - -UDEV [1294230194.123001] add /devices/virtual/tty/tty58 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty58 -SUBSYSTEM=tty -DEVNAME=/dev/tty58 -SEQNUM=1189 -MAJOR=4 -MINOR=58 -DEVLINKS=/dev/char/4:58 - -UDEV [1294230194.123166] add /devices/virtual/tty/tty62 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty62 -SUBSYSTEM=tty -DEVNAME=/dev/tty62 -SEQNUM=1194 -MAJOR=4 -MINOR=62 -DEVLINKS=/dev/char/4:62 - -UDEV [1294230194.123471] add /devices/virtual/vc/vcsa10 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcsa10 -SUBSYSTEM=vc -DEVNAME=/dev/vcsa10 -SEQNUM=1205 -MAJOR=7 -MINOR=138 -DEVLINKS=/dev/char/7:138 - -UDEV [1294230194.123644] add /devices/virtual/usbmon/usbmon0 (usbmon) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/usbmon/usbmon0 -SUBSYSTEM=usbmon -DEVNAME=/dev/usbmon0 -SEQNUM=1199 -MAJOR=252 -MINOR=0 -DEVLINKS=/dev/char/252:0 - -UDEV [1294230194.123821] add /devices/virtual/tty/tty8 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty8 -SUBSYSTEM=tty -DEVNAME=/dev/tty8 -SEQNUM=1197 -MAJOR=4 -MINOR=8 -DEVLINKS=/dev/char/4:8 - -UDEV [1294230194.124346] add /devices/virtual/tty/tty63 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty63 -SUBSYSTEM=tty -DEVNAME=/dev/tty63 -SEQNUM=1195 -MAJOR=4 -MINOR=63 -DEVLINKS=/dev/char/4:63 - -UDEV [1294230194.124520] add /devices/virtual/tty/tty56 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty56 -SUBSYSTEM=tty -DEVNAME=/dev/tty56 -SEQNUM=1187 -MAJOR=4 -MINOR=56 -DEVLINKS=/dev/char/4:56 - -UDEV [1294230194.124752] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3 -SUBSYSTEM=input -PRODUCT=3/3f0/1024/111 -NAME="Hewlett-Packard Company HP USB Smart Card Keyboard" -PHYS="usb-0000:00:13.0-1/input0" -UNIQ="0817bd66" -EV==120013 -KEY==10000 7 ff800000 7ff febeffdf f3cfffff ffffffff fffffffe -MSC==10 -LED==7 -MODALIAS=input:b0003v03F0p1024e0111-e0,1,4,11,14,k71,72,73,74,75,77,79,7A,7B,7C,7D,7E,7F,80,81,82,83,84,85,86,87,88,89,8A,B7,B8,B9,BA,BB,BC,BD,BE,BF,C0,C1,C2,F0,ram4,l0,1,2,sfw -SEQNUM=947 - -UDEV [1294230194.124770] add /devices/virtual/vc/vcs1 (vc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vc/vcs1 -SUBSYSTEM=vc -DEVNAME=/dev/vcs1 -SEQNUM=1201 -MAJOR=7 -MINOR=1 -DEVLINKS=/dev/char/7:1 - -UDEV [1294230194.125348] add /devices/virtual/tty/tty61 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty61 -SUBSYSTEM=tty -DEVNAME=/dev/tty61 -SEQNUM=1193 -MAJOR=4 -MINOR=61 -DEVLINKS=/dev/char/4:61 - -UDEV [1294230194.125593] add /devices/platform/Fixed MDIO bus.0/mdio_bus/0 (mdio_bus) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/Fixed MDIO bus.0/mdio_bus/0 -SUBSYSTEM=mdio_bus -SEQNUM=1010 - -UDEV [1294230194.127722] add /devices/pci0000:00/0000:00:13.5/usb1 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/001/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/2/206 -TYPE=9/0/0 -BUSNUM=001 -DEVNUM=001 -SEQNUM=979 -ID_VENDOR=Linux_2.6.32-25-generic-pae_ehci_hcd -ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ehci_hcd -ID_VENDOR_ID=1d6b -ID_MODEL=EHCI_Host_Controller -ID_MODEL_ENC=EHCI\x20Host\x20Controller -ID_MODEL_ID=0002 -ID_REVISION=0206 -ID_SERIAL=Linux_2.6.32-25-generic-pae_ehci_hcd_EHCI_Host_Controller_0000:00:13.5 -ID_SERIAL_SHORT=0000:00:13.5 -ID_BUS=usb -ID_USB_INTERFACES=:090000: -MAJOR=189 -MINOR=0 -DEVLINKS=/dev/char/189:0 - -UDEV [1294230194.127751] add /devices/virtual/tty/tty57 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty57 -SUBSYSTEM=tty -DEVNAME=/dev/tty57 -SEQNUM=1188 -MAJOR=4 -MINOR=57 -DEVLINKS=/dev/char/4:57 - -UDEV [1294230194.127765] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/PNP0C02:01 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C02: -SEQNUM=847 - -UDEV [1294230194.128108] add /devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.5/usb1/1-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/2/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=980 - -KERNEL[1294230194.130653] add /module/serio_raw (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/serio_raw -SUBSYSTEM=module -SEQNUM=1210 - -UDEV [1294230194.130674] add /devices/pci0000:00/0000:00:14.2/input/input5 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5 -SUBSYSTEM=input -PRODUCT=1/10ec/260/1 -NAME="HDA Digital PCBeep" -PHYS="card0/codec#3/beep0" -EV==40001 -SND==6 -MODALIAS=input:b0001v10ECp0260e0001-e0,12,kramls1,2,fw -SEQNUM=990 - -KERNEL[1294230194.130689] add /bus/serio/drivers/serio_raw (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/serio/drivers/serio_raw -SUBSYSTEM=drivers -SEQNUM=1211 - -UDEV [1294230194.130702] add /devices/platform/i8042/serio1 (serio) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/i8042/serio1 -SUBSYSTEM=serio -SERIO_TYPE=01 -SERIO_PROTO=00 -SERIO_ID=00 -SERIO_EXTRA=00 -MODALIAS=serio:ty01pr00id00ex00 -SEQNUM=1014 - -UDEV [1294230194.130902] add /devices/platform/i8042/serio0 (serio) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/i8042/serio0 -SUBSYSTEM=serio -SERIO_TYPE=06 -SERIO_PROTO=00 -SERIO_ID=00 -SERIO_EXTRA=00 -MODALIAS=serio:ty06pr00id00ex00 -SEQNUM=1013 - -KERNEL[1294230194.131602] add /module/hid_quanta (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/hid_quanta -SUBSYSTEM=module -SEQNUM=1212 - -UDEV [1294230194.132515] add /module/serio_raw (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/serio_raw -SUBSYSTEM=module -SEQNUM=1210 - -UDEV [1294230194.132547] add /bus/serio/drivers/serio_raw (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/serio/drivers/serio_raw -SUBSYSTEM=drivers -SEQNUM=1211 - -UDEV [1294230194.132557] add /module/hid_quanta (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/hid_quanta -SUBSYSTEM=module -SEQNUM=1212 - -UDEV [1294230194.133898] add /devices/pci0000:00/0000:00:13.4/usb6 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/006/001 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -BUSNUM=006 -DEVNUM=001 -SEQNUM=974 -ID_VENDOR=Linux_2.6.32-25-generic-pae_ohci_hcd -ID_VENDOR_ENC=Linux\x202.6.32-25-generic-pae\x20ohci_hcd -ID_VENDOR_ID=1d6b -ID_MODEL=OHCI_Host_Controller -ID_MODEL_ENC=OHCI\x20Host\x20Controller -ID_MODEL_ID=0001 -ID_REVISION=0206 -ID_SERIAL=Linux_2.6.32-25-generic-pae_ohci_hcd_OHCI_Host_Controller_0000:00:13.4 -ID_SERIAL_SHORT=0000:00:13.4 -ID_BUS=usb -ID_USB_INTERFACES=:090000: -MAJOR=189 -MINOR=640 -DEVLINKS=/dev/char/189:640 - -UDEV [1294230194.134006] add /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1 -SUBSYSTEM=input -DEVNAME=/dev/input/event1 -SEQNUM=843 -ID_INPUT=1 -ID_INPUT_KEY=1 -XKBMODEL=pc105 -XKBLAYOUT=de -MAJOR=13 -MINOR=65 -DEVLINKS=/dev/char/13:65 -DMI_VENDOR=Hewlett-Packard - -UDEV [1294230194.134301] add /devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.4/usb6/6-0:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=hub -PRODUCT=1d6b/1/206 -TYPE=9/0/0 -INTERFACE=9/0/0 -MODALIAS=usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00 -SEQNUM=975 - -UDEV [1294230194.137230] add /devices/platform/pcspkr (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/pcspkr -SUBSYSTEM=platform -MODALIAS=platform:pcspkr -SEQNUM=1015 - -UDEV [1294230194.137347] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=859 - -UDEV [1294230194.137530] add /devices/virtual/vtconsole/vtcon0 (vtconsole) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vtconsole/vtcon0 -SUBSYSTEM=vtconsole -SEQNUM=1206 - -UDEV [1294230194.141601] add /devices/virtual/block/ram2 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram2 -SUBSYSTEM=block -DEVNAME=/dev/ram2 -DEVTYPE=disk -SEQNUM=1088 -MAJOR=1 -MINOR=2 -DEVLINKS=/dev/block/1:2 - -UDEV [1294230194.145610] add /devices/virtual/block/ram10 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram10 -SUBSYSTEM=block -DEVNAME=/dev/ram10 -DEVTYPE=disk -SEQNUM=1082 -MAJOR=1 -MINOR=10 -DEVLINKS=/dev/block/1:10 - -UDEV [1294230194.147765] add /devices/virtual/block/ram1 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram1 -SUBSYSTEM=block -DEVNAME=/dev/ram1 -DEVTYPE=disk -SEQNUM=1081 -MAJOR=1 -MINOR=1 -DEVLINKS=/dev/block/1:1 - -UDEV [1294230194.149658] add /devices/virtual/block/ram11 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram11 -SUBSYSTEM=block -DEVNAME=/dev/ram11 -DEVTYPE=disk -SEQNUM=1083 -MAJOR=1 -MINOR=11 -DEVLINKS=/dev/block/1:11 - -UDEV [1294230194.151084] add /devices/virtual/block/ram15 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram15 -SUBSYSTEM=block -DEVNAME=/dev/ram15 -DEVTYPE=disk -SEQNUM=1087 -MAJOR=1 -MINOR=15 -DEVLINKS=/dev/block/1:15 - -UDEV [1294230194.152576] add /devices/virtual/block/ram4 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram4 -SUBSYSTEM=block -DEVNAME=/dev/ram4 -DEVTYPE=disk -SEQNUM=1090 -MAJOR=1 -MINOR=4 -DEVLINKS=/dev/block/1:4 - -UDEV [1294230194.152597] add /devices/virtual/block/ram6 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram6 -SUBSYSTEM=block -DEVNAME=/dev/ram6 -DEVTYPE=disk -SEQNUM=1092 -MAJOR=1 -MINOR=6 -DEVLINKS=/dev/block/1:6 - -UDEV [1294230194.152614] add /devices/virtual/block/ram12 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram12 -SUBSYSTEM=block -DEVNAME=/dev/ram12 -DEVTYPE=disk -SEQNUM=1084 -MAJOR=1 -MINOR=12 -DEVLINKS=/dev/block/1:12 - -UDEV [1294230194.152641] add /devices/virtual/block/ram8 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram8 -SUBSYSTEM=block -DEVNAME=/dev/ram8 -DEVTYPE=disk -SEQNUM=1094 -MAJOR=1 -MINOR=8 -DEVLINKS=/dev/block/1:8 - -UDEV [1294230194.152657] add /devices/virtual/block/ram0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram0 -SUBSYSTEM=block -DEVNAME=/dev/ram0 -DEVTYPE=disk -SEQNUM=1080 -MAJOR=1 -MINOR=0 -DEVLINKS=/dev/block/1:0 - -UDEV [1294230194.153551] add /devices/virtual/block/ram5 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram5 -SUBSYSTEM=block -DEVNAME=/dev/ram5 -DEVTYPE=disk -SEQNUM=1091 -MAJOR=1 -MINOR=5 -DEVLINKS=/dev/block/1:5 - -UDEV [1294230194.154236] add /devices/virtual/block/ram3 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram3 -SUBSYSTEM=block -DEVNAME=/dev/ram3 -DEVTYPE=disk -SEQNUM=1089 -MAJOR=1 -MINOR=3 -DEVLINKS=/dev/block/1:3 - -UDEV [1294230194.155044] add /devices/virtual/block/ram7 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram7 -SUBSYSTEM=block -DEVNAME=/dev/ram7 -DEVTYPE=disk -SEQNUM=1093 -MAJOR=1 -MINOR=7 -DEVLINKS=/dev/block/1:7 - -UDEV [1294230194.155920] add /devices/virtual/block/ram13 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram13 -SUBSYSTEM=block -DEVNAME=/dev/ram13 -DEVTYPE=disk -SEQNUM=1085 -MAJOR=1 -MINOR=13 -DEVLINKS=/dev/block/1:13 - -UDEV [1294230194.158874] add /devices/virtual/block/ram14 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram14 -SUBSYSTEM=block -DEVNAME=/dev/ram14 -DEVTYPE=disk -SEQNUM=1086 -MAJOR=1 -MINOR=14 -DEVLINKS=/dev/block/1:14 - -KERNEL[1294230194.159052] add /class/usb (class) -UDEV_LOG=3 -ACTION=add -DEVPATH=/class/usb -SUBSYSTEM=class -SEQNUM=1213 - -KERNEL[1294230194.159067] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 -SUBSYSTEM=usb -DEVNAME=usb/hiddev0 -SEQNUM=1214 -MAJOR=180 -MINOR=96 - -KERNEL[1294230194.159082] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 (hidraw) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 -SUBSYSTEM=hidraw -DEVNAME=hidraw2 -SEQNUM=1215 -MAJOR=251 -MINOR=2 - -KERNEL[1294230194.159094] add /bus/hid/drivers/quanta-touch (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/hid/drivers/quanta-touch -SUBSYSTEM=drivers -SEQNUM=1216 - -UDEV [1294230194.160417] add /class/usb (class) -UDEV_LOG=3 -ACTION=add -DEVPATH=/class/usb -SUBSYSTEM=class -SEQNUM=1213 - -UDEV [1294230194.160987] add /devices/pci0000:00/0000:00:13.2/usb4/4-2 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2 -SUBSYSTEM=usb -DEVNAME=/dev/bus/usb/004/003 -DEVTYPE=usb_device -DRIVER=usb -PRODUCT=461/4d20/200 -TYPE=0/0/0 -BUSNUM=004 -DEVNUM=003 -SEQNUM=961 -ID_VENDOR=0461 -ID_VENDOR_ENC=0461 -ID_VENDOR_ID=0461 -ID_MODEL=USB_Optical_Mouse -ID_MODEL_ENC=USB\x20Optical\x20Mouse -ID_MODEL_ID=4d20 -ID_REVISION=0200 -ID_SERIAL=0461_USB_Optical_Mouse -ID_BUS=usb -ID_USB_INTERFACES=:030102: -MAJOR=189 -MINOR=386 -DEVLINKS=/dev/char/189:386 - -UDEV [1294230194.161010] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/usb/hiddev0 -SUBSYSTEM=usb -DEVNAME=/dev/usb/hiddev0 -SEQNUM=1214 -MAJOR=180 -MINOR=96 -DEVLINKS=/dev/char/180:96 - -UDEV [1294230194.161344] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 (usb) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0 -SUBSYSTEM=usb -DEVTYPE=usb_interface -DRIVER=usbhid -PRODUCT=461/4d20/200 -TYPE=0/0/0 -INTERFACE=3/1/2 -MODALIAS=usb:v0461p4D20d0200dc00dsc00dp00ic03isc01ip02 -SEQNUM=962 - -UDEV [1294230194.161745] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 (hid) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003 -SUBSYSTEM=hid -DRIVER=generic-usb -HID_ID=0003:00000461:00004D20 -HID_NAME=USB Optical Mouse -HID_PHYS=usb-0000:00:13.2-2/input0 -MODALIAS=hid:b0003v00000461p00004D20 -SEQNUM=963 - -UDEV [1294230194.162197] add /bus/hid/drivers/quanta-touch (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/hid/drivers/quanta-touch -SUBSYSTEM=drivers -SEQNUM=1216 - -UDEV [1294230194.162818] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 (hidraw) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/0003:0461:4D20.0003/hidraw/hidraw1 -SUBSYSTEM=hidraw -DEVNAME=/dev/hidraw1 -SEQNUM=964 -MAJOR=251 -MINOR=1 -DEVLINKS=/dev/char/251:1 - -UDEV [1294230194.163653] add /devices/virtual/tty/tty40 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty40 -SUBSYSTEM=tty -DEVNAME=/dev/tty40 -SEQNUM=1170 -MAJOR=4 -MINOR=40 -DEVLINKS=/dev/char/4:40 - -KERNEL[1294230194.170046] add /module/ttm (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/ttm -SUBSYSTEM=module -SEQNUM=1217 - -UDEV [1294230194.170425] add /module/ttm (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/ttm -SUBSYSTEM=module -SEQNUM=1217 - -UDEV [1294230194.171793] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 (hid) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002 -SUBSYSTEM=hid -HID_ID=0003:00000408:00003000 -HID_NAME=Quanta Computer Inc. Optical Touch Screen -HID_PHYS=usb-0000:00:13.2-1/input0 -MODALIAS=hid:b0003v00000408p00003000 -SEQNUM=960 - -UDEV [1294230194.171817] add /devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 (hidraw) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-1/4-1:1.0/0003:0408:3000.0002/hidraw/hidraw2 -SUBSYSTEM=hidraw -DEVNAME=/dev/hidraw2 -SEQNUM=1215 -MAJOR=251 -MINOR=2 -DEVLINKS=/dev/char/251:2 - -KERNEL[1294230194.172693] add /devices/virtual/drm/ttm (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/drm/ttm -SUBSYSTEM=drm -DEVTYPE=ttm -SEQNUM=1218 - -UDEV [1294230194.172956] add /devices/virtual/drm/ttm (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/drm/ttm -SUBSYSTEM=drm -DEVTYPE=ttm -SEQNUM=1218 - -UDEV [1294230194.185017] add /devices/virtual/dmi/id (dmi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/dmi/id -SUBSYSTEM=dmi -MODALIAS=dmi:bvnHewlett-Packard:bvr786E3v02.22:bd04/18/2007:svnHewlett-Packard:pnHPCompaqdc5750Microtower:pvr:rvnHewlett-Packard:rn0A64h:rvr:cvnHewlett-Packard:ct6:cvr: -SEQNUM=1097 - -UDEV [1294230194.187869] add /devices/virtual/input/mice (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/mice -SUBSYSTEM=input -DEVNAME=/dev/input/mice -SEQNUM=1102 -MAJOR=13 -MINOR=63 -DEVLINKS=/dev/char/13:63 - -UDEV [1294230194.196027] add /devices/virtual/block/ram9 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ram9 -SUBSYSTEM=block -DEVNAME=/dev/ram9 -DEVTYPE=disk -SEQNUM=1095 -MAJOR=1 -MINOR=9 -DEVLINKS=/dev/block/1:9 - -UDEV [1294230194.200183] add /devices/pci0000:00/0000:00:14.2/input/input5/event5 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/input/input5/event5 -SUBSYSTEM=input -DEVNAME=/dev/input/event5 -SEQNUM=991 -ID_INPUT=1 -DMI_VENDOR=Hewlett-Packard -MAJOR=13 -MINOR=69 -DEVLINKS=/dev/char/13:69 - -UDEV [1294230194.204053] add /devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 (sound) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0/controlC0 -SUBSYSTEM=sound -DEVNAME=/dev/snd/controlC0 -SEQNUM=999 -ID_PATH=pci-0000:00:14.2 -ACL_MANAGE=1 -MAJOR=116 -MINOR=6 -DEVLINKS=/dev/char/116:6 /dev/snd/by-path/pci-0000:00:14.2 - -KERNEL[1294230194.242647] add /module/radeon (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/radeon -SUBSYSTEM=module -SEQNUM=1219 - -KERNEL[1294230194.245147] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 -SUBSYSTEM=drm -DEVNAME=dri/controlD64 -DEVTYPE=drm_minor -SEQNUM=1220 -MAJOR=226 -MINOR=64 - -KERNEL[1294230194.245312] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -DEVNAME=dri/card0 -DEVTYPE=drm_minor -SEQNUM=1221 -MAJOR=226 -MINOR=0 - -KERNEL[1294230194.295493] add /devices/platform/radeon_cp.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0 -SUBSYSTEM=platform -MODALIAS=platform:radeon_cp -SEQNUM=1222 - -KERNEL[1294230194.295514] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_pfp.bin -SEQNUM=1223 - -UDEV [1294230194.298755] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0501:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0501:PNP0500: -SEQNUM=867 - -UDEV [1294230194.298774] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=889 - -UDEV [1294230194.298786] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/device:07 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=879 - -UDEV [1294230194.298798] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0F13:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0F13:PNP0F0E: -SEQNUM=872 - -UDEV [1294230194.301934] add /devices/virtual/tty/tty5 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty5 -SUBSYSTEM=tty -DEVNAME=/dev/tty5 -SEQNUM=1180 -MAJOR=4 -MINOR=5 -DEVLINKS=/dev/char/4:5 - -UDEV [1294230194.302826] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0000:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0000: -SEQNUM=860 - -UDEV [1294230194.302847] add /devices/virtual/tty/tty3 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty3 -SUBSYSTEM=tty -DEVNAME=/dev/tty3 -SEQNUM=1158 -MAJOR=4 -MINOR=3 -DEVLINKS=/dev/char/4:3 - -UDEV [1294230194.302863] add /devices/virtual/tty/tty4 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty4 -SUBSYSTEM=tty -DEVNAME=/dev/tty4 -SEQNUM=1169 -MAJOR=4 -MINOR=4 -DEVLINKS=/dev/char/4:4 - -UDEV [1294230194.307757] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0200:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0200: -SEQNUM=864 - -UDEV [1294230194.313051] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0C04:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0C04: -SEQNUM=871 - -UDEV [1294230194.313167] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0 -SUBSYSTEM=input -DEVNAME=/dev/input/event0 -SEQNUM=897 -ID_INPUT=1 -ID_INPUT_KEY=1 -XKBMODEL=pc105 -XKBLAYOUT=de -MAJOR=13 -MINOR=64 -DEVLINKS=/dev/char/13:64 -DMI_VENDOR=Hewlett-Packard - -UDEV [1294230194.313186] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/device:02 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=874 - -UDEV [1294230194.316178] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0401:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0401: -SEQNUM=866 - -UDEV [1294230194.327835] add /devices/virtual/input/input2 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/input2 -SUBSYSTEM=input -PRODUCT=17/1/1/100 -NAME="Macintosh mouse button emulation" -EV==7 -KEY==70000 0 0 0 0 0 0 0 0 -REL==3 -MODALIAS=input:b0017v0001p0001e0100-e0,1,2,k110,111,112,r0,1,amlsfw -SEQNUM=1099 - -UDEV [1294230194.337009] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4 -SUBSYSTEM=input -PRODUCT=3/461/4d20/111 -NAME="USB Optical Mouse" -PHYS="usb-0000:00:13.2-2/input0" -UNIQ="" -EV==17 -KEY==70000 0 0 0 0 0 0 0 0 -REL==103 -MSC==10 -MODALIAS=input:b0003v0461p4D20e0111-e0,1,2,4,k110,111,112,r0,1,8,am4,lsfw -SEQNUM=965 - -UDEV [1294230194.340076] add /devices/virtual/tty/tty2 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty2 -SUBSYSTEM=tty -DEVNAME=/dev/tty2 -SEQNUM=1147 -MAJOR=4 -MINOR=2 -DEVLINKS=/dev/char/4:2 - -UDEV [1294230194.340097] add /devices/virtual/tty/tty1 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty1 -SUBSYSTEM=tty -DEVNAME=/dev/tty1 -SEQNUM=1136 -MAJOR=4 -MINOR=1 -DEVLINKS=/dev/char/4:1 - -UDEV [1294230194.341847] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0100:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0100: -SEQNUM=862 - -UDEV [1294230194.343270] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0103:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0103: -SEQNUM=863 - -UDEV [1294230194.343290] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0003:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0003: -SEQNUM=861 - -UDEV [1294230194.343303] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:04/device:05 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=877 - -UDEV [1294230194.343316] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0B00:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0B00: -SEQNUM=870 - -UDEV [1294230194.343328] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0800:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0800: -SEQNUM=869 - -UDEV [1294230194.343516] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0303:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0303: -SEQNUM=865 - -UDEV [1294230194.343953] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=891 - -KERNEL[1294230194.348047] add /module/floppy (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/floppy -SUBSYSTEM=module -SEQNUM=1224 - -KERNEL[1294230194.348278] add /bus/platform/drivers/floppy (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/platform/drivers/floppy -SUBSYSTEM=drivers -SEQNUM=1225 - -UDEV [1294230194.350217] add /devices/virtual/block/ramzswap0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/ramzswap0 -SUBSYSTEM=block -DEVNAME=/dev/ramzswap0 -DEVTYPE=disk -SEQNUM=1096 -ID_FS_VERSION=2 -ID_FS_TYPE=swap -ID_FS_USAGE=other -MAJOR=250 -MINOR=0 -DEVLINKS=/dev/block/250:0 - -UDEV [1294230194.350849] add /devices/virtual/tty/tty6 (tty) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/tty/tty6 -SUBSYSTEM=tty -DEVNAME=/dev/tty6 -SEQNUM=1191 -MAJOR=4 -MINOR=6 -DEVLINKS=/dev/char/4:6 - -UDEV [1294230194.356565] change /devices/pci0000:00/0000:00:14.2/sound/card0 (sound) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:14.2/sound/card0 -SUBSYSTEM=sound -SEQNUM=1209 -SOUND_INITIALIZED=1 -ID_VENDOR_FROM_DATABASE=ATI Technologies Inc -ID_MODEL_FROM_DATABASE=SBx00 Azalia (Intel HDA) -ID_BUS=pci -ID_VENDOR_ID=0x1002 -ID_MODEL_ID=0x4383 -ID_PATH=pci-0000:00:14.2 -SOUND_FORM_FACTOR=internal - -UDEV [1294230194.360460] add /devices/virtual/block/loop7 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop7 -SUBSYSTEM=block -DEVNAME=/dev/loop7 -DEVTYPE=disk -SEQNUM=1079 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=7 -DEVLINKS=/dev/block/7:7 - -UDEV [1294230194.360612] add /devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.0/usb2/2-1/2-1:1.0/input/input3/event3 -SUBSYSTEM=input -DEVNAME=/dev/input/event3 -SEQNUM=948 -ID_INPUT=1 -ID_INPUT_KEY=1 -ID_INPUT_KEYBOARD=1 -ID_VENDOR=Hewlett-Packard_Company -ID_VENDOR_ENC=Hewlett-Packard\x20Company -ID_VENDOR_ID=03f0 -ID_MODEL=HP_USB_Smart_Card_Keyboard -ID_MODEL_ENC=HP\x20USB\x20Smart\x20Card\x20Keyboard -ID_MODEL_ID=1024 -ID_REVISION=0535 -ID_SERIAL=Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66 -ID_SERIAL_SHORT=0817bd66 -ID_TYPE=hid -ID_BUS=usb -ID_USB_INTERFACES=:030101:0b0000: -ID_USB_INTERFACE_NUM=00 -ID_USB_DRIVER=usbhid -ID_PATH=pci-0000:00:13.0-usb-0:1:1.0 -XKBMODEL=pc105 -XKBLAYOUT=de -MAJOR=13 -MINOR=67 -DEVLINKS=/dev/char/13:67 /dev/input/by-id/usb-Hewlett-Packard_Company_HP_USB_Smart_Card_Keyboard_0817bd66-event-kbd /dev/input/by-path/pci-0000:00:13.0-usb-0:1:1.0-event-kbd - -UDEV [1294230194.362286] add /devices/virtual/block/loop1 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop1 -SUBSYSTEM=block -DEVNAME=/dev/loop1 -DEVTYPE=disk -SEQNUM=1071 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=1 -DEVLINKS=/dev/block/7:1 - -UDEV [1294230194.363753] add /devices/virtual/block/loop4 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop4 -SUBSYSTEM=block -DEVNAME=/dev/loop4 -DEVTYPE=disk -SEQNUM=1074 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=4 -DEVLINKS=/dev/block/7:4 - -UDEV [1294230194.364487] add /devices/virtual/block/loop6 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop6 -SUBSYSTEM=block -DEVNAME=/dev/loop6 -DEVTYPE=disk -SEQNUM=1078 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=6 -DEVLINKS=/dev/block/7:6 - -UDEV [1294230194.365254] add /devices/virtual/block/loop5 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop5 -SUBSYSTEM=block -DEVNAME=/dev/loop5 -DEVTYPE=disk -SEQNUM=1076 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=5 -DEVLINKS=/dev/block/7:5 - -UDEV [1294230194.365995] add /devices/virtual/block/loop3 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop3 -SUBSYSTEM=block -DEVNAME=/dev/loop3 -DEVTYPE=disk -SEQNUM=1073 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=3 -DEVLINKS=/dev/block/7:3 - -UDEV [1294230194.366724] add /devices/virtual/block/loop0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop0 -SUBSYSTEM=block -DEVNAME=/dev/loop0 -DEVTYPE=disk -SEQNUM=1070 -ID_FS_UUID=4D24-62FE -ID_FS_UUID_ENC=4D24-62FE -ID_FS_VERSION=FAT32 -ID_FS_TYPE=vfat -ID_FS_USAGE=filesystem -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=0 -DEVLINKS=/dev/block/7:0 /dev/disk/by-uuid/4D24-62FE - -UDEV [1294230194.368292] add /devices/virtual/block/loop2 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/block/loop2 -SUBSYSTEM=block -DEVNAME=/dev/loop2 -DEVTYPE=disk -SEQNUM=1072 -UDISKS_PRESENTATION_NOPOLICY=1 -MAJOR=7 -MINOR=2 -DEVLINKS=/dev/block/7:2 - -UDEV [1294230194.377054] add /module/radeon (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/radeon -SUBSYSTEM=module -SEQNUM=1219 - -UDEV [1294230194.377243] add /devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:07.0/0000:3f:00.0/net/eth0 -SUBSYSTEM=net -INTERFACE=eth0 -IFINDEX=2 -SEQNUM=910 -ID_VENDOR_FROM_DATABASE=Broadcom Corporation -ID_MODEL_FROM_DATABASE=NetXtreme BCM5755 Gigabit Ethernet PCI Express -ID_BUS=pci -ID_VENDOR_ID=0x14e4 -ID_MODEL_ID=0x167b -MATCHADDR=00:1e:0b:27:f4:99 -MATCHIFTYPE=1 -MATCHDEVID=0x0 -COMMENT=PCI device 0x14e4:0x167b (tg3) - -UDEV [1294230194.391169] add /devices/virtual/input/input2/event2 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/input2/event2 -SUBSYSTEM=input -DEVNAME=/dev/input/event2 -SEQNUM=1100 -ID_INPUT=1 -ID_INPUT_MOUSE=1 -ID_SERIAL=noserial -DMI_VENDOR=Hewlett-Packard -MAJOR=13 -MINOR=66 -DEVLINKS=/dev/char/13:66 - -UDEV [1294230194.393053] add /devices/virtual/input/input2/mouse0 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/input/input2/mouse0 -SUBSYSTEM=input -DEVNAME=/dev/input/mouse0 -SEQNUM=1101 -ID_INPUT=1 -ID_INPUT_MOUSE=1 -ID_SERIAL=noserial -MAJOR=13 -MINOR=32 -DEVLINKS=/dev/char/13:32 - -UDEV [1294230194.395611] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:10/device:11 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=890 - -UDEV [1294230194.399356] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/device:12/device:13 -SUBSYSTEM=acpi -MODALIAS=acpi:device: -SEQNUM=893 - -UDEV [1294230194.410102] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/mouse1 -SUBSYSTEM=input -DEVNAME=/dev/input/mouse1 -SEQNUM=967 -ID_INPUT=1 -ID_INPUT_MOUSE=1 -ID_VENDOR=0461 -ID_VENDOR_ENC=0461 -ID_VENDOR_ID=0461 -ID_MODEL=USB_Optical_Mouse -ID_MODEL_ENC=USB\x20Optical\x20Mouse -ID_MODEL_ID=4d20 -ID_REVISION=0200 -ID_SERIAL=0461_USB_Optical_Mouse -ID_TYPE=hid -ID_BUS=usb -ID_USB_INTERFACES=:030102: -ID_USB_INTERFACE_NUM=00 -ID_USB_DRIVER=usbhid -ID_PATH=pci-0000:00:13.2-usb-0:2:1.0 -MAJOR=13 -MINOR=33 -DEVLINKS=/dev/char/13:33 /dev/input/by-id/usb-0461_USB_Optical_Mouse-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:2:1.0-mouse - -UDEV [1294230194.412973] add /devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 (input) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:13.2/usb4/4-2/4-2:1.0/input/input4/event4 -SUBSYSTEM=input -DEVNAME=/dev/input/event4 -SEQNUM=966 -ID_INPUT=1 -ID_INPUT_MOUSE=1 -ID_VENDOR=0461 -ID_VENDOR_ENC=0461 -ID_VENDOR_ID=0461 -ID_MODEL=USB_Optical_Mouse -ID_MODEL_ENC=USB\x20Optical\x20Mouse -ID_MODEL_ID=4d20 -ID_REVISION=0200 -ID_SERIAL=0461_USB_Optical_Mouse -ID_TYPE=hid -ID_BUS=usb -ID_USB_INTERFACES=:030102: -ID_USB_INTERFACE_NUM=00 -ID_USB_DRIVER=usbhid -ID_PATH=pci-0000:00:13.2-usb-0:2:1.0 -MAJOR=13 -MINOR=68 -DEVLINKS=/dev/char/13:68 /dev/input/by-id/usb-0461_USB_Optical_Mouse-event-mouse /dev/input/by-path/pci-0000:00:13.2-usb-0:2:1.0-event-mouse - -UDEV [1294230194.416066] add /bus/platform/drivers/floppy (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/platform/drivers/floppy -SUBSYSTEM=drivers -SEQNUM=1225 - -UDEV [1294230194.416488] add /module/floppy (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/floppy -SUBSYSTEM=module -SEQNUM=1224 - -UDEV [1294230194.422570] add /devices/virtual/graphics/fbcon (graphics) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/graphics/fbcon -SUBSYSTEM=graphics -SEQNUM=1098 - -UDEV [1294230194.431850] add /devices/platform/radeon_cp.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0 -SUBSYSTEM=platform -MODALIAS=platform:radeon_cp -SEQNUM=1222 - -KERNEL[1294230194.437573] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_pfp.bin -SEQNUM=1226 - -KERNEL[1294230194.437591] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_me.bin -SEQNUM=1227 - -UDEV [1294230194.438535] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_pfp.bin -SEQNUM=1223 - -UDEV [1294230194.444521] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_pfp.bin -SEQNUM=1226 - -KERNEL[1294230194.445484] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_me.bin -SEQNUM=1228 - -KERNEL[1294230194.445505] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/R600_rlc.bin -SEQNUM=1229 - -UDEV [1294230194.445994] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_me.bin -SEQNUM=1227 - -UDEV [1294230194.451766] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/RV610_me.bin -SEQNUM=1228 - -KERNEL[1294230194.479150] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/R600_rlc.bin -SEQNUM=1230 - -UDEV [1294230194.479167] remove /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/R600_rlc.bin -SEQNUM=1230 - -KERNEL[1294230194.479180] remove /devices/platform/radeon_cp.0 (platform) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0 -SUBSYSTEM=platform -MODALIAS=platform:radeon_cp -SEQNUM=1231 - -UDEV [1294230194.479785] add /devices/platform/radeon_cp.0/firmware/radeon_cp.0 (firmware) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/radeon_cp.0/firmware/radeon_cp.0 -SUBSYSTEM=firmware -FIRMWARE=radeon/R600_rlc.bin -SEQNUM=1229 - -UDEV [1294230194.480755] remove /devices/platform/radeon_cp.0 (platform) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/radeon_cp.0 -SUBSYSTEM=platform -MODALIAS=platform:radeon_cp -SEQNUM=1231 - -KERNEL[1294230194.503725] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 -SUBSYSTEM=drm -SEQNUM=1232 - -KERNEL[1294230194.503882] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -HOTPLUG=1 -DEVNAME=dri/card0 -DEVTYPE=drm_minor -SEQNUM=1233 -MAJOR=226 -MINOR=0 - -KERNEL[1294230194.504013] add /devices/i2c-1 (i2c) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/i2c-1 -SUBSYSTEM=i2c -SEQNUM=1234 - -UDEV [1294230194.504556] add /devices/i2c-1 (i2c) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/i2c-1 -SUBSYSTEM=i2c -SEQNUM=1234 - -KERNEL[1294230194.504716] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 -SUBSYSTEM=drm -SEQNUM=1235 - -KERNEL[1294230194.504802] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -HOTPLUG=1 -DEVNAME=dri/card0 -DEVTYPE=drm_minor -SEQNUM=1236 -MAJOR=226 -MINOR=0 - -KERNEL[1294230194.504961] add /devices/i2c-2 (i2c) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/i2c-2 -SUBSYSTEM=i2c -SEQNUM=1237 - -UDEV [1294230194.505134] add /devices/i2c-2 (i2c) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/i2c-2 -SUBSYSTEM=i2c -SEQNUM=1237 - -KERNEL[1294230194.505928] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 -SUBSYSTEM=drm -SEQNUM=1238 - -KERNEL[1294230194.506043] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -HOTPLUG=1 -DEVNAME=dri/card0 -DEVTYPE=drm_minor -SEQNUM=1239 -MAJOR=226 -MINOR=0 - -KERNEL[1294230194.528521] add /module/vboxdrv (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vboxdrv -SUBSYSTEM=module -SEQNUM=1240 - -KERNEL[1294230194.528909] add /devices/virtual/misc/vboxdrv (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vboxdrv -SUBSYSTEM=misc -DEVNAME=vboxdrv -SEQNUM=1241 -MAJOR=10 -MINOR=55 - -KERNEL[1294230194.529015] add /bus/platform/drivers/vboxdrv (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/platform/drivers/vboxdrv -SUBSYSTEM=drivers -SEQNUM=1242 - -KERNEL[1294230194.529051] add /devices/platform/vboxdrv.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vboxdrv.0 -SUBSYSTEM=platform -MODALIAS=platform:vboxdrv -SEQNUM=1243 - -UDEV [1294230194.531422] add /module/vboxdrv (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vboxdrv -SUBSYSTEM=module -SEQNUM=1240 - -UDEV [1294230194.532655] add /bus/platform/drivers/vboxdrv (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/platform/drivers/vboxdrv -SUBSYSTEM=drivers -SEQNUM=1242 - -UDEV [1294230194.533083] add /devices/virtual/misc/vboxdrv (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vboxdrv -SUBSYSTEM=misc -DEVNAME=/dev/vboxdrv -SEQNUM=1241 -MAJOR=10 -MINOR=55 -DEVLINKS=/dev/char/10:55 - -UDEV [1294230194.536691] add /devices/platform/vboxdrv.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vboxdrv.0 -SUBSYSTEM=platform -MODALIAS=platform:vboxdrv -SEQNUM=1243 - -KERNEL[1294230194.538814] add /module/rpcsec_gss_krb5 (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/rpcsec_gss_krb5 -SUBSYSTEM=module -SEQNUM=1244 - -UDEV [1294230194.538830] add /module/rpcsec_gss_krb5 (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/rpcsec_gss_krb5 -SUBSYSTEM=module -SEQNUM=1244 - -KERNEL[1294230194.545812] add /module/vboxnetflt (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vboxnetflt -SUBSYSTEM=module -SEQNUM=1245 - -UDEV [1294230194.546317] add /module/vboxnetflt (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vboxnetflt -SUBSYSTEM=module -SEQNUM=1245 - -KERNEL[1294230194.564522] add /module/vboxnetadp (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vboxnetadp -SUBSYSTEM=module -SEQNUM=1246 - -UDEV [1294230194.565271] add /module/vboxnetadp (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vboxnetadp -SUBSYSTEM=module -SEQNUM=1246 - -KERNEL[1294230194.568066] add /devices/virtual/net/vboxnet0 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/vboxnet0 -SUBSYSTEM=net -INTERFACE=vboxnet0 -IFINDEX=4 -SEQNUM=1247 - -UDEV [1294230194.568731] add /devices/virtual/net/vboxnet0 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/vboxnet0 -SUBSYSTEM=net -INTERFACE=vboxnet0 -IFINDEX=4 -SEQNUM=1247 - -KERNEL[1294230194.569888] add /devices/virtual/misc/vboxnetctl (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vboxnetctl -SUBSYSTEM=misc -DEVNAME=vboxnetctl -SEQNUM=1248 -MAJOR=10 -MINOR=54 - -UDEV [1294230194.570859] add /devices/virtual/misc/vboxnetctl (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vboxnetctl -SUBSYSTEM=misc -DEVNAME=/dev/vboxnetctl -SEQNUM=1248 -MAJOR=10 -MINOR=54 -DEVLINKS=/dev/char/10:54 - -KERNEL[1294230194.616724] add /module/vmmon (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmmon -SUBSYSTEM=module -SEQNUM=1249 - -KERNEL[1294230194.616997] add /devices/virtual/misc/vmmon (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vmmon -SUBSYSTEM=misc -DEVNAME=vmmon -SEQNUM=1250 -MAJOR=10 -MINOR=165 - -UDEV [1294230194.617827] add /module/vmmon (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmmon -SUBSYSTEM=module -SEQNUM=1249 - -UDEV [1294230194.617847] add /devices/virtual/misc/vmmon (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vmmon -SUBSYSTEM=misc -DEVNAME=/dev/vmmon -SEQNUM=1250 -MAJOR=10 -MINOR=165 -DEVLINKS=/dev/char/10:165 - -KERNEL[1294230194.638268] add /module/vmnet (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmnet -SUBSYSTEM=module -SEQNUM=1251 - -UDEV [1294230194.638879] add /module/vmnet (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmnet -SUBSYSTEM=module -SEQNUM=1251 - -KERNEL[1294230194.652737] add /module/vmci (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmci -SUBSYSTEM=module -SEQNUM=1252 - -UDEV [1294230194.653330] add /module/vmci (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmci -SUBSYSTEM=module -SEQNUM=1252 - -KERNEL[1294230194.653714] add /devices/virtual/misc/vmci (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vmci -SUBSYSTEM=misc -DEVNAME=vmci -SEQNUM=1253 -MAJOR=10 -MINOR=53 - -UDEV [1294230194.654075] add /devices/virtual/misc/vmci (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vmci -SUBSYSTEM=misc -DEVNAME=/dev/vmci -SEQNUM=1253 -MAJOR=10 -MINOR=53 -DEVLINKS=/dev/char/10:53 - -KERNEL[1294230194.669917] add /module/vmblock (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmblock -SUBSYSTEM=module -SEQNUM=1254 - -KERNEL[1294230194.670335] add /kernel/slab/:t-0004160 (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/:t-0004160 -SUBSYSTEM=slab -SEQNUM=1255 - -UDEV [1294230194.670353] add /module/vmblock (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vmblock -SUBSYSTEM=module -SEQNUM=1254 - -KERNEL[1294230194.670366] add /kernel/slab/VMBlockInodeCache (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/VMBlockInodeCache -SUBSYSTEM=slab -SEQNUM=1256 - -UDEV [1294230194.670376] add /kernel/slab/VMBlockInodeCache (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/VMBlockInodeCache -SUBSYSTEM=slab -SEQNUM=1256 - -UDEV [1294230194.670387] add /kernel/slab/:t-0004160 (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/:t-0004160 -SUBSYSTEM=slab -SEQNUM=1255 - -KERNEL[1294230194.677479] add /module/vsock (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vsock -SUBSYSTEM=module -SEQNUM=1257 - -UDEV [1294230194.678113] add /module/vsock (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vsock -SUBSYSTEM=module -SEQNUM=1257 - -KERNEL[1294230194.693320] add /devices/virtual/misc/vsock (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vsock -SUBSYSTEM=misc -DEVNAME=vsock -SEQNUM=1258 -MAJOR=10 -MINOR=52 - -UDEV [1294230194.694253] add /devices/virtual/misc/vsock (misc) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/misc/vsock -SUBSYSTEM=misc -DEVNAME=/dev/vsock -SEQNUM=1258 -MAJOR=10 -MINOR=52 -DEVLINKS=/dev/char/10:52 - -KERNEL[1294230194.723676] add /devices/virtual/net/vmnet1 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/vmnet1 -SUBSYSTEM=net -INTERFACE=vmnet1 -IFINDEX=5 -SEQNUM=1259 - -UDEV [1294230194.724313] add /devices/virtual/net/vmnet1 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/vmnet1 -SUBSYSTEM=net -INTERFACE=vmnet1 -IFINDEX=5 -SEQNUM=1259 - -KERNEL[1294230194.758324] add /devices/virtual/net/vmnet8 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/vmnet8 -SUBSYSTEM=net -INTERFACE=vmnet8 -IFINDEX=6 -SEQNUM=1260 - -UDEV [1294230194.760239] add /devices/virtual/net/vmnet8 (net) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/net/vmnet8 -SUBSYSTEM=net -INTERFACE=vmnet8 -IFINDEX=6 -SEQNUM=1260 - -UDEV [1294230194.788037] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda -SUBSYSTEM=block -DEVNAME=/dev/sda -DEVTYPE=disk -SEQNUM=917 -ID_ATA=1 -ID_TYPE=disk -ID_BUS=ata -ID_MODEL=ST3250310AS -ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 -ID_REVISION=4.ADA -ID_SERIAL=ST3250310AS_6RYHFE2N -ID_SERIAL_SHORT=6RYHFE2N -ID_ATA_WRITE_CACHE=1 -ID_ATA_WRITE_CACHE_ENABLED=1 -ID_ATA_FEATURE_SET_HPA=1 -ID_ATA_FEATURE_SET_HPA_ENABLED=1 -ID_ATA_FEATURE_SET_PM=1 -ID_ATA_FEATURE_SET_PM_ENABLED=1 -ID_ATA_FEATURE_SET_SECURITY=1 -ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 -ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 -ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 -ID_ATA_FEATURE_SET_SMART=1 -ID_ATA_FEATURE_SET_SMART_ENABLED=1 -ID_ATA_FEATURE_SET_AAM=1 -ID_ATA_FEATURE_SET_AAM_ENABLED=0 -ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 -ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 -ID_ATA_DOWNLOAD_MICROCODE=1 -ID_ATA_SATA=1 -ID_ATA_SATA_SIGNAL_RATE_GEN2=1 -ID_ATA_SATA_SIGNAL_RATE_GEN1=1 -ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N -ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 -ID_PART_TABLE_TYPE=dos -UDISKS_PRESENTATION_NOPOLICY=0 -UDISKS_PARTITION_TABLE=1 -UDISKS_PARTITION_TABLE_SCHEME=mbr -UDISKS_PARTITION_TABLE_COUNT=4 -UDISKS_ATA_SMART_IS_AVAILABLE=1 -MAJOR=8 -MINOR=0 -DEVLINKS=/dev/block/8:0 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0 - -KERNEL[1294230194.816156] remove /devices/platform/vesafb.0/graphics/fb0 (graphics) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/vesafb.0/graphics/fb0 -SUBSYSTEM=graphics -DEVNAME=fb0 -SEQNUM=1261 -MAJOR=29 -MINOR=0 - -KERNEL[1294230194.816570] remove /devices/virtual/vtconsole/vtcon1 (vtconsole) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/virtual/vtconsole/vtcon1 -SUBSYSTEM=vtconsole -SEQNUM=1262 - -KERNEL[1294230194.817059] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 (graphics) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 -SUBSYSTEM=graphics -DEVNAME=fb0 -SEQNUM=1263 -MAJOR=29 -MINOR=0 - -UDEV [1294230194.817683] remove /devices/platform/vesafb.0/graphics/fb0 (graphics) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/platform/vesafb.0/graphics/fb0 -SUBSYSTEM=graphics -DEVNAME=/dev/fb0 -SEQNUM=1261 -PRIMARY_DEVICE_FOR_DISPLAY=1 -MAJOR=29 -MINOR=0 -DEVLINKS=/dev/char/29:0 - -KERNEL[1294230194.817706] add /devices/virtual/vtconsole/vtcon1 (vtconsole) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vtconsole/vtcon1 -SUBSYSTEM=vtconsole -SEQNUM=1264 - -UDEV [1294230194.818728] remove /devices/virtual/vtconsole/vtcon1 (vtconsole) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/devices/virtual/vtconsole/vtcon1 -SUBSYSTEM=vtconsole -SEQNUM=1262 - -UDEV [1294230194.820011] add /devices/virtual/vtconsole/vtcon1 (vtconsole) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/virtual/vtconsole/vtcon1 -SUBSYSTEM=vtconsole -SEQNUM=1264 - -KERNEL[1294230194.830213] add /module/x_tables (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/x_tables -SUBSYSTEM=module -SEQNUM=1265 - -UDEV [1294230194.830647] add /module/x_tables (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/x_tables -SUBSYSTEM=module -SEQNUM=1265 - -KERNEL[1294230194.835089] add /module/ip_tables (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/ip_tables -SUBSYSTEM=module -SEQNUM=1266 - -UDEV [1294230194.835333] add /module/ip_tables (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/ip_tables -SUBSYSTEM=module -SEQNUM=1266 - -KERNEL[1294230194.852366] add /bus/pci/drivers/radeon (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/pci/drivers/radeon -SUBSYSTEM=drivers -SEQNUM=1267 - -UDEV [1294230194.852884] add /bus/pci/drivers/radeon (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/pci/drivers/radeon -SUBSYSTEM=drivers -SEQNUM=1267 - -KERNEL[1294230194.855311] add /module/nf_defrag_ipv4 (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_defrag_ipv4 -SUBSYSTEM=module -SEQNUM=1268 - -UDEV [1294230194.855563] add /module/nf_defrag_ipv4 (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_defrag_ipv4 -SUBSYSTEM=module -SEQNUM=1268 - -KERNEL[1294230194.856411] add /module/vgastate (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vgastate -SUBSYSTEM=module -SEQNUM=1269 - -UDEV [1294230194.856638] add /module/vgastate (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vgastate -SUBSYSTEM=module -SEQNUM=1269 - -KERNEL[1294230194.859825] add /module/vga16fb (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vga16fb -SUBSYSTEM=module -SEQNUM=1270 - -KERNEL[1294230194.860010] add /bus/platform/drivers/vga16fb (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/platform/drivers/vga16fb -SUBSYSTEM=drivers -SEQNUM=1271 - -UDEV [1294230194.860093] add /module/vga16fb (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/vga16fb -SUBSYSTEM=module -SEQNUM=1270 - -UDEV [1294230194.860363] add /bus/platform/drivers/vga16fb (drivers) -UDEV_LOG=3 -ACTION=add -DEVPATH=/bus/platform/drivers/vga16fb -SUBSYSTEM=drivers -SEQNUM=1271 - -KERNEL[1294230194.860517] add /devices/platform/vga16fb.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vga16fb.0 -SUBSYSTEM=platform -MODALIAS=platform:vga16fb -SEQNUM=1272 - -UDEV [1294230194.861254] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0 (pci) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0 -SUBSYSTEM=pci -PCI_CLASS=30000 -PCI_ID=1002:94C1 -PCI_SUBSYS_ID=1028:0D02 -PCI_SLOT_NAME=0000:02:00.0 -MODALIAS=pci:v00001002d000094C1sv00001028sd00000D02bc03sc00i00 -SEQNUM=905 - -UDEV [1294230194.861273] add /devices/platform/vga16fb.0 (platform) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/platform/vga16fb.0 -SUBSYSTEM=platform -MODALIAS=platform:vga16fb -SEQNUM=1272 - -UDEV [1294230194.861845] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -DEVNAME=/dev/dri/card0 -DEVTYPE=drm_minor -SEQNUM=1221 -ACL_MANAGE=1 -PRIMARY_DEVICE_FOR_DISPLAY=1 -MAJOR=226 -MINOR=0 -DEVLINKS=/dev/char/226:0 - -UDEV [1294230194.862111] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/controlD64 -SUBSYSTEM=drm -DEVNAME=/dev/dri/controlD64 -DEVTYPE=drm_minor -SEQNUM=1220 -MAJOR=226 -MINOR=64 -DEVLINKS=/dev/char/226:64 - -UDEV [1294230194.862327] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-9-pin DIN-1 -SUBSYSTEM=drm -SEQNUM=1232 - -UDEV [1294230194.862683] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -HOTPLUG=1 -DEVNAME=/dev/dri/card0 -DEVTYPE=drm_minor -SEQNUM=1233 -ACL_MANAGE=1 -MAJOR=226 -MINOR=0 -DEVLINKS=/dev/char/226:0 - -UDEV [1294230194.862867] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-1 -SUBSYSTEM=drm -SEQNUM=1235 - -UDEV [1294230194.863161] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -HOTPLUG=1 -DEVNAME=/dev/dri/card0 -DEVTYPE=drm_minor -SEQNUM=1236 -ACL_MANAGE=1 -MAJOR=226 -MINOR=0 -DEVLINKS=/dev/char/226:0 - -UDEV [1294230194.863335] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 (drm) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0/card0-DVI-I-2 -SUBSYSTEM=drm -SEQNUM=1238 - -UDEV [1294230194.863616] change /devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 (drm) -UDEV_LOG=3 -ACTION=change -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/drm/card0 -SUBSYSTEM=drm -HOTPLUG=1 -DEVNAME=/dev/dri/card0 -DEVTYPE=drm_minor -SEQNUM=1239 -ACL_MANAGE=1 -MAJOR=226 -MINOR=0 -DEVLINKS=/dev/char/226:0 - -UDEV [1294230194.868901] add /devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 (graphics) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:02.0/0000:02:00.0/graphics/fb0 -SUBSYSTEM=graphics -DEVNAME=/dev/fb0 -SEQNUM=1263 -MAJOR=29 -MINOR=0 -DEVLINKS=/dev/char/29:0 - -KERNEL[1294230194.875337] add /module/nf_conntrack (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_conntrack -SUBSYSTEM=module -SEQNUM=1273 - -UDEV [1294230194.875582] add /module/nf_conntrack (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_conntrack -SUBSYSTEM=module -SEQNUM=1273 - -KERNEL[1294230194.875812] add /kernel/slab/nf_conntrack_c0932380 (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/nf_conntrack_c0932380 -SUBSYSTEM=slab -SEQNUM=1274 - -UDEV [1294230194.875976] add /kernel/slab/nf_conntrack_c0932380 (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/nf_conntrack_c0932380 -SUBSYSTEM=slab -SEQNUM=1274 - -KERNEL[1294230194.876091] add /kernel/slab/:t-0000168 (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/:t-0000168 -SUBSYSTEM=slab -SEQNUM=1275 - -UDEV [1294230194.876266] add /kernel/slab/:t-0000168 (slab) -UDEV_LOG=3 -ACTION=add -DEVPATH=/kernel/slab/:t-0000168 -SUBSYSTEM=slab -SEQNUM=1275 - -KERNEL[1294230194.881395] add /module/nf_conntrack_ipv4 (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_conntrack_ipv4 -SUBSYSTEM=module -SEQNUM=1276 - -UDEV [1294230194.881645] add /module/nf_conntrack_ipv4 (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_conntrack_ipv4 -SUBSYSTEM=module -SEQNUM=1276 - -KERNEL[1294230194.887184] add /module/nf_nat (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_nat -SUBSYSTEM=module -SEQNUM=1277 - -UDEV [1294230194.888088] add /module/nf_nat (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/nf_nat -SUBSYSTEM=module -SEQNUM=1277 - -KERNEL[1294230194.893958] add /module/iptable_nat (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/iptable_nat -SUBSYSTEM=module -SEQNUM=1278 - -UDEV [1294230194.894249] add /module/iptable_nat (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/iptable_nat -SUBSYSTEM=module -SEQNUM=1278 - -UDEV [1294230194.898348] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda3 -SUBSYSTEM=block -DEVNAME=/dev/sda3 -DEVTYPE=partition -SEQNUM=920 -ID_ATA=1 -ID_TYPE=disk -ID_BUS=ata -ID_MODEL=ST3250310AS -ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 -ID_REVISION=4.ADA -ID_SERIAL=ST3250310AS_6RYHFE2N -ID_SERIAL_SHORT=6RYHFE2N -ID_ATA_WRITE_CACHE=1 -ID_ATA_WRITE_CACHE_ENABLED=1 -ID_ATA_FEATURE_SET_HPA=1 -ID_ATA_FEATURE_SET_HPA_ENABLED=1 -ID_ATA_FEATURE_SET_PM=1 -ID_ATA_FEATURE_SET_PM_ENABLED=1 -ID_ATA_FEATURE_SET_SECURITY=1 -ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 -ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 -ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 -ID_ATA_FEATURE_SET_SMART=1 -ID_ATA_FEATURE_SET_SMART_ENABLED=1 -ID_ATA_FEATURE_SET_AAM=1 -ID_ATA_FEATURE_SET_AAM_ENABLED=0 -ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 -ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 -ID_ATA_DOWNLOAD_MICROCODE=1 -ID_ATA_SATA=1 -ID_ATA_SATA_SIGNAL_RATE_GEN2=1 -ID_ATA_SATA_SIGNAL_RATE_GEN1=1 -ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N -ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 -ID_PART_TABLE_TYPE=dos -ID_FS_UUID=b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d -ID_FS_UUID_ENC=b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d -ID_FS_VERSION=1.0 -ID_FS_TYPE=ext4 -ID_FS_USAGE=filesystem -FSTAB_NAME=/dev/sda3 -FSTAB_DIR=/media/sda3 -FSTAB_TYPE=auto -FSTAB_OPTS=noauto,noexec -FSTAB_FREQ=0 -FSTAB_PASSNO=0 -UDISKS_PRESENTATION_NOPOLICY=0 -UDISKS_PARTITION=1 -UDISKS_PARTITION_SCHEME=mbr -UDISKS_PARTITION_NUMBER=3 -UDISKS_PARTITION_TYPE=0x83 -UDISKS_PARTITION_SIZE=140002490880 -UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda -UDISKS_PARTITION_OFFSET=104000440320 -UDISKS_PARTITION_ALIGNMENT_OFFSET=0 -MAJOR=8 -MINOR=3 -DEVLINKS=/dev/block/8:3 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part3 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part3 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part3 /dev/disk/by-uuid/b50f04a8-e9ea-47a7-a1a5-91d62cfdec7d - -KERNEL[1294230194.902123] add /module/ipt_MASQUERADE (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/ipt_MASQUERADE -SUBSYSTEM=module -SEQNUM=1279 - -UDEV [1294230194.902764] add /module/ipt_MASQUERADE (module) -UDEV_LOG=3 -ACTION=add -DEVPATH=/module/ipt_MASQUERADE -SUBSYSTEM=module -SEQNUM=1279 - -UDEV [1294230194.972170] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda2 -SUBSYSTEM=block -DEVNAME=/dev/sda2 -DEVTYPE=partition -SEQNUM=919 -ID_ATA=1 -ID_TYPE=disk -ID_BUS=ata -ID_MODEL=ST3250310AS -ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 -ID_REVISION=4.ADA -ID_SERIAL=ST3250310AS_6RYHFE2N -ID_SERIAL_SHORT=6RYHFE2N -ID_ATA_WRITE_CACHE=1 -ID_ATA_WRITE_CACHE_ENABLED=1 -ID_ATA_FEATURE_SET_HPA=1 -ID_ATA_FEATURE_SET_HPA_ENABLED=1 -ID_ATA_FEATURE_SET_PM=1 -ID_ATA_FEATURE_SET_PM_ENABLED=1 -ID_ATA_FEATURE_SET_SECURITY=1 -ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 -ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 -ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 -ID_ATA_FEATURE_SET_SMART=1 -ID_ATA_FEATURE_SET_SMART_ENABLED=1 -ID_ATA_FEATURE_SET_AAM=1 -ID_ATA_FEATURE_SET_AAM_ENABLED=0 -ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 -ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 -ID_ATA_DOWNLOAD_MICROCODE=1 -ID_ATA_SATA=1 -ID_ATA_SATA_SIGNAL_RATE_GEN2=1 -ID_ATA_SATA_SIGNAL_RATE_GEN1=1 -ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N -ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 -ID_PART_TABLE_TYPE=dos -ID_FS_UUID=1c8dda07-d0ae-4ced-b276-62d499df3b21 -ID_FS_UUID_ENC=1c8dda07-d0ae-4ced-b276-62d499df3b21 -ID_FS_VERSION=1.0 -ID_FS_TYPE=ext4 -ID_FS_USAGE=filesystem -FSTAB_NAME=/dev/sda2 -FSTAB_DIR=/media/sda2 -FSTAB_TYPE=auto -FSTAB_OPTS=noauto,noexec -FSTAB_FREQ=0 -FSTAB_PASSNO=0 -UDISKS_PRESENTATION_NOPOLICY=0 -UDISKS_PARTITION=1 -UDISKS_PARTITION_SCHEME=mbr -UDISKS_PARTITION_NUMBER=2 -UDISKS_PARTITION_TYPE=0x83 -UDISKS_PARTITION_SIZE=100002954240 -UDISKS_PARTITION_FLAGS=boot -UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda -UDISKS_PARTITION_OFFSET=3997486080 -UDISKS_PARTITION_ALIGNMENT_OFFSET=0 -MAJOR=8 -MINOR=2 -DEVLINKS=/dev/block/8:2 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part2 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part2 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part2 /dev/disk/by-uuid/1c8dda07-d0ae-4ced-b276-62d499df3b21 - -UDEV [1294230195.028287] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda4 -SUBSYSTEM=block -DEVNAME=/dev/sda4 -DEVTYPE=partition -SEQNUM=921 -ID_ATA=1 -ID_TYPE=disk -ID_BUS=ata -ID_MODEL=ST3250310AS -ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 -ID_REVISION=4.ADA -ID_SERIAL=ST3250310AS_6RYHFE2N -ID_SERIAL_SHORT=6RYHFE2N -ID_ATA_WRITE_CACHE=1 -ID_ATA_WRITE_CACHE_ENABLED=1 -ID_ATA_FEATURE_SET_HPA=1 -ID_ATA_FEATURE_SET_HPA_ENABLED=1 -ID_ATA_FEATURE_SET_PM=1 -ID_ATA_FEATURE_SET_PM_ENABLED=1 -ID_ATA_FEATURE_SET_SECURITY=1 -ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 -ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 -ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 -ID_ATA_FEATURE_SET_SMART=1 -ID_ATA_FEATURE_SET_SMART_ENABLED=1 -ID_ATA_FEATURE_SET_AAM=1 -ID_ATA_FEATURE_SET_AAM_ENABLED=0 -ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 -ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 -ID_ATA_DOWNLOAD_MICROCODE=1 -ID_ATA_SATA=1 -ID_ATA_SATA_SIGNAL_RATE_GEN2=1 -ID_ATA_SATA_SIGNAL_RATE_GEN1=1 -ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N -ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 -ID_PART_TABLE_TYPE=dos -ID_FS_UUID=51c1376a-926f-4687-879a-22bb137f843c -ID_FS_UUID_ENC=51c1376a-926f-4687-879a-22bb137f843c -ID_FS_VERSION=1.0 -ID_FS_TYPE=ext2 -ID_FS_USAGE=filesystem -UDISKS_PRESENTATION_NOPOLICY=0 -UDISKS_PARTITION=1 -UDISKS_PARTITION_SCHEME=mbr -UDISKS_PARTITION_NUMBER=4 -UDISKS_PARTITION_TYPE=0x44 -UDISKS_PARTITION_SIZE=5996229120 -UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda -UDISKS_PARTITION_OFFSET=244002931200 -UDISKS_PARTITION_ALIGNMENT_OFFSET=0 -MAJOR=8 -MINOR=4 -DEVLINKS=/dev/block/8:4 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part4 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part4 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part4 /dev/disk/by-uuid/51c1376a-926f-4687-879a-22bb137f843c - -UDEV [1294230195.074068] add /devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda/sda1 -SUBSYSTEM=block -DEVNAME=/dev/sda1 -DEVTYPE=partition -SEQNUM=918 -ID_ATA=1 -ID_TYPE=disk -ID_BUS=ata -ID_MODEL=ST3250310AS -ID_MODEL_ENC=ST3250310AS\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20 -ID_REVISION=4.ADA -ID_SERIAL=ST3250310AS_6RYHFE2N -ID_SERIAL_SHORT=6RYHFE2N -ID_ATA_WRITE_CACHE=1 -ID_ATA_WRITE_CACHE_ENABLED=1 -ID_ATA_FEATURE_SET_HPA=1 -ID_ATA_FEATURE_SET_HPA_ENABLED=1 -ID_ATA_FEATURE_SET_PM=1 -ID_ATA_FEATURE_SET_PM_ENABLED=1 -ID_ATA_FEATURE_SET_SECURITY=1 -ID_ATA_FEATURE_SET_SECURITY_ENABLED=0 -ID_ATA_FEATURE_SET_SECURITY_ERASE_UNIT_MIN=0 -ID_ATA_FEATURE_SET_SECURITY_FROZEN=1 -ID_ATA_FEATURE_SET_SMART=1 -ID_ATA_FEATURE_SET_SMART_ENABLED=1 -ID_ATA_FEATURE_SET_AAM=1 -ID_ATA_FEATURE_SET_AAM_ENABLED=0 -ID_ATA_FEATURE_SET_AAM_VENDOR_RECOMMENDED_VALUE=208 -ID_ATA_FEATURE_SET_AAM_CURRENT_VALUE=0 -ID_ATA_DOWNLOAD_MICROCODE=1 -ID_ATA_SATA=1 -ID_ATA_SATA_SIGNAL_RATE_GEN2=1 -ID_ATA_SATA_SIGNAL_RATE_GEN1=1 -ID_SCSI_COMPAT=SATA_ST3250310AS_6RYHFE2N -ID_PATH=pci-0000:00:12.0-scsi-0:0:0:0 -ID_PART_TABLE_TYPE=dos -ID_FS_UUID=a1baed6c-2b7d-452b-b894-1d1b8edf321a -ID_FS_UUID_ENC=a1baed6c-2b7d-452b-b894-1d1b8edf321a -ID_FS_VERSION=2 -ID_FS_TYPE=swap -ID_FS_USAGE=other -FSTAB_NAME=/dev/sda1 -FSTAB_DIR=swap -FSTAB_TYPE=swap -FSTAB_OPTS=defaults -FSTAB_FREQ=0 -FSTAB_PASSNO=0 -UDISKS_PRESENTATION_NOPOLICY=0 -UDISKS_PARTITION=1 -UDISKS_PARTITION_SCHEME=mbr -UDISKS_PARTITION_NUMBER=1 -UDISKS_PARTITION_TYPE=0x82 -UDISKS_PARTITION_SIZE=3997453824 -UDISKS_PARTITION_SLAVE=/sys/devices/pci0000:00/0000:00:12.0/host0/target0:0:0/0:0:0:0/block/sda -UDISKS_PARTITION_OFFSET=32256 -UDISKS_PARTITION_ALIGNMENT_OFFSET=0 -MAJOR=8 -MINOR=1 -DEVLINKS=/dev/block/8:1 /dev/disk/by-id/ata-ST3250310AS_6RYHFE2N-part1 /dev/disk/by-id/scsi-SATA_ST3250310AS_6RYHFE2N-part1 /dev/disk/by-path/pci-0000:00:12.0-scsi-0:0:0:0-part1 /dev/disk/by-uuid/a1baed6c-2b7d-452b-b894-1d1b8edf321a - -UDEV [1294230195.240447] add /devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 (block) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/pci0000:00/0000:00:12.0/host1/target1:0:0/1:0:0:0/block/sr0 -SUBSYSTEM=block -DEVNAME=/dev/sr0 -DEVTYPE=disk -SEQNUM=932 -ID_CDROM=1 -ID_CDROM_CD_R=1 -ID_CDROM_CD_RW=1 -ID_CDROM_DVD=1 -ID_CDROM_DVD_R=1 -ID_CDROM_DVD_RW=1 -ID_CDROM_DVD_RAM=1 -ID_CDROM_DVD_PLUS_R=1 -ID_CDROM_DVD_PLUS_RW=1 -ID_CDROM_DVD_PLUS_R_DL=1 -ID_CDROM_MRW=1 -ID_CDROM_MRW_W=1 -ID_SCSI=1 -ID_VENDOR=HL-DT-ST -ID_VENDOR_ENC=HL-DT-ST -ID_MODEL=DVD-RAM_GSA-H60L -ID_MODEL_ENC=DVD-RAM\x20GSA-H60L -ID_REVISION=R90C -ID_TYPE=cd -ID_BUS=scsi -ID_PATH=pci-0000:00:12.0-scsi-1:0:0:0 -ACL_MANAGE=1 -UDISKS_PRESENTATION_NOPOLICY=0 -MAJOR=11 -MINOR=0 -DEVLINKS=/dev/block/11:0 /dev/scd0 /dev/disk/by-path/pci-0000:00:12.0-scsi-1:0:0:0 /dev/cdrom /dev/cdrw /dev/dvd /dev/dvdrw - -KERNEL[1294230197.361633] remove /bus/platform/drivers/floppy (drivers) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/bus/platform/drivers/floppy -SUBSYSTEM=drivers -SEQNUM=1280 - -UDEV [1294230197.362085] remove /bus/platform/drivers/floppy (drivers) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/bus/platform/drivers/floppy -SUBSYSTEM=drivers -SEQNUM=1280 - -KERNEL[1294230197.378024] remove /module/floppy (module) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/module/floppy -SUBSYSTEM=module -SEQNUM=1281 - -UDEV [1294230197.378043] remove /module/floppy (module) -UDEV_LOG=3 -ACTION=remove -DEVPATH=/module/floppy -SUBSYSTEM=module -SEQNUM=1281 - -UDEV [1294230197.378558] add /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 (acpi) -UDEV_LOG=3 -ACTION=add -DEVPATH=/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/PNP0700:00 -SUBSYSTEM=acpi -MODALIAS=acpi:PNP0700: -SEQNUM=868 - diff --git a/resources/config/1/uniontmp/var/log/ufw.log b/resources/config/1/uniontmp/var/log/ufw.log deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/log/user.log b/resources/config/1/uniontmp/var/log/user.log deleted file mode 100755 index 0da47ed..0000000 --- a/resources/config/1/uniontmp/var/log/user.log +++ /dev/null @@ -1,3 +0,0 @@ -Jan 5 13:28:54 lsfks20 pulseaudio[3791]: pid.c: Daemon already running. -Jan 5 13:35:46 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) -Jan 5 13:35:59 lsfks20 sudo: pam_ldap: error trying to bind as user "uid=mp57,ou=people,dc=uni-freiburg,dc=de" (Invalid credentials) diff --git a/resources/config/1/uniontmp/var/log/wtmp b/resources/config/1/uniontmp/var/log/wtmp deleted file mode 100755 index a1666e3..0000000 Binary files a/resources/config/1/uniontmp/var/log/wtmp and /dev/null differ diff --git a/resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer b/resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer deleted file mode 100755 index c9b57a6..0000000 --- a/resources/config/1/uniontmp/var/opt/openslx/bin/vmplayer +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# written by OpenSLX-plugin 'vmware' in Stage1 -# radically simplified version of the original script vmplayer by VMware Inc. -PREFIX=/usr/lib/vmware # depends on the vmware location -exec "$PREFIX"'/lib/wrapper-gtk24.sh' \ - "$PREFIX"'/lib' \ - "$PREFIX"'/bin/vmplayer' \ - "$PREFIX"'/libconf' "$@" diff --git a/resources/config/1/uniontmp/var/opt/openslx/bin/vmware b/resources/config/1/uniontmp/var/opt/openslx/bin/vmware deleted file mode 100755 index 8b568f5..0000000 --- a/resources/config/1/uniontmp/var/opt/openslx/bin/vmware +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -# written by OpenSLX-plugin 'vmware' in Stage1 -# radically simplified version of the original script vmware by VMware Inc. -PREFIX=/usr/lib/vmware # depends on the vmware location -exec "$PREFIX"'/lib/wrapper-gtk24.sh' \ - "$PREFIX"'/lib' \ - "$PREFIX"'/bin/vmware' \ - "$PREFIX"'/libconf' "$@" diff --git a/resources/config/1/uniontmp/var/run/utmp b/resources/config/1/uniontmp/var/run/utmp deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet1.leases b/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet1.leases deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet8.leases b/resources/config/1/uniontmp/var/run/vmware/udhcpd-vmnet8.leases deleted file mode 100755 index e69de29..0000000 diff --git a/resources/config/1/uniontmp/var/tmp/host_0 b/resources/config/1/uniontmp/var/tmp/host_0 deleted file mode 100755 index 5743e64..0000000 Binary files a/resources/config/1/uniontmp/var/tmp/host_0 and /dev/null differ diff --git a/resources/config/1/uniontmp/whitelist.sh b/resources/config/1/uniontmp/whitelist.sh deleted file mode 100755 index d75410e..0000000 --- a/resources/config/1/uniontmp/whitelist.sh +++ /dev/null @@ -1,306 +0,0 @@ -#!/bin/sh -chmod 644 blacklist.txt -chmod 755 etc -chmod 755 etc/rc0.d -chmod 755 etc/rc6.d -chmod 755 etc/rc3.d -chmod 777 etc/rc3.d/K002nscd -chmod 777 etc/rc3.d/K02vmware-env -chmod 777 etc/rc3.d/S20vbox-slx -chmod 777 etc/rc3.d/S20vmware-env -chmod 777 etc/rc3.d/S20nscd -chmod 777 etc/rc3.d/K02vbox-slx -chmod 644 etc/logfile -chmod 644 etc/profile -chmod 755 etc/udev -chmod 755 etc/udev/rules.d -chmod 644 etc/udev/rules.d/70-persistent-cd.rules -chmod 644 etc/udev/rules.d/70-persistent-net.rules -chmod 644 etc/udev/rules.d/90-vboxusb.rules -chmod 755 etc/opt -chmod 755 etc/opt/openslx -chmod 755 etc/opt/openslx/plugins -chmod 755 etc/opt/openslx/plugins/virtualbox -chmod 644 etc/opt/openslx/plugins/virtualbox/virtualbox.include -chmod 644 etc/opt/openslx/plugins/virtualbox/run-virt.include -chmod 644 etc/opt/openslx/plugins/virtualbox/virtualbox.conf -chmod 644 etc/opt/openslx/plugins/virtualbox/machine.include -chmod 755 etc/opt/openslx/plugins/sysrqshutdown -chmod 644 etc/opt/openslx/plugins/sysrqshutdown/sysrqshutdown.conf -chmod 755 etc/opt/openslx/plugins/vmchooser -chmod 644 etc/opt/openslx/plugins/vmchooser/vmchooser.conf -chmod 755 etc/opt/openslx/plugins/vmchooser/loopimg -chmod 1777 etc/opt/openslx/plugins/vmchooser/fd-loop -chmod 755 etc/opt/openslx/plugins/vmware -chmod 644 etc/opt/openslx/plugins/vmware/run-virt.include -chmod 644 etc/opt/openslx/plugins/vmware/vmware.conf -chmod 755 etc/opt/openslx/plugins/virtualization -chmod 644 etc/opt/openslx/plugins/virtualization/virtualization.conf -chmod 644 etc/opt/openslx/udhcpd.conf -chmod 755 etc/alternatives -chmod 777 etc/alternatives/x-session-manager.1.gz -chmod 777 etc/alternatives/x-session-manager -chmod 777 etc/alternatives/x-window-manager -chmod 755 etc/rc4.d -chmod 644 etc/fstab -chmod 777 etc/ldap.conf -chmod 755 etc/rc1.d -chmod 755 etc/pam.d -chmod 644 etc/pam.d/common-account -chmod 644 etc/pam.d/common-auth -chmod 644 etc/pam.d/common-session -chmod 755 etc/kde4 -chmod 755 etc/kde4/kdm -chmod 644 etc/kde4/kdm/kdmrc -chmod 755 etc/kde4/kdm/Xreset -chmod 755 etc/kde4/kdm/Xreset.system -chmod 755 etc/dbus-1 -chmod 755 etc/dbus-1/system.d -chmod 644 etc/dbus-1/system.d/hal.conf -chmod 755 etc/rc5.d -chmod 600 etc/krb5.keytab -chmod 644 etc/auto.misc -chmod 755 etc/default -chmod 644 etc/default/nfs-common -chmod 644 etc/default/locale -chmod 644 etc/default/autofs -chmod 755 etc/init.d -chmod 777 etc/init.d/vmware-env -chmod 777 etc/init.d/vbox-slx -chmod 744 etc/init.d/boot.slx -chmod 755 etc/security -chmod 644 etc/security/group.conf -chmod 755 etc/X11 -chmod 755 etc/X11/xorg.conf.d -chmod 644 etc/X11/default-display-manager -chmod 777 etc/X11/X -chmod 644 etc/X11/xorg.conf -chmod 644 etc/machine-setup -chmod 644 etc/krb5.conf -chmod 640 etc/shadow -chmod 644 etc/idmapd.conf -chmod 755 etc/modprobe.d -chmod 644 etc/modprobe.d/aliases.conf -chmod 644 etc/modprobe.d/blacklist-pcspkr.conf -chmod 755 etc/vmware -chmod 644 etc/vmware/vmnet-natd-8.mac -chmod 644 etc/vmware/config -chmod 644 etc/vmware/nat.conf -chmod 755 etc/vmware/udhcpd -chmod 644 etc/vmware/udhcpd/udhcpd-vmnet1.conf -chmod 644 etc/vmware/udhcpd/udhcpd-vmnet8.conf -chmod 755 etc/ldap -chmod 644 etc/ldap/ldap.conf -chmod 644 etc/nsswitch.conf -chmod 644 etc/mtab -chmod 644 etc/auto.master -chmod 644 etc/issue -chmod 644 etc/hosts -chmod 755 etc/init.inactive -chmod 644 etc/init.inactive/ufw.conf -chmod 644 etc/init.inactive/mountall-shell.conf -chmod 644 etc/init.inactive/network-manager.conf -chmod 644 etc/init.inactive/anacron.conf -chmod 644 etc/init.inactive/mountall-net.conf -chmod 644 etc/init.inactive/avahi-daemon.conf -chmod 644 etc/init.inactive/network-interface-security.conf -chmod 644 etc/init.inactive/ureadahead.conf -chmod 644 etc/init.inactive/network-interface.conf -chmod 644 etc/init.inactive/cryptdisks-udev.conf -chmod 644 etc/init.inactive/atd.conf -chmod 644 etc/init.inactive/apport.conf -chmod 644 etc/init.inactive/bridge-network-interface.conf -chmod 644 etc/init.inactive/plymouth-log.conf -chmod 644 etc/init.inactive/gdm.conf -chmod 644 etc/init.inactive/qemu-kvm.conf -chmod 644 etc/init.inactive/cryptdisks-enable.conf -chmod 644 etc/init.inactive/cron.conf -chmod 644 etc/init.inactive/screen-cleanup.conf -chmod 644 etc/init.inactive/README -chmod 644 etc/init.inactive/plymouth-stop.conf -chmod 644 etc/init.inactive/mountall-reboot.conf -chmod 644 etc/init.inactive/plymouth-splash.conf -chmod 644 etc/init.inactive/ureadahead-other.conf -chmod 644 etc/init.inactive/hostname.conf -chmod 644 etc/init.inactive/plymouth.conf -chmod 644 etc/init.inactive/failsafe-x.conf -chmod 755 etc/rcS.d -chmod 755 etc/init -chmod 644 etc/init/hwclock.conf -chmod 644 etc/init/dmesg.conf -chmod 644 etc/init/rcS.conf -chmod 644 etc/init/udevmonitor.conf -chmod 644 etc/init/upstart-udev-bridge.conf -chmod 644 etc/init/udev-finish.conf -chmod 644 etc/init/rsyslog.conf -chmod 644 etc/init/tty5.conf -chmod 644 etc/init/rpc_pipefs.conf -chmod 644 etc/init/tty6.conf -chmod 644 etc/init/tty1.conf -chmod 644 etc/init/mounted-dev.conf -chmod 644 etc/init/tty4.conf -chmod 644 etc/init/procps.conf -chmod 644 etc/init/gssd.conf -chmod 644 etc/init/tty2.conf -chmod 644 etc/init/hwclock-save.conf -chmod 644 etc/init/module-init-tools.conf -chmod 644 etc/init/networking.conf -chmod 644 etc/init/udev.conf -chmod 644 etc/init/udevtrigger.conf -chmod 644 etc/init/console-setup.conf -chmod 644 etc/init/rc-sysinit.conf -chmod 644 etc/init/rc.conf -chmod 644 etc/init/ssh.conf -chmod 644 etc/init/irqbalance.conf -chmod 644 etc/init/alsa-mixer-save.conf -chmod 644 etc/init/idmapd.conf -chmod 644 etc/init/acpid.conf -chmod 644 etc/init/mounted-tmp.conf -chmod 644 etc/init/mounted-varrun.conf -chmod 644 etc/init/control-alt-delete.conf -chmod 644 etc/init/mountall.conf -chmod 644 etc/init/portmap.conf -chmod 644 etc/init/tty3.conf -chmod 644 etc/init/dbus.conf -chmod 644 etc/init/statd.conf -chmod 644 etc/init/autofs.conf -chmod 644 etc/init/kdm.conf -chmod 777 etc/localtime -chmod 755 etc/rc2.d -chmod 777 etc/rc2.d/K002nscd -chmod 777 etc/rc2.d/K02vmware-env -chmod 777 etc/rc2.d/S20vbox-slx -chmod 777 etc/rc2.d/S20vmware-env -chmod 777 etc/rc2.d/S20nscd -chmod 777 etc/rc2.d/K02vbox-slx -chmod 644 etc/passwd -chmod 644 etc/resolv.conf -chmod 755 lib -chmod 755 lib/init -chmod 755 lib/init/rw -chmod 755 media -chmod 755 media/sda2 -chmod 755 media/sda3 -chmod 555 misc -chmod 755 root -chmod 700 root/.kde -chmod 777 root/.kde/tmp-lsfks20 -chmod 777 root/.kde/cache-lsfks20 -chmod 755 root/.ssh -chmod 644 root/.ssh/authorized_keys -chmod 1777 tmp -chmod 700 tmp/orbit-mp57 -chmod 700 tmp/orbit-mp57/bonobo-activation-register-7f78e485512b489eeed8a3f14d2462c6.lock -chmod 644 tmp/orbit-mp57/bonobo-activation-server-7f78e485512b489eeed8a3f14d2462c6-ior -chmod 700 tmp/vmware-root -chmod 644 tmp/vmware-root/usbarb-3200.log -chmod 600 tmp/krb5cc_machine_PUBLIC.ADS.UNI-FREIBURG.DE -chmod 700 tmp/kde-root -chmod 600 tmp/krb5cc_14620_43Qjbp -chmod 644 tmp/qtsingleapp-pvsgui-6f5c-391c-lockfile -chmod 700 tmp/pulse-b9qYDvw8bJls -chmod 600 tmp/pulse-b9qYDvw8bJls/pid -chmod 1777 tmp/.ICE-unix -chmod 700 tmp/.esd-14620 -chmod 700 tmp/plugtmp -chmod 600 tmp/plugtmp/plugin-all_V25_spec_160_600.xml -chmod 644 tmp/whitelist -chmod 700 tmp/ssh-vKkIiL3434 -chmod 1777 tmp/.X11-unix -chmod 700 tmp/keyring-tEWVbP -chmod 700 tmp/virtual-mp57.s0ExfM -chmod 444 tmp/.X0-lock -chmod 755 uniontmp -chmod 755 uniontmp/uniontmp -chmod 755 usr -chmod 755 usr/share -chmod 755 usr/share/xsessions -chmod 755 usr/share/man -chmod 755 usr/share/man/man1 -chmod 777 usr/share/man/man1/x-session-manager.1.gz -chmod 755 usr/bin -chmod 777 usr/bin/x-session-manager -chmod 777 usr/bin/x-window-manager -chmod 755 var -chmod 755 var/opt -chmod 755 var/opt/openslx -chmod 755 var/opt/openslx/bin -chmod 755 var/opt/openslx/bin/vmplayer -chmod 777 var/opt/openslx/bin/vmchooser -chmod 755 var/opt/openslx/bin/vmware -chmod 777 var/opt/openslx/bin/run-virt.sh -chmod 755 var/cache -chmod 755 var/cache/nscd -chmod 600 var/cache/nscd/services -chmod 600 var/cache/nscd/group -chmod 600 var/cache/nscd/passwd -chmod 755 var/cache/apt -chmod 755 var/cache/apt/archives -chmod 755 var/cache/apt/archives/partial -chmod 755 var/spool -chmod 755 var/spool/cron -chmod 1777 var/tmp -chmod 700 var/tmp/kdecache-root -chmod 600 var/tmp/host_0 -chmod 755 var/log -chmod 640 var/log/daemon.log -chmod 640 var/log/mail.log -chmod 640 var/log/mail.warn -chmod 640 var/log/mail.info -chmod 644 var/log/dmesg.0 -chmod 644 var/log/udev -chmod 640 var/log/user.log -chmod 644 var/log/lastlog -chmod 755 var/log/ConsoleKit -chmod 644 var/log/ConsoleKit/history -chmod 640 var/log/kern.log -chmod 640 var/log/debug -chmod 640 var/log/syslog -chmod 640 var/log/messages -chmod 755 var/log/news -chmod 640 var/log/news/news.err -chmod 640 var/log/news/news.crit -chmod 640 var/log/news/news.notice -chmod 644 var/log/kdm.log -chmod 640 var/log/mail.err -chmod 644 var/log/dmesg -chmod 644 var/log/Xorg.0.log -chmod 640 var/log/ufw.log -chmod 644 var/log/wtmp -chmod 640 var/log/lpr.log -chmod 1777 var/log/openslx -chmod 644 var/log/pm-powersave.log -chmod 640 var/log/auth.log -chmod 755 var/run -chmod 755 var/run/rsyslog -chmod 755 var/run/kdm -chmod 755 var/run/xauth -chmod 644 var/run/utmp -chmod 1777 var/run/vmware -chmod 644 var/run/vmware/udhcpd-vmnet8.leases -chmod 644 var/run/vmware/udhcpd-vmnet1.leases -chmod 777 var/run/screen -chmod 755 var/run/sysconfig -chmod 755 var/run/sysconfig/tmp -chmod 755 var/run/sshd -chmod 755 var/X11R6 -chmod 755 var/X11R6/lib -chmod 755 var/lib -chmod 755 var/lib/bluetooth -chmod 755 var/lib/acpi_support -chmod 755 var/lib/dpkg -chmod 755 var/lib/dpkg/alternatives -chmod 644 var/lib/dpkg/alternatives/x-session-manager -chmod 644 var/lib/dpkg/alternatives/x-window-manager -chmod 755 var/lib/xkb -chmod 644 var/lib/xkb/server-02D8252E59564A234380F1E5417646A9DB3B7452.xkm -chmod 644 var/lib/xkb/server-827EDA38CFA95D782EF9788B1D552D654640FC21.xkm -chmod 755 var/lib/virt -chmod 755 var/lib/virt/vmware -chmod 755 var/lib/nobody -chmod 755 var/lib/openslx -chmod 755 var/lib/openslx/bin -chmod 755 var/lib/openslx/bin/automount-home.pl -chmod 755 var/lib/openslx/bin/krb5_mount_mode.pl -chmod 755 var/lib/openslx/bin/sslconnect -chmod 644 whitelist.sh -- cgit v1.2.3-55-g7522 From 9498644571a866c5f6f21f98f1ceb3e220bd3093 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 10 Mar 2011 18:07:55 +0100 Subject: ResourceController korrigiert --- application/controllers/ResourceController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'application') diff --git a/application/controllers/ResourceController.php b/application/controllers/ResourceController.php index 2cf0565..3ee7005 100644 --- a/application/controllers/ResourceController.php +++ b/application/controllers/ResourceController.php @@ -25,8 +25,8 @@ class ResourceController extends Zend_Controller_Action $bootosID = $this->_request->getParam('bootosID'); $bootosID = $this->alphaID($bootosID, true, false, $this->pass); $bootosID -= $this->startval; - - if(is_dir("../resources/config/$bootosID/uniontmp/") && is_numeric($bootosID)){ + + if(is_dir("../resources/bootos/$bootosID/initramfs/") && is_numeric($bootosID)){ header('Content-Type: application/x-gzip'); $content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $HTTP_USER_AGENT) == 'IE') ? 'inline' : 'attachment'; @@ -50,7 +50,7 @@ class ResourceController extends Zend_Controller_Action $configID = $this->alphaID($configID, true, false, $this->pass); $configID -= $this->startval; - if(is_dir("../resources/config/$configID/uniontmp/") && is_numeric($configID)){ + if(is_dir("../resources/config/$configID/config/") && is_numeric($configID)){ header('Content-Type: application/x-gzip'); $content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $HTTP_USER_AGENT) == 'IE') ? 'inline' : 'attachment'; @@ -73,7 +73,7 @@ class ResourceController extends Zend_Controller_Action $bootosID = $this->alphaID($bootosID, true, false, $this->pass); $bootosID -= $this->startval; - if(is_dir("../resources/config/$bootosID/uniontmp/") && is_numeric($bootosID)){ + if(is_dir("../resources/bootos/$bootosID/kernel/") && is_numeric($bootosID)){ header('Content-Type: application/x-gzip'); $content_disp = ( ereg('MSIE ([0-9].[0-9]{1,2})', $HTTP_USER_AGENT) == 'IE') ? 'inline' : 'attachment'; -- cgit v1.2.3-55-g7522 From 44110c242d23d30e5adca0aa0c74a024dcc27549 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 10 Mar 2011 19:52:03 +0100 Subject: verschleierung der primary keys --- application/controllers/ResourceController.php | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) (limited to 'application') diff --git a/application/controllers/ResourceController.php b/application/controllers/ResourceController.php index 3ee7005..b70c589 100644 --- a/application/controllers/ResourceController.php +++ b/application/controllers/ResourceController.php @@ -4,7 +4,7 @@ class ResourceController extends Zend_Controller_Action { private $startval = 878923467; - private $pass = "lsfks"; + private $pass = array('lsfks_!$fks', 'un!fr€iburg', '0pen$lx_rulez', 'rand0mText'); public function init() { @@ -23,7 +23,7 @@ class ResourceController extends Zend_Controller_Action $this->_helper->viewRenderer->setNoRender(); $bootosID = $this->_request->getParam('bootosID'); - $bootosID = $this->alphaID($bootosID, true, false, $this->pass); + $bootosID = $this->alphaID($bootosID, true, false, $this->pass[0]); $bootosID -= $this->startval; if(is_dir("../resources/bootos/$bootosID/initramfs/") && is_numeric($bootosID)){ @@ -47,7 +47,7 @@ class ResourceController extends Zend_Controller_Action $this->_helper->viewRenderer->setNoRender(); $configID = $this->_request->getParam('configID'); - $configID = $this->alphaID($configID, true, false, $this->pass); + $configID = $this->alphaID($configID, true, false, $this->pass[1]); $configID -= $this->startval; if(is_dir("../resources/config/$configID/config/") && is_numeric($configID)){ @@ -70,7 +70,7 @@ class ResourceController extends Zend_Controller_Action $this->_helper->viewRenderer->setNoRender(); $bootosID = $this->_request->getParam('bootosID'); - $bootosID = $this->alphaID($bootosID, true, false, $this->pass); + $bootosID = $this->alphaID($bootosID, true, false, $this->pass[2]); $bootosID -= $this->startval; if(is_dir("../resources/bootos/$bootosID/kernel/") && is_numeric($bootosID)){ @@ -93,6 +93,8 @@ class ResourceController extends Zend_Controller_Action $this->_helper->viewRenderer->setNoRender(); $bmeID = $this->_request->getParam('bootmenuentryID'); + $bmeID = $this->alphaID($bmeID, true, false, $this->pass[3]); + $bmeID -= $this->startval; if(is_numeric($bmeID)){ $bmemapper = new Application_Model_BootMenuEntriesMapper(); @@ -125,15 +127,17 @@ class ResourceController extends Zend_Controller_Action if($bme->getBootosID() != null){ $bootos = $bootosmapper->find($bme->getBootosID()); - $alpha_bootos = $this->alphaID($bootos->getID()+$this->startval, false, false, $this->pass); - $alpha_config = $this->alphaID($bme->getConfigID()+$this->startval, false, false, $this->pass); + $alpha_init_bootos = $this->alphaID($bootos->getID()+$this->startval, false, false, $this->pass[0]); + $alpha_kernel_bootos = $this->alphaID($bootos->getID()+$this->startval, false, false, $this->pass[2]); + $alpha_bmeID = $this->alphaID($bmeID+$this->startval, false, false, $this->pass[3]); + $alpha_config = $this->alphaID($bme->getConfigID()+$this->startval, false, false, $this->pass[1]); $return_val = array( - 'kernel' => $this->generateURL('getkernel', 'bootosID', $alpha_bootos), - 'initramfs' => $this->generateURL('getinitramfs', 'bootosID', $alpha_bootos), - 'kcl' => $this->generateURL('getkcl', 'bootmenuentryID', $bmeID), - 'config' => $this->generateURL('getconfig', 'configID', $alpha_config) + 'kernel' => $this->generateURL('getkernel', 'bootosID', $alpha_kernel_bootos), + 'initramfs' => $this->generateURL('getinitramfs', 'bootosID', $alpha_init_bootos), + 'kcl' => $this->generateURL('getkcl', 'bootmenuentryID', $alpha_bmeID), + 'config' => $alpha_config ); echo json_encode($return_val); -- cgit v1.2.3-55-g7522 From ae7d2ce03b014db0047194199d5962b77f9b1a0a Mon Sep 17 00:00:00 2001 From: michael pereira Date: Thu, 10 Mar 2011 21:19:06 +0100 Subject: postinit.local angepasst, extrahiert aus der kernelcommandline die configid --- application/forms/BootmenuEntriesAdd.php | 2 +- application/forms/BootmenuEntriesEdit.php | 2 +- application/forms/BootosCreate.php | 2 +- application/forms/BootosEdit.php | 2 +- resources/bootos/1/initramfs/initramfs | Bin 6020724 -> 6077246 bytes resources/config/1/config/etc/nsswitch.conf | 29 +++++++++---------- resources/config/1/config/etc/pam.d/common-account | 30 ++++++++++++++++---- resources/config/1/config/etc/pam.d/common-auth | 22 +++++++++++---- resources/config/1/config/etc/pam.d/common-session | 31 +++++++++++++++++---- 9 files changed, 84 insertions(+), 36 deletions(-) (limited to 'application') diff --git a/application/forms/BootmenuEntriesAdd.php b/application/forms/BootmenuEntriesAdd.php index 4aea750..6981619 100644 --- a/application/forms/BootmenuEntriesAdd.php +++ b/application/forms/BootmenuEntriesAdd.php @@ -59,7 +59,7 @@ class Application_Form_BootmenuEntriesAdd extends Zend_Form 'validators' => array( array('StringLength', false, array(0, 50)), ), - 'required' => true, + 'required' => false, 'cols' => 50, 'rows' => 5, 'label' => 'KCL:', diff --git a/application/forms/BootmenuEntriesEdit.php b/application/forms/BootmenuEntriesEdit.php index 1548129..6dc1aab 100644 --- a/application/forms/BootmenuEntriesEdit.php +++ b/application/forms/BootmenuEntriesEdit.php @@ -60,7 +60,7 @@ class Application_Form_BootmenuEntriesEdit extends Zend_Form 'validators' => array( array('StringLength', false, array(0, 50)), ), - 'required' => true, + 'required' => false, 'cols' => 50, 'rows' => 5, 'label' => 'KCL:', diff --git a/application/forms/BootosCreate.php b/application/forms/BootosCreate.php index a6d74c6..8f699ce 100644 --- a/application/forms/BootosCreate.php +++ b/application/forms/BootosCreate.php @@ -78,7 +78,7 @@ class Application_Form_BootosCreate extends Zend_Form 'validators' => array( array('StringLength', false, array(0, 50)), ), - 'required' => true, + 'required' => false, 'rows' => 5, 'cols' => 50, 'label' => 'Default-KCL:', diff --git a/application/forms/BootosEdit.php b/application/forms/BootosEdit.php index 572e712..641429d 100644 --- a/application/forms/BootosEdit.php +++ b/application/forms/BootosEdit.php @@ -86,7 +86,7 @@ class Application_Form_BootosEdit extends Zend_Form 'validators' => array( array('StringLength', false, array(0, 50)), ), - 'required' => true, + 'required' => false, 'rows' => 5, 'cols' => 50, 'label' => 'Default-KCL:', diff --git a/resources/bootos/1/initramfs/initramfs b/resources/bootos/1/initramfs/initramfs index e7bfa9e..20fc809 100644 Binary files a/resources/bootos/1/initramfs/initramfs and b/resources/bootos/1/initramfs/initramfs differ diff --git a/resources/config/1/config/etc/nsswitch.conf b/resources/config/1/config/etc/nsswitch.conf index 7251f2c..6886def 100755 --- a/resources/config/1/config/etc/nsswitch.conf +++ b/resources/config/1/config/etc/nsswitch.conf @@ -1,22 +1,19 @@ -# file copied from configuration package (rootfs/etc/nsswitch.conf) -# # /etc/nsswitch.conf # +# Example configuration of GNU Name Service Switch functionality. +# If you have the `glibc-doc-reference' and `info' packages installed, try: +# `info libc "Name Service Switch"' for information about this file. -passwd: files ldap -group: files ldap +passwd: compat +group: compat +shadow: compat -hosts: files dns -networks: files dns +hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 +networks: files -services: files -protocols: files -rpc: files -ethers: files -netmasks: files -netgroup: files -publickey: files +protocols: db files +services: db files +ethers: db files +rpc: db files -bootparams: files -automount: files nis -aliases: files +netgroup: nis diff --git a/resources/config/1/config/etc/pam.d/common-account b/resources/config/1/config/etc/pam.d/common-account index 3caf0dd..316b173 100755 --- a/resources/config/1/config/etc/pam.d/common-account +++ b/resources/config/1/config/etc/pam.d/common-account @@ -1,5 +1,25 @@ -# file copied from configuration package (rootfs/etc/pam.d/common-account) -account requisite pam_unix.so -account [success=ok new_authtok_reqd=ok ignore=ignore default=bad user_unknown=ignore] pam_krb5.so use_first_pass -account sufficient pam_localuser.so -account required pam_ldap.so use_first_pass +# +# /etc/pam.d/common-account - authorization settings common to all services +# +# This file is included from other service-specific PAM config files, +# and should contain a list of the authorization modules that define +# the central access policy for use on the system. The default is to +# only deny service to users whose accounts are expired in /etc/shadow. +# +# As of pam 1.0.1-6, this file is managed by pam-auth-update by default. +# To take advantage of this, it is recommended that you configure any +# local modules either before or after the default block, and use +# pam-auth-update to manage selection of other modules. See +# pam-auth-update(8) for details. +# + +# here are the per-package modules (the "Primary" block) +account [success=1 new_authtok_reqd=done default=ignore] pam_unix.so +# here's the fallback if no module succeeds +account requisite pam_deny.so +# prime the stack with a positive return value if there isn't one already; +# this avoids us returning an error just because nothing sets a success code +# since the modules above will each just jump around +account required pam_permit.so +# and here are more per-package modules (the "Additional" block) +# end of pam-auth-update config diff --git a/resources/config/1/config/etc/pam.d/common-auth b/resources/config/1/config/etc/pam.d/common-auth index 5b8c00b..5facfa2 100755 --- a/resources/config/1/config/etc/pam.d/common-auth +++ b/resources/config/1/config/etc/pam.d/common-auth @@ -1,4 +1,3 @@ -# file copied from configuration package (rootfs/etc/pam.d/common-auth) # # /etc/pam.d/common-auth - authentication settings common to all services # @@ -8,8 +7,19 @@ # (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the # traditional Unix authentication mechanisms. # -auth required pam_env.so -auth optional pam_group.so -auth sufficient pam_unix.so -auth sufficient pam_krb5.so use_first_pass -auth required pam_ldap.so use_first_pass +# As of pam 1.0.1-6, this file is managed by pam-auth-update by default. +# To take advantage of this, it is recommended that you configure any +# local modules either before or after the default block, and use +# pam-auth-update to manage selection of other modules. See +# pam-auth-update(8) for details. + +# here are the per-package modules (the "Primary" block) +auth [success=1 default=ignore] pam_unix.so nullok_secure +# here's the fallback if no module succeeds +auth requisite pam_deny.so +# prime the stack with a positive return value if there isn't one already; +# this avoids us returning an error just because nothing sets a success code +# since the modules above will each just jump around +auth required pam_permit.so +# and here are more per-package modules (the "Additional" block) +# end of pam-auth-update config diff --git a/resources/config/1/config/etc/pam.d/common-session b/resources/config/1/config/etc/pam.d/common-session index aec02b8..464d41d 100755 --- a/resources/config/1/config/etc/pam.d/common-session +++ b/resources/config/1/config/etc/pam.d/common-session @@ -1,5 +1,26 @@ -# file copied from configuration package (rootfs/etc/pam.d/common-session) -session required pam_limits.so -session required pam_unix.so -session optional pam_krb5.so -session optional pam_umask.so +# +# /etc/pam.d/common-session - session-related modules common to all services +# +# This file is included from other service-specific PAM config files, +# and should contain a list of modules that define tasks to be performed +# at the start and end of sessions of *any* kind (both interactive and +# non-interactive). +# +# As of pam 1.0.1-6, this file is managed by pam-auth-update by default. +# To take advantage of this, it is recommended that you configure any +# local modules either before or after the default block, and use +# pam-auth-update to manage selection of other modules. See +# pam-auth-update(8) for details. + +# here are the per-package modules (the "Primary" block) +session [default=1] pam_permit.so +# here's the fallback if no module succeeds +session requisite pam_deny.so +# prime the stack with a positive return value if there isn't one already; +# this avoids us returning an error just because nothing sets a success code +# since the modules above will each just jump around +session required pam_permit.so +# and here are more per-package modules (the "Additional" block) +session required pam_unix.so +session optional pam_ck_connector.so nox11 +# end of pam-auth-update config -- cgit v1.2.3-55-g7522
    ID Title
    + + + + escape($bootmenuentry->getID()); ?> escape($bootmenuentry->getTitle()); ?>