2
votes
1answer
12 views

Mac OS or Linux - Change year but leave Month Day Hours & Seconds untouched

I need to recurse a directory tree and update the YEAR ONLY portion of the timestamp for all files to a certain year. I can't work out how to do this with touch. I can't use touch -A since the the ...
1
vote
1answer
17 views

What file system for Mac OS X and Linux [closed]

I recently purchased a Raspberry Pi and I would like to use it as a small file server. The raspberry Pi is conected to an external USB Hard Drive. I would like to use that hard drive to store files, ...
0
votes
1answer
15 views

Download multiple files, with different final names

OK, what I need is fairly simple. I want to download LOTS of different files (from a specific server), via cURL and would want to save each one of them as a specific new filename, on disk. Is there ...
-2
votes
0answers
44 views

bash script to run two background tasks

I am trying to run two background task in terminal (I am using mac). For this I created a script: #!/bin/sh cd ~/myproj nodemon app.js & cd public bbb debug & But this isn't work.. Those ...
1
vote
1answer
42 views

GCC 4.8.0 build size differ greatly on OS X and Ubuntu

Immediately after GCC 4.8.0 was released, I built it on OS X 10.8 with ISL and CLooG. The complete build was about 3.8 GB in size (release tar balls + untarred sources + all generated objects). I ...
2
votes
2answers
29 views

getenv - Environment variable on Mac OS X and Linux

getenv is used for accessing environment variables on Mac OS X and Linux, it takes char* as input. Does that mean that I cannot store UNICODE strings as value in these environment variables on these ...
0
votes
0answers
38 views

Siege aborted due to excessive socket failure

I have encountered this problem whilst trying to run off the following cmd from siege on Mac OS X 10.8.3. siege -d1 -c 20 -t2m -i -f -r10 urls.txt The output from Siege is the following: ** SIEGE ...
0
votes
1answer
33 views

Will the “get_current_user()” function work on Linux/OSX?

I just learned PHP this morning and I'm writing a simple PHP script that I am planning to use for a scheduled task everyday. The script is working perfectly fine but for some features that I want to ...
0
votes
1answer
49 views

UNIX: List files in directory with relative path

The question is: What command would you use to list the text files in your fileAsst directory (using a relative path)? The previous question was: Give a command to list the names of those text ...
1
vote
2answers
83 views

Unix find script feature improvement

Below is a simple script that searches for files older than 30 days, then returns the number of files, or ZERO. I'd like it to do the following, if possible: exit from the loop if it finds anything ...
0
votes
1answer
65 views

_vscwprintf on Mac OS X/Linux

I am porting an application on Mac OS X which was written for Windows. In this application, there are many instances of _vscwprintf and _vscprintf. This question helped me to implement _vsprintf on ...
2
votes
1answer
44 views

Is there any way to have PostgreSQL not collapse punctuation and spaces when collating using a language?

From what I understand, PostgreSQL delegates collation to the strcoll() function of underlying operating system, and apparently most (if not all) Linux installations take advantage of the fact that ...
0
votes
3answers
53 views

Launching program several times

I am using Mac Os. This is command line code to lauch my programm (two parts) nucmer --mum file1.txt file2.txt show-snps -Clr -x 2 out.delta > out_file1.snps First part of the programm creates ...
0
votes
2answers
81 views

Path, /usr/bin/ and /usr/local/bin/

I installed watchr on OS X (10.8.3) using gem install watchr. And it's installed in /usr/bin/watchr $ which watchr /usr/bin/watchr However, when I tried to call it $ watchr -v, the system couldn't ...
-1
votes
2answers
35 views

Manage local user accounts

Assuming node is running as root, how do I: Add a new local (OS) user account and get its uid? Delete an account by name? The accounts will be used for daemon processes, so they needn't be ...
1
vote
0answers
60 views

How to create standalone python platform?

I would like to create zipped python platform bundle (with pyGTK library) for Mac/Linux/Windows. The purpose is to allow user to download customized version of eclipse with python libraries attached ...
0
votes
0answers
9 views

Access Win Partition in Terminal Mac OS X [migrated]

Is it possible to access (mount?) a partition in Mac OS X through the Terminal? Located at /Volumes/Windows HD/... I have VMWare fusion, but is it possible to access files through the Terminal? ...
-2
votes
0answers
32 views

