Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: scienzia
  • Order by date
  1. scienzia

    ssl connection

    thanks
  2. scienzia

    ssl connection

    Hi, I need to make an SSL connection between 2 applications. On the server side I will use stunnel. On the client side I cannot use stunnel, the SSL connection must be made directly by the application. I found some examples, but they don't work. If you could give me the code to do the...
  3. scienzia

    fork leads to double release of device

    The original task is the only one that uses the device. The new task closes before the original. When the new task closes, I have the problems because it starts the release function in the module, when the original task uses the device after the new task closed. It should be option 1, but how...
  4. scienzia

    fork leads to double release of device

    the device closes at the end of the execution, I can't control it
  5. scienzia

    fork leads to double release of device

    Hi, I am working with a device driver. When I close the device file I start the release procedure in the module. The problem is that if the application that opened the device file makes a fork, I have 2 releases, since after the fork both the processes have the device file open. When one of...
  6. scienzia

    Recovery from files

    thx, problem solved.
  7. scienzia

    Recovery from files

    The strange owners are due to the fact that I mounted the partition using knoppix, so the user ID mapping is different. I managed to see almost all the DBs by installing on windows the version 4 of mysql, I just missed 2 DBs, which where exactly the ones I needed... You can't imagine how I...
  8. scienzia

    Recovery from files

    Hi, I had a mysql server installed on a debian pc. Now the pc OS is corrupted and doesn't start correctly any more. I am still able to recover the files from the pc, but if I put the files on another mysql server it hangs. I would like to know the procedure to transfer the db to another pc...
  9. scienzia

    close all file descriptors using fork

    Hi, thanks for the response. I found the solution: fcntl(fd_gpio, F_SETFD, FD_CLOEXEC); This makes the file close as soon as you make an exec function. Thankyou anyway.
  10. scienzia

    close all file descriptors using fork

    Hi, I have an application that uses a fork and and the execv function to start an application. The problem is that I don't want the child process to inherit the open files of the parent. I found out that the child is able to access the files opened by the parent before the fork. Is there a...
  11. scienzia

    SD card raw writing

    Hi, I would like to make an application to write raw data to an SD card. I found some freeware applications that lets you do this, but using them it is too easy to make a mistake and write on your hard disk instead of the SD card. I don't need this application to use it myself, but to...
  12. scienzia

    free way to partition?

    Use sysresccd, it is a linux livecd with 2 FREE clones of partition magic (one is qtparted): http://www.sysresccd.org/Main_Page It also has other usefull tools for making/restoring images of partition (as norton ghost), and other stuff.
  13. scienzia

    Permission denied after mounting windows share

    If you have GUI, you can try to see smb://server/share in Konqueror. It will prompt for a user/password and you are in. If it doesn't work this way, I think it is a problem in the server.
  14. scienzia

    Best Linux for your Laptop

    ...try debian, and you'll never ever use anything else...... lol apt-get install beer pizza cheesecake whateveryoulike
  15. scienzia

    Best Linux for your Laptop

    With my last post I said: I wanted to say that what you said had sense. I still can't find a reason you should install kubuntu instead of debian because of this sentence, which actually regards every distro. 2.6 isn't more stable on kubuntu than on debian.
  16. scienzia

    Best Linux for your Laptop

    With debian you can install any kernel just using apt. It is true that the most stable kernel is still 2.4. The choice depends on what you have to do with your pc, balancing new features like hardware compatibility, and a stable bug-free version. There is no choice that is the best in all...
  17. scienzia

    Best Linux for your Laptop

    I use debian on home pc, personal laptop, at work.... It is not true that it is stuck to 2.4, the stable version uses 2.6.8, while if you install the unstable version you get the latest. I tryed gentoo because I liked the idea of good performance by compiling everything, but I found it takes...
  18. scienzia

    Recommend linux for cd less laptop

    thedaver is right, debian is a great choice, even because it lets you install any application you want with a simple command, for ex: apt-get install moxilla-firefox It just needs internet connection to download it and install it. You will forget you don't have a cdrom.... I use debian...
  19. scienzia

    Disk full. Cant write

    sorry again, repace DEST with DST (sig)
  20. scienzia

    Disk full. Cant write

    sorry, some mistakes..... #!/bin/bash SRC=sourcefile DEST=destfile ############################## REALDST="$DST"_`date +%Y%m%d_%H%M` echo $REALDST mv $SRC $REALDST Tested and working

Part and Inventory Search

Back
Top