Sponsored Content
Full Discussion: External HDD
Top Forums UNIX for Dummies Questions & Answers External HDD Post 302632715 by bartus11 on Monday 30th of April 2012 03:25:12 PM
Old 04-30-2012
Can you post output of format and rmformat?
 

10 More Discussions You Might Find Interesting

1. Linux

Installing Linux on External HDD

Hi, I want to install LINUX on my laptop. I have a 2GHZ,1GB RAM and HDD is not partitioned. I donot want to touch this HDD and I have external HDD of 200GB. Can I install LINUX on this external HDD?. I would like system to detect linux only when I connect my external hard drive. else system should... (5 Replies)
Discussion started by: sureshht
5 Replies

2. Solaris

How to mount External HDD in VMware 6.0

Hi Friends, I am using VMware 6.0 and i want to transfer some files from External HDD so how to mount the Disk, and i am not able to assign any ip to my network card any one can help me how to set ip in VMware. Thanks and Regards, Venky.:b: (0 Replies)
Discussion started by: 1409.venkatesh
0 Replies

3. UNIX for Advanced & Expert Users

Use external HDD as archive0

Hello UNIX-community, We have an older SCO UNIX-system running PCS3 (an industrial platform) and since a few weeks we are experiencing problems with our archiving software. For about ten years, the system archives data to Magneto-Optical discs (MO-discs) and thus far it has worked fine.... (3 Replies)
Discussion started by: V4Friend
3 Replies

4. UNIX for Dummies Questions & Answers

Old HDD copy to new HDD ? im lost...

Over the last few months the HDD spins louder and louder, so I fiqured its time to replace the HDD. Its been running 24/7/365 since 98 :eek:. yes i said since 98 :D I have an IBM system 43P Model 240. 233 MHz. running AIX Version 4. The current HDD is an IBM DGHS COMP IEC -950 FRU PN#... (5 Replies)
Discussion started by: Chevy89rocks
5 Replies

5. OS X (Apple)

Installing mac on external hdd?

Hi, As I did not find any specific group for this question, i am putting it here. Can I install Mac OS on an external hard disk? Is this possible or not? I know it is very hard to install mac os on non-mac hardwares. I have a dell inspiron laptop and i want to use mac from external hdd. ... (1 Reply)
Discussion started by: sanzee
1 Replies

6. Red Hat

External HDD Issue

Hello everyone ! I just installed Red Hat 6.4 and when i plug in my external HDD firstly i can see the files and after 5 seconds all dissapears. What causes to this and ways to fix it ? Thanks in advance ! (1 Reply)
Discussion started by: djqbert
1 Replies

7. Red Hat

Suitable External HDD for Linux RHEL

Hi All, I am very new to UNIX systems and need your help. OS: RHEL 5.4(LINUX) 64 bit I need to get a new external 2TB HDD for transferring data from between linux machines. This HDD will not be used in any windows/MAC servers. Only on UNIX systems(linux/solaris) the USB device is to be... (1 Reply)
Discussion started by: Bikash Mishra
1 Replies

8. AIX

IBM AIX Internal HDD vs SAN HDD and Oracle

Hi Folks, I am facing an issue with the performance. P4 with 1 processor and 16 GB RAM and SAN HDD = Oracle report takes 25 minutes P5 with 2 processors and 16 GB RAM internall HDD with LPAR = Oracle Report takes 1 hour 15 minutes ( please note I have assigned all the max processors and... (7 Replies)
Discussion started by: filosophizer
7 Replies

9. Gentoo

Data recovery of formatted external HDD

accidentally formatted ext3 external hard disk .. im using EAse us tool in windows system to recover the data ... will this works?? if yes ... the another external hard disk have to be formatted in which file system ? is there any other option ..please help me out (1 Reply)
Discussion started by: rajeshz
1 Replies

10. Solaris

Solaris can't detect external HDD on HP server

Hello, Unix users :) Has anyone had this problem when you connect an external hard drive to the server and it is simply not visible with any commands? The server is HP DL380 g8, and OS is: root@...:/# cat /etc/release Oracle Solaris 10 8/11 s10x_u10wos_17b X86 ... (16 Replies)
Discussion started by: Aratai
16 Replies
POE::Wheel::Curses(3pm) 				User Contributed Perl Documentation				   POE::Wheel::Curses(3pm)

NAME
POE::Wheel::Curses - non-blocking input for Curses SYNOPSIS
use Curses; use POE qw(Wheel::Curses); POE::Session->create( inline_states => { _start => sub { $_[HEAP]{console} = POE::Wheel::Curses->new( InputEvent => 'got_keystroke', ); }, got_keystroke => sub { my $keystroke = $_[ARG0]; # Make control and extended keystrokes printable. if ($keystroke lt ' ') { $keystroke = '<' . uc(unctrl($keystroke)) . '>'; } elsif ($keystroke =~ /^d{2,}$/) { $keystroke = '<' . uc(keyname($keystroke)) . '>'; } # Just display it. addstr($keystroke); noutrefresh(); doupdate; # Gotta exit somehow. delete $_[HEAP]{console} if $keystroke eq "<^C>"; }, } ); POE::Kernel->run(); exit; DESCRIPTION
POE::Wheel::Curses implements non-blocking input for Curses programs. POE::Wheel::Curses will emit an "InputEvent" of your choosing whenever an input event is registered on a recognized input device (keyboard and sometimes mouse, depending on the curses library). Meanwhile, applications can be doing other things like monitoring network connections or child processes, or managing timers and stuff. PUBLIC METHODS
POE::Wheel::Curses is rather simple. new new() creates a new POE::Wheel::Curses object. During construction, the wheel registers an input watcher for STDIN (via select_read()) and registers an internal handler to preprocess keystrokes. new() accepts only one parameter "InputEvent". "InputEvent" contains the name of the event that the wheel will emit whenever there is input on the console or terminal. As with all wheels, the event will be sent to the session that was active when the wheel was constructed. It should be noted that an application may only have one active POE::Wheel::Curses object. EVENTS AND PARAMETERS
These are the events sent by POE::Wheel::Curses. InputEvent "InputEvent" defines the event that will be emitted when POE::Wheel::Curses detects and reads console input. This event includes two parameters: $_[ARG0] contains the raw keystroke as received by Curses::getch(). An application may process the keystroke using Curses::unctrl() and Curses::keyname() on the keystroke. $_[ARG1] contains the POE::Wheel::Curses object's ID. Mouse events aren't portable. As of October 2009, it's up to the application to decide whether to call mousemask(). SEE ALSO
Curses documents what can be done with Curses. Also see the man page for whichever version of libcurses happens to be installed (curses, ncurses, etc.). POE::Wheel describes wheels in general. The SEE ALSO section in POE contains a table of contents covering the entire POE distribution. BUGS
None known, although curses implementations vary widely. AUTHORS &; COPYRIGHTS Please see POE for more information about authors and contributors. perl v5.14.2 2012-05-15 POE::Wheel::Curses(3pm)
All times are GMT -4. The time now is 11:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy