Wednesday, January 25, 2012

Lenovo Recycling Programs


Lenovo Recycling Programs

What to do with older,outdated Lenovo equipment? You want to be environmentally responsible and not just throw old rechargeable batteries in the trash bin.  Lenovo has the answers for you.  Below are two great programs allowing you to recycle Lenovo machines in an easy responsible way.

Battery Recycling-
  In the U.S., recycle or dispose of Lenovo rechargeable batteries for free by dropping them off at any RBRC location.  See the link for details.

Computer Systems-
  In the U.S., free home pickup or drop off Lenovo computer systems and/or components at locations nationwide. – visit AERCCR Website for details and forms.

For those outside the United States, visit the Product Recycling Programs by Region site.

Tuesday, January 24, 2012

Format Blog Text in Gray Boxes

I was looking to highlight certain text inside posts by placing it in gray boxes.   Below is the code to do just that.  You can adjust the colors to suit your needs.




<div style="background-color: #f0f0f0; border: 1px solid rgb(255, 255, 255); padding: 1.2em;">

Insert Text Here >

<br />

</div>

Tuesday, January 17, 2012

IBM Storwize V7000 Upgrade Procedure

IBM Storwize V7000 Upgrade Procedure

Recently upgraded the firmware on two V7000 Storwize systems. Both went smoothly by using the GUI manager.  While one node is being upgraded the other takes over control so there is no downtime. However, there might be a possible performance decrease during the upgrade.  After the upgrade I've noticed the error logs are no longer being filled with software errors; which I knew the new firmware was to fix.

Storwize V7000
Download the following files from the www.ibm.com/support website:
      1. The latest IBM Storwize V7000 code level(firmware).
      2. The latest IBM Storwize V7000 Upgrade Test Utility.


The V7000 Upgrade Test Utility can be used to check for known issues which may cause problems during a Storwize V7000 software upgrade.

From the Storwize V7000 Gui Manager:
1. Go to the Configuration>Advanced panel in the GUI
2. Select Upgrade Software
3. Press the Launch Upgrade Wizard button
4. When prompted, upload the upgrade test utility package to the system and click Next
5. When prompted, enter the software version you intend to upgrade to and click Next. This field will be automatically populated with the latest available software version if it is available
6. The following page will contain the results of the upgrade test. Review the output from the upgrade test utility to see if any actions are required before starting the upgrade
  1. If you wish to continue with the firmware upgrade at this time, click Next to proceed with the upgrade process. Otherwise click Cancel to exit the upgrade wizard


The V7000 Code(firmware) upgrade process will take about an hour and a half during which time the fans may run at maximum speed. Check the error logs for entries stating the firmware upgrade has been completed.

During the automatic upgrade process, each node in a system is upgraded one at a time, and the new code is staged on the nodes. While each node restarts, there might be some degradation in the maximum I/O rate that can be sustained by the system. After all the nodes in the system are successfully restarted with the new software level, the new software level is automatically committed.

During an automatic software upgrade, each node of a working pair is upgraded sequentially. The node that is being upgraded is temporarily unavailable and all I/O operations to that node fails. As a result, the I/O error counts increase and the failed I/O operations are directed to the partner node of the working pair. Applications do not see any I/O failures. When new nodes are added to the system, the software upgrade file is automatically downloaded to the new nodes from the Storwize V7000 system.


RHEL6.1 Kickstart Configuration How To

I recently was tasked with creating a Redhat kickstart server so we could install lab machines automatically across the network instead of installing each one manually with a DVD.  The following are the steps I took to create an install server and the kickstart configuration file.  I'm using RHEL6.1 x86_64 and Intel based servers.

Software Requirements

This applies to RHEL6.1:
TFTP-Server
DHCP Server
Xinetd
NFS
Syslinux
System-config-kickstart (GUI tool to configure kickstart)
Make sure these services are installed and running.
-either allow these services through the firewall or turn it off.

Installation


Red Hat Kickstart Server Setup


1) Copy RHEL6.1 install media to a directory on your server-
     >Mount /mnt/cdrom
     >cp –var /mnt/cdrom/RedHat       /rhel6.1
     >cp /mnt/cdrom/RELEASE-NOTES*.html    /rhel6.1

2) Create NFS share that points to your install directory-
    Edit  /etc/exports file to look like the following:

  /rhel6.1        x.x.x.x/24(rw,insecure,sync,no_root_squash)    #Replace with your subnet

   Run the following to export the directory:
     > /usr/sbin/exports –a
   

3) Configure DHCP for PXE/TFTP-
    Edit  /etc/dhcp/dhcpd.conf to look like the following:

# DHCP Server Configuration file.
#   see /usr/share/doc/dhcp*/dhcpd.conf.sample
#   see 'man 5 dhcpd.conf'
#
allow booting;
allow bootp;
subnet x.x.x.x netmask 255.255.255.0 {             # Replace with your lab’s subnet
        option routers                  x.x.x.x;                # Replace with router/gateway IP
        option subnet-mask              255.255.255.0;
        option domain-name              "domain_name.com";
        option domain-name-servers      x.x.x.x;
        range x.x.x.100 x.x.x.120;            # Replace with range of DHCP addresses
        default-lease-time 600;
}
# Redhat Kickstart
class "pxeclients" {
  match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
  next-server x.x.x.x;                            # Replace with the TFTP Server IP
  filename "linux-install/pxelinux.0";
}

