urgent help in portable applications


 
Thread Tools Search this Thread
Top Forums Programming urgent help in portable applications
# 1  
Old 11-16-2010
urgent help in portable applications

Hello
Im stuck with a project on converting existing applications in to their portable versions, What i mean is that i want an application to run on a Linux OS without the need of actually installing the application on that machine. My preffered OS is fedora as it is used on most machines in my college. any methods an links any sort of help will be appriciated. Also this has to be done by directly using available software on the net, Basically all the stuff has to be done by me without using softwares in which my contribution will be null, gcc scripts, unix scripts anything will b helpful.
cheers
P.S. This is a project for my course Operating systems.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

URGENT Reading a file and assessing the syntax shell script URGENT

I am trying to write a shell script which takes an input file as an arguement in the terminal e.g. bash shellscriptname.sh input.txt. I would like for the file to be read line by line each time checking if the .txt file contains certain words or letters(validating the syntax). If the line being... (1 Reply)
Discussion started by: Gurdza32
1 Replies

2. UNIX and Linux Applications

urgent help in Portable Applications

Hello Im stuck with a project on converting existing applications in to their portable versions, What i mean is that i want an application to run on a Linux OS without the need of actually installing the application on that machine. My preffered OS is fedora as it is used on most machines in my... (1 Reply)
Discussion started by: engineeringme
1 Replies

3. Linux

Portable Applications

Hello Im stuck with a project on converting existing applications in to their portable versions, What i mean is that i want an application to run on a Linux OS without the need of actually installing the application on that machine. My preffered OS is fedora as it is used on most machines in my... (1 Reply)
Discussion started by: engineeringme
1 Replies

4. UNIX for Advanced & Expert Users

Urgent help in portable applications

Hello Im stuck with a project on converting existing applications in to their portable versions, What i mean is that i want an application to run on a Linux OS without the need of actually installing the application on that machine. My preffered OS is fedora as it is used on most machines in my... (1 Reply)
Discussion started by: engineeringme
1 Replies

5. Linux

A portable bootable version?

What I have been doing for some time now is installing linux on my tech machine at work, plugging in devices and transferring data with dd_rescue. What I need now is a version of linux that I can install on a laptop sata hard drive and be able to plug it into any machine to transfer data off of... (1 Reply)
Discussion started by: Methal
1 Replies

6. UNIX and Linux Applications

ClamAV/other AV. Possible to make portable?

Hey guys/gals, I work with a large amount of servers, and was just curious if it is possible to make a linux AV app, portable. What i mean is, I go to a user's home directory and do something like ./clamavscan (I suppose an alias for clamscan..), and it scans the user's home directory for... (2 Replies)
Discussion started by: Rhije
2 Replies

7. Shell Programming and Scripting

Portable scripting

For historical, simple, practical and portable reasons my scripts start normally with "#!/bin/sh", hence I restrict myself to those features available in the Bourne Shell. The few cases where I would use ksh or bash is if I know this script is targetted at some subset of platforms where that is... (0 Replies)
Discussion started by: porter
0 Replies

8. UNIX for Advanced & Expert Users

URGENT,URGENT- Need help tape drive installation

Hi, I am trying to attach tape drive to sun V890 running Solaris 9 on it. I have installed HBA(qlogic) in slot 1 of 0-8 slots and booted the system. I do not see HBAin prtdiag output. The tape drive is not attached to HBA. The tape drive I am going to attach is Sony AIT3. 1.How can I make... (3 Replies)
Discussion started by: sriny
3 Replies

9. Linux

Apache Portable Runtime

Hi I am starting a project in which I want to use APR for portability. I download APR version 1.2.2 from "http://apr.apache.org/download.cgi#apr1" and I am using Redhat/Linux 9. As I am a newbie to APR and I have no prior experience of using APR, so I started learning it from:... (0 Replies)
Discussion started by: sumsin
0 Replies
Login or Register to Ask a Question
mktemp(3C)																mktemp(3C)

NAME
mktemp(), mkstemp() - make a unique file name SYNOPSIS
Remarks These functions are provided solely for backward compatibility and importability of applications, and are not recommended for new applica- tions where portability is important. For portable applications, use instead (see tmpfile(3S)). DESCRIPTION
replaces the contents of the string pointed to by template by a unique file name, and returns the address of template. The string in tem- plate should look like a file name with six trailing replaces each with a single byte character from the portable filename character set. The letter is chosen such that the resulting name does not duplicate the name of an existing file. makes the same replacement to the template, but also returns a file descriptor for the template file after opening the file for reading and writing. thus prevents any possible race condition between testing whether the file exists and opening it for use. RETURN VALUE
returns its argument except when it runs out of letters or an underlying service fails, in which case the result is a pointer to an empty string returns an open file descriptor upon successful completion, or -1 if no suitable file could be created. WARNINGS
It is possible to run out of letters. and do not check to determine whether the file name part of template exceeds the maximum allowable file name length. Setting kernel tunable to values greater than 99999 can have an effect on formation of temporary filenames in and Formation of temporary filenames using process ids may not be supported in future versions of and SEE ALSO
getpid(2), open(2), tmpfile(3S), tmpnam(3S), thread_safety(5). STANDARDS CONFORMANCE
mktemp(3C)