Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate

Advertising

Something
Wednesday, September 12th, 2007 at 1:14:10am UTC 

  1. #!/bin/bash
  2. #
  3. # Linux Shell Scripting Tutorial 1.05r3, Summer-2002
  4. #
  5. # Written by Vivek G. Gite <[email protected]>
  6. #
  7. # Latest version can be found at http://www.nixcraft.com/
  8. #
  9. # Q19
  10. #
  11.  
  12. nouser=`who | wc -l`
  13. echo -e "User name: $USER (Login name: $LOGNAME)" >> /tmp/info.tmp.01.$$$
  14. echo -e "Current Shell: $SHELL"  >> /tmp/info.tmp.01.$$$
  15. echo -e "Home Directory: $HOME" >> /tmp/info.tmp.01.$$$
  16. echo -e "Your O/s Type: $OSTYPE" >> /tmp/info.tmp.01.$$$
  17. echo -e "PATH: $PATH" >> /tmp/info.tmp.01.$$$
  18. echo -e "Current directory: `pwd`" >> /tmp/info.tmp.01.$$$
  19. echo -e "Currently Logged: $nouser user(s)" >> /tmp/info.tmp.01.$$$
  20.  
  21. if [ -f /etc/redhat-release ]
  22. then
  23.     echo -e "OS: `cat /etc/redhat-release`" >> /tmp/info.tmp.01.$$$
  24. fi
  25.  
  26. if [ -f /etc/shells ]
  27. then
  28.     echo -e "Available Shells: " >> /tmp/info.tmp.01.$$$
  29.     echo -e "`cat /etc/shells`"  >> /tmp/info.tmp.01.$$$
  30. fi
  31.    
  32. if [ -f /etc/sysconfig/mouse ]
  33. then
  34.     echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  35.     echo -e "Computer Mouse Information: " >> /tmp/info.tmp.01.$$$
  36.     echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  37.     echo -e "`cat /etc/sysconfig/mouse`" >> /tmp/info.tmp.01.$$$
  38. fi
  39. echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  40. echo -e "Computer CPU Information:" >> /tmp/info.tmp.01.$$$
  41. echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  42. cat /proc/cpuinfo >> /tmp/info.tmp.01.$$$
  43.  
  44. echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  45. echo -e "Computer Memory Information:" >> /tmp/info.tmp.01.$$$
  46. echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  47. cat /proc/meminfo >> /tmp/info.tmp.01.$$$
  48.  
  49. if [ -d /proc/ide/hda ]
  50. then
  51.     echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  52.     echo -e "Hard disk information:" >> /tmp/info.tmp.01.$$$
  53.     echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  54.     echo -e "Model: `cat /proc/ide/hda/model` " >> /tmp/info.tmp.01.$$$   
  55.     echo -e "Driver: `cat /proc/ide/hda/driver` " >> /tmp/info.tmp.01.$$$   
  56.     echo -e "Cache size: `cat /proc/ide/hda/cache` " >> /tmp/info.tmp.01.$$$   
  57. fi
  58. echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  59. echo -e "File System (Mount):" >> /tmp/info.tmp.01.$$$
  60. echo -e "--------------------------------------------------------------------" >> /tmp/info.tmp.01.$$$
  61. cat /proc/mounts >> /tmp/info.tmp.01.$$$
  62.  
  63. if which dialog > /dev/null
  64. then
  65.     dialog  --backtitle "Linux Software Diagnostics (LSD) Shell Script Ver.1.0" --title "Press Up/Down Keys to move" --textbox  /tmp/info.tmp.01.$$$ 21 70
  66. else
  67.     cat /tmp/info.tmp.01.$$$ |more
  68. fi
  69.  
  70. rm -f /tmp/info.tmp.01.$$$
  71.  
  72. #
  73. # ./ch.sh: vivek-tech.com to nixcraft.com referance converted using this tool
  74. # See the tool at http://www.nixcraft.com/uniqlinuxfeatures/tools/
  75. #

advertising

Update the Post

Either update this post and resubmit it with changes, or make a new post.

You may also comment on this post.

update paste below
details of the post (optional)

Note: Only the paste content is required, though the following information can be useful to others.

Save name / title?

(space separated, optional)



Please note that information posted here will not expire by default. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.

comments powered by Disqus
worth-right