Run the following to restart the dhcp server
>service dhcpd restart 


Enable xinetd and tftp-server to run at runlevels 3-5:
        >Chkconfig –level 345 xinetd on   # tftp is xinet based
        >Service xinetd restart


4) Edit /etc/xinetd.d/tftp to look like the following: 

# default: off
# description: The tftp server serves files using the trivial file transfer \
#       protocol.  The tftp protocol is often used to boot diskless \
#       workstations, download configuration files to network-aware printers, \
#       and to start the installation process for some operating systems.
service tftp
{
        disable = no
        socket_type             = dgram
        protocol                = udp
        wait                    = yes
        user                    = root
        server                  = /usr/sbin/in.tftpd
        server_args             = -s /var/lib/tftpboot
        per_source              = 11
        cps                     = 100 2
        flags                   = IPv4
        bind                    = x.x.x.x              # Add your server’s IP address
}


5) Make directories for tftpboot-
    >mkdir –p /var/lib/tftpboot/linux-install
    >mkdir –p /var/lib/tftpboot/linux-install/pxelinux.cfg
    >cp /usr/share/syslinux/pxelinux.0  /var/lib/tftpboot/linux-install/
    >cp /usr/share/syslinux/menu.c32  /var/lib/tftpboot/linux-install/
    >cp /rhel6.1/images/pxeboot/*  /var/lib/tftpboot/linux-install/
    >touch /var/lib/tftpboot/linux-install/pxelinux.cfg/default
   
  Edit /var/lib/tfptboot/linux-install/pxelinux.cfg/default to look like:

     default menu.c32
     timeout 100

     MENU TITLE PXE Redhat Network Install
      Label 1
      MENU LABEL xSeries Redhat Install
      kernel vmlinuz
      append initrd=initrd.img ksdevice=eth2 ramdisk_size=10000   #eth number you use       ks=nfs:x.x.x.x:/rhel6.1/xseriesks.cfg              # Location of the kickstart .cfg file we create next


Restart services:
  >service xinetd restart
  >service dhcpd restart



Red Hat Kickstart Configuration

Detailed kickstart configurator usage can be found at Redhat:
http://docs.redhat.com/docs/enUS/Red_Hat_Enterprise_Linux/6/html/Installation_Guide/ch-redhat-config-kickstart.html


System-config-kickstart is a GUI based kickstart configuration tool to simplify creating a kickstart file that is used to automatically install remote servers.

1) To launch Kickstart Configurator, boot your system into a graphical environment, then     run system-config-kickstart, or click ApplicationsSystem ToolsKickstart on the GNOME desktop or Kickoff Application Launcher+ApplicationsSystemKickstart on the KDE desktop.



-Make the selections based on how you want to install your servers.
-The Installation Method screen allows you to choose how to install.  Select NFS install and enter your server’s IP address and the directory that contains the installation source.
-Enter the partition information and network information now or, if you prefer, leave them blank and you will be prompted during the install.
-Add the packages you want installed.
-To save the kickstart file, click the Save to File button in the preview window. To save the file without previewing it, select File => Save File or press Ctrl+S .  
-Shown from step 5 above we saved the file as xseriesks.cfg in the /rhel6.1 directory.


That’s it.  Now you’re ready to test your installation, boot a server from the network to make sure it grabs an IP and starts to install.



Friday, December 16, 2011

ThinkPad X130e Ultraportable Designed For Students

Lenovo is releasing a rugged new Thinkpad X130e ultraportable designed for student and education use.  Since it's target audience is geared toward a younger user, the X130e has more durable body panels to withstand being slung in a backpack.  It's customizable with a choice of AMD or Intel Core processors, Radeon or Intel graphics with a 11.6 inch display.


Source is the Lenovo News release.


The ThinkPad X130e laptop will be available starting Dec. 20 from www.lenovo.com. Pricing for models starts at $469. 

.

Thursday, December 15, 2011

Lenovo Quick Pick

Jump over to Lenovo for a view at their online configurator. Everything you need in one place to select options for your next Lenovo Thinkpad.

.

Lenovo Systems Diagnostics Tools

Updated December 2011.

Need a couple nice diagnostic tools for your Thinkpad? Below you will find two utilities that should enable you to pinpoint issues with hardware or even software problems.


Lenovo ThinkVantage Toolbox is a new full featured application from Lenovo that provides advanced diagnostic tools, system health checks and status, and reports system security issues, plus additional tools. It is a step up and a replacement for the PC-Doctor tool which only ran diagnostics. Lenovo ThinkVanatge Toolbox installs under Windows 7, XP or Windows Vista and when launched displays the machine type and model as well as the BIOS level and even when the machine’s warranty expires.

The main functions are:
System health check - looks at Windows Updates, hard drive status, and device properties.

System security check - looks at such things as virus protection, firewall status, password and file sharing.

Diagnostics and tools checks - can create system information reports, test all hardware components, test and defragment the hard drive, connect to Lenovo help and more.
One pretty slick feature is the drive space manager which graphically displays what is installed on the hard drive by either the file type or by the folder name.

Lenovo Hard Drive Quick Test is another useful utility that comes with Lenovo System Toolbox but can be installed as a separate product. It also is installed under Windows.

Lenovo Warranty Lookup - want to know when your machine's warranty expires? Just enter the machines model and serial number..


-