Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: blarneyme
  • Order by date
  1. blarneyme

    Define Remote Printer

    Or smitty printer And follow the menus.
  2. blarneyme

    Define Remote Printer

    You don't mention if it is a serial or parallel printer so I'll go with a serial: mkdev -c printer -t 'osp' -s 'rs232' -p 'sa0' -w '9100'
  3. blarneyme

    Not a recognized terminal type

    I misread your post, but the vt100 and vt220 are manufactured by DEC. Make sure you have the bos.terminfo.dec.data fileset.
  4. blarneyme

    Not a recognized terminal type

    You don't say what shell you're using so try # TERM=vt100 # export TERM
  5. blarneyme

    Computational memory on AIX

    I'm not in front of an AIX server at the moment, but `vmstat -v` or `vmstat -s`; one of that will show you computational pages in use, although it is a total and not broken down by processes. For that you would need svmon that you mentioned. topas will also show computational and persistent...
  6. blarneyme

    Can't create new LV - Not enough free partitions

    This chart may help you understand how PPs are used to calculate the filesystem size. I have a hard copy and I also created a C program to calculate the same data. GB MB KB 512byte 4MB PP 8MB PP 16MB PP 32MB PP 64MB PP 128MB PP 0.125 128 131072 262144 32 16 8 4 2 1 0.25 256 262144 524288 64...
  7. blarneyme

    UTF-8 character set

    bos.loc.com.utf
  8. blarneyme

    Solaris 2.6 - Add DLT

    Hyperbole. Why does it seem everyone thinks Linux is the best and only operating system on the planet? Linux is horrible. At work we have AIX, Solaris, HP-UX, and of course, RHEL. The only servers that cause problems are the RHEL on i686. There have only been a couple of AIX servers that...
  9. blarneyme

    Create a user and allow them to install/update software

    Yes. You said initially you are running Solaris 5.10 which is Solaris 10, so you can use RBAC.
  10. blarneyme

    Create a user and allow them to install/update software

    Use RBAC with roles and privileges to do it the Solaris way.
  11. blarneyme

    'Unexpected end of line seen' in a Makefile

    Are you installing a package or compiling? What compiler, gcc or Sun Studio? What architecture?
  12. blarneyme

    Solaris 10 x-86 upgrade

    liveupgrade or reinstall.
  13. blarneyme

    Free Hard Drive Space

    Why not use lspv? # lspv hdisk0 PHYSICAL VOLUME: hdisk0 VOLUME GROUP: rootvg PV IDENTIFIER: 00132ebdadd7a20d VG IDENTIFIER 001328edc0023dc00221230109e2fad0cf PV STATE: active STALE PARTITIONS: 0 ALLOCATABLE: yes PP SIZE...
  14. blarneyme

    crontab entry

    Yes
  15. blarneyme

    AIX kernel extensions, only programmically?

    http://www.ibm.com/developerworks/aix/library/au-kernelext.html This may be of use to you.
  16. blarneyme

    Server will not boot without running fsck

    You're going to have to reset the root password.
  17. blarneyme

    find command with awfull performance

    I know this is in the scripting forum, but Perl is an alternative solution using Find::File like so in my example usage: #!/usr/bin/perl use File::Find; sub findit { my @files = (); my @dirs = (); open DF,"df -k | grep -v ':/' | awk '{print $6}' | tail +2l|" or die; while(<DF>){...
  18. blarneyme

    lsnim showing entry I'd like to get rid of

    nim -o remove MACHINENAME smitty is only going to call that command line, but you can try it.
  19. blarneyme

    find ./ -mtime -7 -exec ls -l {} \;

    #!/usr/bin/perl use strict; use File::Find; if ($ARGV[0] eq "") { $ARGV[0]="."; } my @file_list; find ( sub { my $file = $File::Find::name; if ( -f $file ) { push (@file_list, $file) } }, @ARGV); my $now = time(); my $AGE = 60*60*24*7; for my $file (@file_list) { my...
  20. blarneyme

    Get second part of line with SED

    That did it! Thank you!!!

Part and Inventory Search

Back
Top