Sponsored Content
Operating Systems Solaris Need to install /usr/lib/libiconv.so.2 Solaris Sparc 64 bit package Post 302815497 by jlliagre on Saturday 1st of June 2013 02:00:59 AM
Old 06-01-2013
The GNU libconv site states:
Quote:
This library provides an iconv() implementation, for use on systems which don't have one, or whose implementation cannot convert from/to Unicode.
Solaris definitely provides a iconv implementation that is able to convert from/to Unicode so libiconv is not needed on Solaris.
 

10 More Discussions You Might Find Interesting

1. Solaris

how to install wget on Solaris sparc 9

hi, i downloaded wget-1.9.1-sol9-sparc-local.gz for solaris sparc 9. but do not know how to install it. anybody help me. many thanks tinhlx (3 Replies)
Discussion started by: tinhlx
3 Replies

2. AIX

bos.rte.5.2.0.10 - Failure to Install (/usr/lib/methods/cfgsf bad permissions)

I have a RS/6000 B80 which just had a disk failure; I've added a new drive and am in the process of rebuilding. I have reinstalled AIX 5.2 and am now looking to begin updating. (fyi this will be the second time I have attempted to rebuild this machine, the first time i installed ML 5200-10 and... (1 Reply)
Discussion started by: wesiman
1 Replies

3. Solaris

Which package i need to install for corresponding command: /usr/bin/7za?

Hi friends, I need install a CAM on a lack package cluster Solaris 10 OS Sparc. I read the prequirements, OS is missing 2 pkgs: SUNWtcatu SUNWxwrtl I try add by a OS 10-08 CD, To install SUNWtcatu it also missing SUNWj3rt SUNWj3dev To install SUNWj3rt, it show: Cannot find required... (5 Replies)
Discussion started by: tien86
5 Replies

4. Solaris

Solaris 10 install fails on sparc

I'm trying to do an upgrade/install from Solaris 8 to Solaris 10 on a SUN Sparc system. I halt the system, as documented, but when I attempt to boot off the distribution DVD; i.e. halt : : OK> boot cdrom The system indicates that the device is 'unrecognizable' These are SUN... (5 Replies)
Discussion started by: imagtek
5 Replies

5. Solaris

64 Bit SPARC Solaris 10 Install

I downloaded the iso image from here and burnt it on DVD. But when I tried installing it..it said boot device not availiable. Do I have to make it bootable? Is there any other component that I need to write on DVD other than the image? Moreover the DVD which I received from my admin for... (5 Replies)
Discussion started by: sumeet
5 Replies

6. Solaris

Wrong ELF data format: ELFDATA2MSB at /usr/perl5/5.8.4/lib/i86pc-solaris-64int/DynaLoader.pm

We are trying to install our project on solaris 10 x86 machine. we are getting the following error. Can't load '/u01/apps/WatchMark/FlexPM//R39FOA1/sw/perl/lib/auto/DBI/DBI.so' for module DBI: ld.so.1: perl: fatal: /u01/apps/WatchMark/FlexPM//R39FOA1/sw/perl/lib/auto/DBI/DBI.so: wrong ELF data... (3 Replies)
Discussion started by: Jagandadi
3 Replies

7. Solaris

/usr/lib/vhost.so missing Solaris 5.10

Hi, i have a solaris 5.10 machine on which i am getting below error while executing cat command ld.so.1: cat: fatal: vhost.so: open failed: No such file or directory Killed it is related to file vhost.so missing Also when i did ldd cat result is as below libc.so.1... (1 Reply)
Discussion started by: Jcpratap
1 Replies

8. BSD

FreeBSD: /usr/bin/ld not looking in /usr/local/lib

I'm not sure if this is the default behavior for the ld command, but it does not seem to be looking in /usr/local/lib for shared libraries. I was trying to compile the latest version of Kanatest from svn. The autorgen.sh script seems to exit without too much trouble: $ ./autogen.sh checking... (2 Replies)
Discussion started by: AntumDeluge
2 Replies

9. Solaris

SPARC M10 - Install Solaris 10