Convert Mac OS X dictionary to linux readable format? [closed]

I would like to be able to take the dictionary data described here: http://priithaamer.com/blog/ruby-on-rails-dictionary-for-macosx And convert it for reading on linux. Is there an app such as ...
0
votes
1answer
32 views

Find writable files in Mac OS

I want to find (recursively) writable files in my directory. My operating system is MacOS. I tried: find . -type -writable but the shell returns an error: find: -type: -writable: unknown ...
1
vote
0answers
58 views

Deploy portable R in Linux (Mac ) and a Rscript for quick analysis

I've been searching how to copy-paste Rscript and R (with base libraries) so that the end user can just put a file for analysis , click shell script, and get results . FOR windows I expect no issue ...
0
votes
2answers
36 views

Adding a user as an owner of some directory

Sorry, if my question is too simple. I know how to change owner for a directory 'my directory'. But suppose I have a git user that owns a file 'myfile' inside directory -rw-r--r-- 1 git staff ...
0
votes
1answer
58 views

Configuring libmediainfo to work with Java project without installation across all platforms (OSes)

I am using mediainfo (http://mediainfo.sourceforge.net/en) to extract information from audio and video files using Java code. My java project runs over all platforms (osx, win & linux). So far I ...
1
vote
1answer
115 views

Compiling Objective-C Application on Linux

I've written a command line application in XCode using Objective-C. When added to my /usr/local/bin path is works as expected in OS X. However, I would like to make the binary work on Linux. The ...
1
vote
1answer
37 views

OverflowError: user id is too big

Runtime environment: Mac OS X 10.8.3 Intel 64bit Python 2.7.3 How to solve the setuid nobody length issue? bash $ id nobody uid=4294967294(nobody) gid=4294967294(nobody) ...
6
votes
3answers
100 views

How does Terminal read from stdout and draw the text on-screen?

I have a general question about how the terminal and processes work. From any process, if I write to stdout (i.e. file descriptor 2), it gets drawn on the terminal window. My question is, how is this ...
0
votes
2answers
83 views

Real-time git diff

I typically like to type up my git commit messages while looking at the git diff. I very much enjoy the output produced by this little perl add-on to git, and produces output that looks like this ...
0
votes
0answers
56 views

Windows DC and .local domain name - compatibility across operating systems?

I'm in the middle of setting up a domain controller for a network. In order to better distinguish between local network resources and public ones, I was considering naming the local domain ...
3
votes
2answers
127 views

importing a whole project into Maven (Eclipse Juno)

I have a folder that contains some Java code, written specifically for Linux. There is a pom.xml file and two folders called: src and build I have installed Eclipse Juno on my Mac (10.7.5) and I ...
-1
votes
1answer
44 views

Do we need to specify compression level when extracting a compressed tar file? [closed]

From my tests so far on OSX 10.8 and CentOS 5.5, it looks like tar automatically deduces the compression type of an archive, i.e., I could do tar -xf <compressed archive> instead of doing tar ...
0
votes
0answers
26 views

Xdebug PHP from remote linux server to Mac OS X DGBp client

I am trying to set up an XDebug connection on a remote linux server to my local IDE (PHPStorm) running on Mac OS X. PHP just hangs forever trying to connect. I'm pretty sure this is a matter of making ...
0
votes
0answers
98 views

Slow response time for sockets using Adobe's Flash player in Linux and OS X

I'm trying to build a simple latency meter using sockets in as3. It works ok in Windows and in Chrome on both Linux and OS X, when using Chromes Flash player. But when I use Adobes Flash player on ...
-3
votes
1answer
36 views

Applications for Computers and Mobiles [closed]

I know that there are some tools that make the app run on different mobiles or on different computers. But is there any tool/software that can make the app run on Computer (windows, mac and linux) as ...
-1
votes
1answer
126 views

osx' s /etc/init.d equivalent?

I am installing gitlab on a mac but this latter is mainly designed for linux os. Following the doc, I have to run this command curl --output /etc/init.d/gitlab ...
0
votes
1answer
67 views

PATH environment variable in python

I'm using OS X 10.8.3. If you open a terminal, echo $PATH /usr/local/bin is there, also if you run it via sh or bash however the python code output of: import os print os.environ.copy() lacks ...
2
votes
3answers
46 views

Can I use a single call to munmap() to unmap two memory mappings located in a contiguous range of virtual memory?

For example, if I do this: char *pMap1; /* First mapping */ char *pReq; /* Address we would like the second mapping at */ char *pMap2; /* Second mapping */ /* Map ...
0
votes
2answers
110 views

Developing a programme with GUI [closed]

I think that many students that start developing often ask themselves how to build a nice programme with a nice and friendly GUI. Well, I asked that myself and I searched on the web. I saw that there ...
2
votes
2answers
86 views

Why doesn't C print to shell until newline?

In C, sometimes my output will not get printed to Terminal until I print the newline character \n. For example: int main() { printf("Hello, World"); printf("\n"); return 0; } The Hello ...
0
votes
1answer
44 views

Rec Linux command on mac os x

I am currently working with python and modifying/expanding a script from linux to mac. Currently the script uses the command rec on linux to record audio, I am trying to find an equivalent on Mac OsX ...
0
votes
1answer
54 views

mpi4py returning rank differences

I want to launch parallel processes from a python script (and, for testing, interactively, but not from ipython), across two different versions of python, and have started out with mpi4py. The two ...
0
votes
1answer
42 views

Is there an equivalent of dyld for Linux?

Mac OS X provides a useful library for dynamic loading, called dyld. Among the many interesting functions for dynamic loading handling are functions to allow one to install callbacks which will be ...
2
votes
4answers
127 views

How should functionality that requires root privileges be added to a Common Lisp library?

Original Question I'm trying to create a Lisp library that can, among other things, edit my system's /etc/hosts file and nginx configurations. The problem I'm facing is that, because my Lisp image ...
0
votes
0answers
38 views

MPD error on OSX: “problems setting volume” [closed]

Getting this error when trying to set volume with MPC on OSX: error: problems setting volume Here's a snippet of my .mpdconf: audio_output { type "osx" name "OSX" mixer_type "software" } ...
1
vote
2answers
99 views

Script to Open URL as HTTP POST request (not just GET) in web browser

How can I open a URL from the command line script as a POST request to a URL? I'd like to to do this on Linux, Windows, and MacOS so a cross platform way of doing this For each of these I can open a ...
2
votes
0answers
66 views

How to portably extend a file accessed using mmap()

We're experimenting with changing SQLite, an embedded database system, to use mmap() instead of the usual read() and write() calls to access the database file on disk. Using a single large mapping for ...
0
votes
2answers
118 views

ANSI Color Specific RGB Sequence Bash

I know that in bash terminals a reliable way to change color is using ANSI escape sequences. For example: echo -e "\033[0;31mbrown text\033[0;00m" should output brown text (in brown) Is there a ...
2
votes
0answers
137 views

sudo mkdir /etc/abc gives command not found, but either sudo and mkdir used alone works [closed]

I can do sudo touch /etc/abc and sudo rm /etc/abc and it works, so does mkdir ~/abc but when I do sudo mkdir /etc/abcd I get sudo: nocorrect: command not found Any ideas? I'm using zsh ...
1
vote
1answer
122 views

Pseudo terminal problems (Mac/Linux): SIGTTOU & Inappropriate ioctl

I am working on a pseudo terminal library. The code is implemented in C code and the code is used by a web based terminal. The code works as long as I do not use sudo or login. This is the error I ...
0
votes
2answers
120 views

What is the maximum allowed sub-folder?

At first I wanted to ask "What is the maximum allowed sub-folder for a windows OS" But then I figured maybe my web hosting provider isn't on windows but on linux or something else. So I'm asking what ...
0
votes
0answers
34 views

aggregate audio device for Linux or android (like in osx)

In OSX it's possible to create aggregate audio devices. This means you can plug two USB audio interfaces into your Mac, and have them appear as one device to your DAW (I.e. Logic), allowing you to ...
1
vote
1answer
25 views

Building library from source files in Unix-like OS

When building any library from sources files, is it possible to set the place where I want it to be installed? I have read about some prefix flag, but I was wondering if all aplications have that ...

1 2 3 4 5 15