Questions tagged [solaris]

Solaris is a commercial Unix operating system sold by Oracle, previously (before 2010) from Sun Microsystems. It can run on SPARC or x86 hardware.

Solaris is a Unix operating system originally developed by Sun Microsystems as a successor to SunOS. Oracle Solaris, as it is now known, has been owned by Oracle Corporation since Oracle's acquisition of Sun in January 2010. OpenSolaris (the open-source version of Solaris) was abandoned at that point.

Solaris is known for its scalability, especially on SPARC systems (), and for originating many innovative features such as DTrace, ZFS and Time Slider. Solaris supports SPARC-based and x86-based workstations and servers from Sun and other vendors.

Resources

2780 questions
1
vote
1 answer

mail: Options MUST PRECEDE persons

I am trying to send an email by specifying the from option using mail. echo "This is the main body of the mail" | mail -s "Subject of the Email" recipent_address@example.com -- -f from_user@example.com Whenever I try the above command I always get…
AKIWEB
  • 19,008
  • 67
  • 180
  • 294
1
vote
1 answer

Send an email to a email group using shell script

Below is my shell script that is working fine. #!/bin/bash DATE_YEST_FORMAT2=`perl -e 'use POSIX qw(strftime); print strftime "%Y%m%d",localtime(time()- 3600*96);'` echo $DATE_YEST_FORMAT2 QUERY1=`hive -e " set…
arsenal
  • 23,366
  • 85
  • 225
  • 331
1
vote
1 answer

how to properly handle a file upload in wicket

I have a file upload page that takes a file and parses it. Order of Events user uploads file uploaded file gets copied copied file gets it's encoding checked, with CPDetector determined encoding from the copied file is used to parse the original…
Raystorm
  • 6,180
  • 4
  • 35
  • 62
1
vote
1 answer

Pass date from shell script to query

Below is my shell script from which I am running my Hive query. In this I am calculating the Yesterday's date and I am passing that Yesterday's date in the where clause. But that query is not working for me. #!/bin/bash DATE_YEST=`TZ=GMT+48 date…
arsenal
  • 23,366
  • 85
  • 225
  • 331
1
vote
0 answers

freeing memory that was allocated is not actually returned to the system

Possible Duplicate: Freeing of allocated memory in Solaris/Linux I found this in the one of the articles here This is regarding solaris. the article says that whenever free() call is executed the memory is returned to the application but not to…
Vijay
  • 65,327
  • 90
  • 227
  • 319
1
vote
0 answers

JAVA_HOME in Solaris sparcv9

I am trying to install a java based application on Solaris 10 (Sparc) which is requesting for the JAVA_HOME path. I noticed that the files in JAVA_HOME for Solaris Sparc varies from Solaris Intel. When I set the JDK install directory as JAVA_HOME,…
Balaji
  • 1,687
  • 2
  • 11
  • 10
1
vote
1 answer

fopen producing NULL file pointer Solaris

I'm trying to make a callback function, and then write the content retrieved into a file using libcurl. The program works nicely in Linux and Windows, however, the fopen operation fails in solarix_x86. myvector contains a list of url files to be…
cybertextron
  • 10,547
  • 28
  • 104
  • 208
1
vote
1 answer

Dynamic changes to thread stack size in Solaris 9?

I am looking for a configurable / tunable on Solaris 9 through which I can change the default thread stack size without recompiling the code to use "pthread_attr_setstacksize" For example on HPUX 11.11 / 11.23 the environment variable…
Satya
1
vote
3 answers

sort lines in file based on specific location character

I want to sort a file based on specific character in a .txt file. This is a file given to me: 12345678901234567890123456789012345 header 1stfoo DDMMYYYY 2ndfoo sltele Hoodie 24051988 d12Hdq sltele Hoodie 07051987 d30Hdq sltele …
faizal
  • 183
  • 2
  • 6
  • 12
1
vote
1 answer

SSI Jboss not including html (context issues)

Hi I hope that someone out there could give a clue on where to here. Here's the problem. I have enabled SSI in some jboss under Solaris, I have the application web.xml configured as follows: ssi
Cesar Hermosillo
  • 942
  • 7
  • 19
1
vote
2 answers

How to connect to Oracle DB in Solaris OS using JDBC?

I'm trying to write a java code to connect to an Oracle9i Enterprise Edition Release 9.2.0.4.0. My machine is windows XP. The Oracle DB OS is Solaris 8. What I've done currently are: java.lang.Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); I'm not…
user1409217
  • 412
  • 11
  • 29
1
vote
2 answers

How to detect chroot on illumos/solaris?

How can a running C-program detect if it is running in "chroot" on illumos/solaris? There is a Debian utility [1] which uses some tricks on linux, freebsd, hurd. How to do it on illumos/solaris? [1]…
user933161
1
vote
2 answers

Maintaining Multiple Databases Across Several Platforms

What's the best way to maintain a multiple databases across several platforms (Windows, Linux, Mac OS X and Solaris) and keep them in sync with one another? I've tried several different programs and nothing seems to work!
Iwasakabukiman
  • 1,453
  • 4
  • 15
  • 17
1
vote
2 answers

How to set a hardware watchpoint in dbx?

I need to detect when some memory changes in dbx on Solaris. I know in gdb that I would do this with watch . However, I am using dbx at the moment, so I need to know how to set a hardware watchpoint in dbx. What is the dbx command…
WilliamKF
  • 41,123
  • 68
  • 193
  • 295
1
vote
3 answers

Ruby 1.9.3 + Rails on Solaris 10 - libyaml is missing

I'm trying to install Ruby on Rails on Solaris 10 box. I managed to build Ruby 1.9.3 from source and I installed gems but when I run gem command every time I get this message: # gem list /usr/local/lib/ruby/1.9.1/yaml.rb:56:in `': It…
pn8830
  • 388
  • 3
  • 13
1 2 3
99
100