- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- pico problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 02:09 AM
08-06-2003 02:09 AM
pico problem
$ pico
-bash: /usr/local/bin/pico: cannot execute binary file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 02:11 AM
08-06-2003 02:11 AM
Re: pico problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 02:29 AM
08-06-2003 02:29 AM
Re: pico problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 05:12 PM
08-06-2003 05:12 PM
Re: pico problem
What do the following commands return:
ls -l /usr/local/bin/pico
file /usr/local/bin/pico
Also what type of file-system is /usr/local/bin (what does 'mount' show us) ?
There are many possible reasons for this error. Usually it would mean that the binary has the wrong permissions, or is corrupt. The above commands will help determine that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 05:38 PM
08-06-2003 05:38 PM
Re: pico problem
$ ls -l /usr/local/bin/pico
-rwxr-xr-x 1 root root 241696 Jul 18 15:44 /usr/local/bin/pico
$file /usr/local/bin/pico
/usr/local/bin/pico: PA-RISC1.1 shared executable
the file system of /usr/local/bin is ext3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 06:00 PM
08-06-2003 06:00 PM
Re: pico problem
The binaries are incompatable. You'll need to get the pine/pico package or source and install/recompile on your Linux box.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 11:12 PM
08-06-2003 11:12 PM
Re: pico problem
# rpm -ivh pico-4.55L-1.i686.rpm
warning: pico-4.55L-1.i686.rpm: V3 DSA signature: NOKEY, key ID f9651d5a
error: Failed dependencies:
libtinfo.so.5 is needed by pico-4.55L-1
, it seems missing the library file , how can i get it ? thx.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2003 03:36 AM
08-11-2003 03:36 AM
Re: pico problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2003 04:48 AM
08-11-2003 04:48 AM
Re: pico problem
rpm -qlp pineXXX.rpm.See if pico already in (should be).Uninstall pico rpm,uninstall pine rpm,install either one.
Also:
what shows ldd /usr/bin/pico?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-12-2003 09:00 PM
08-12-2003 09:00 PM
Re: pico problem
how to uninstall pico ? and the result is
# ldd /usr/bin/pico?
libncurses.so.5 => /usr/lib/libncurses.so.5 (0x40029000)
libc.so.6 => /lib/i686/libc.so.6 (0x40067000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
Thx