User Profile

Collapse

Profile Sidebar

Collapse
diSangro
diSangro
Last Activity: Jun 19 '08, 03:05 PM
Joined: Jan 8 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • diSangro
    replied to VNC on HP-UX 10.20
    Only the cc compiler is working :

    Code:
    checking for cc... cc
    checking whether the C compiler (cc  ) works... yes
    Which compiler has to be installed CC, gcc, g++...?

    Thanks !...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to VNC on HP-UX 10.20
    I downloaded the vnc source code ... i tried to compile ion HP 10.20

    I had the following error

    Code:
    i4hp_user[79] ./configure
    loading cache ./config.cache
    configuring common...
    ./configure[531]: ./configure: Execute permission denied.
    ...done configuring common
    checking for gcc... no
    checking for cc... cc
    checking whether the C compiler (cc  ) works... yes
    checking
    ...
    See more | Go to post

    Leave a comment:


  • diSangro
    started a topic VNC on HP-UX 10.20

    VNC on HP-UX 10.20

    Hello everybody !

    I need to use an HP workstation (with HPUX 10.20) from a remote pc (XP)

    I was thinkin about installing VNC 3.3.7 server on this workstation and the client on the PC.

    My question is: how can I install VNC srv on HP-UX 10.20 ?


    Thanks in advance , bye !!!
    See more | Go to post

  • diSangro
    replied to How to kill a process automatically?
    First of all you must be sure you have rights to kill pid you want, i.e.: you can only kill pid you launched unless you are root....
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to What is a service?
    I have found this one:

    "A service is an entity that provides a list of capabilities to applications and to other services, local and remote.
    A service is dependent on an implicitly declared list of local services."

    Thanks anyway!...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to Networking
    One possible source of your problem is that you have a damaged network card .

    Bye!...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to What is a service?
    ?????????

    Thanks a lot !...
    See more | Go to post

    Leave a comment:


  • diSangro
    started a topic What is a service?

    What is a service?

    While the definition of "process" is quite explicit (program in execution), I couldn't find an explicit definition for "service" !

    Can anyone give a definition for "service" in IT ?

    What's the difference between a web service and a system service?

    Thankz in advance,
    diSangro
    See more | Go to post

  • diSangro
    replied to Windows XP Pro loading problem
    I had a problem with userinit.exe , I could find I simple way to solve it :

    - userinit.exe was deleted my mistake ; then XP Pro SP2 couldn't Log in any user !

    - I've copied from XP Home SP2 userinit.exe on USB stick

    -I have booted from XP CD using Recovey Console (typing R)

    -Copy userinit.exe to C:WINDOWS\Syste m32\


    My XP could start without problems.

    ...
    See more | Go to post

    Leave a comment:


  • Check this LINK

    It seems it's what you are lookin for.......
    See more | Go to post

    Leave a comment:


  • Hello !

    I've tried that command on csh, sh and ksh both on HP UX and on Solaris.

    With sh, csh didn't work on both the two systems...It worked with ksh , but ONLY on Solaris.

    Why ?

    ksh is supposed to be the same shell on HP UX and on Solaris ... so why this different behavior from one system to another?...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to export last numbers
    Of course it's possible !
    It's just...At the beginning I thought all was already into a file!!!...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to export last numbers
    In other words you have to create a list of all these filenames, put this list into a file (mytxt.txt) then you can use the command mentioned on post #2 .

    To create such a list, assuming all these files are placed in one folder and that "gff" is contained in each filename:

    go inside that folder and create mytxt.txt with the following command:

    Code:
    ls | grep gff > mytxt.txt
    Then...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to export last numbers
    Using csh , if your file is called mytxt.txt , you can use :

    Code:
    cat mytxt.txt | awk-F"grbf" '{print $2}'
    your output is:
    21
    24
    ..
    45

    it can be sent to a file through redirection ( > )...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to command to open*bin file
    in C
    Hi!
    What do youy mean with "open *bin file in C flow" ? Do you want to execute bin or call it from C code?...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to Linux and Unix - are they the same OS?
    No , they are not the same ...Unix was developed before.
    Later many others Unix systems have been developed by different organizations/companies , like HP , Sun , IBM etc.

    However Linux is Unix based , meaning that normally Linux OS were developed startin from Unix kernel, but adding new features like improved GUIs , additional development environments and other applications.
    Morely, there are many Linux distributions...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to while(false) { }
    in C
    Really ????

    Please follow these guidelines when responding to questions.
    Provide relevant answers and solutions...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to while(false) { }
    in C
    Tha one was just an easy example to show how C language interpretates conditions inside a loop. Some languages use Boolean data type , here it is not necessary. So

    0 -> False
    1 -> True

    Will be the result of your condition....
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to Class does not cout from constructor?
    in C
    I think you should use somethin like

    al.Alien();

    in your main()

    I tried to run the following code with Dev-C++ and it works:

    Code:
     #include <iostream>
    #include <conio.h>
    using namespace std;
     
    class Alien{
     
        public:
            string name;
            void Alien_view(void){
                cout << "Alien";
    ...
    See more | Go to post

    Leave a comment:


  • diSangro
    replied to while(false) { }
    in C
    Maybe break it's not a nice way to exit a loop , but if you use while (1) without break you enter an infinite loop. I've used it just to show a concrete example....
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...