Hi, This machine does not have CDROM/DVDROM. I try to boot using external usb. Issue command: show-disks does not show any external cdrom. How to install OS? Is it can be install using usb pendrive? Thanks. (5 Replies)
Discussion started by: mzainal
5 Replies

10. Solaris

How to install Solaris 10 5/09 on sparc T4-1?

hi everyone, good day to all. I need help to fix an issue which we encounter while installing the Alcatel -lucent 5620 NM on a solaris 10 OS. The Alcatel lucent 5620 NM release 9 software is only recommended OS to work with Solaris 10 release 5/09 but when we try to install the same... (9 Replies)
Discussion started by: Anjo Antony
9 Replies
Iconv(3pm)						User Contributed Perl Documentation						Iconv(3pm)

NAME
Text::Iconv - Perl interface to iconv() codeset conversion function SYNOPSIS
use Text::Iconv; $converter = Text::Iconv->new("fromcode", "tocode"); $converted = $converter->convert("Text to convert"); DESCRIPTION
The Text::Iconv module provides a Perl interface to the iconv() function as defined by the Single UNIX Specification. The convert() method converts the encoding of characters in the input string from the fromcode codeset to the tocode codeset, and returns the result. Settings of fromcode and tocode and their permitted combinations are implementation-dependent. Valid values are specified in the system documentation; the iconv(1) utility should also provide a -l option that lists all supported codesets. Utility methods Text::Iconv objects also provide the following methods: retval() returns the return value of the underlying iconv() function for the last conversion; according to the Single UNIX Specification, this value indicates "the number of non-identical conversions performed." Note, however, that iconv implementations vary widely in the interpretation of this specification. This method can be called after calling convert(), e.g.: $result = $converter->convert("lorem ipsum dolor sit amet"); $retval = $converter->retval; When called before the first call to convert(), or if an error occured during the conversion, retval() returns undef. get_attr(): This method is only available with GNU libiconv, otherwise it throws an exception. The get_attr() method allows you to query various attributes which influence the behavior of convert(). The currently supported attributes are trivialp, transliterate, and discard_ilseq, e.g.: $state = $converter->get_attr("transliterate"); See iconvctl(3) for details. To ensure portability to other iconv implementations you should first check for the availability of this method using eval {}, e.g.: eval { $conv->get_attr("trivialp") }; if ($@) { # get_attr() is not available } else { # get_attr() is available } This method should be considered experimental. set_attr(): This method is only available with GNU libiconv, otherwise it throws an exception. The set_attr() method allows you to set various attributes which influence the behavior of convert(). The currently supported attributes are transliterate and discard_ilseq, e.g.: $state = $converter->set_attr("transliterate"); See iconvctl(3) for details. To ensure portability to other iconv implementations you should first check for the availability of this method using eval {}, cf. the description of set_attr() above. This method should be considered experimental. ERRORS
If the conversion can't be initialized an exception is raised (using croak()). Handling of conversion errors Text::Iconv provides a class attribute raise_error and a corresponding class method for setting and getting its value. The handling of errors during conversion depends on the setting of this attribute. If raise_error is set to a true value, an exception is raised; otherwise, the convert() method only returns undef. By default raise_error is false. Example usage: Text::Iconv->raise_error(1); # Conversion errors raise exceptions Text::Iconv->raise_error(0); # Conversion errors return undef $a = Text::Iconv->raise_error(); # Get current setting Per-object handling of conversion errors As an experimental feature, Text::Iconv also provides an instance attribute raise_error and a corresponding method for setting and getting its value. If raise_error is undef, the class-wide settings apply. If raise_error is 1 or 0 (true or false), the object settings override the class-wide settings. Consult iconv(3) for details on errors that might occur. Conversion of undef Converting undef, e.g., $converted = $converter->convert(undef); always returns undef. This is not considered an error. NOTES
The supported codesets, their names, the supported conversions, and the quality of the conversions are all system-dependent. AUTHOR
Michael Piotrowski <mxp@dynalabs.de> SEE ALSO
iconv(1), iconv(3) perl v5.14.2 2007-10-17 Iconv(3pm)
All times are GMT -4. The time now is 09:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy