Search Results

0
votes

How do you force a CIFS connection to unmount

There's a -f option to umount that you can try: umount -f /mnt/fileshare Are you specifying the '-t cifs' option to mount? Also make sure you're not specifying th …
0
votes

is there a way for my binary to react to some global hotkeys in linux ?

One way to do it is to have your application listen on a certain port, or socket file, for incoming requests. Then you can write a small client application that connects to that port or soc …
3
votes

Calculate size of files using basic linux commands

With zsh, you can use extended globbing to do: du -c **/*.undo …
4
votes

In bash, how to make control-delete mean kill-word?

On my machine, pressing Ctrl-V, Ctrl-Delete outputs this: ^[[3;5~ The ^[ escape character can be replaced with \e, so you can then use bind like this …
3
votes

How do I create a TCP server that will accept only one connection at a time?

You could close your original socket that's listening for connections after accepting the first connection. I don't know if the socket class you're using will allow you to do that though. …
1
vote

How can I disable “demand paging” for one of my userspace programs ?

If you have the ability to modify the application, you could use the mlock() / mlockall() system calls to ensure that your memory doesn't get paged out: #i …
8
votes

Removing created temp files in unexpected bash exit

I usually create a directory in which to place all my temporary files, and then immediately after, create an EXIT handler to clean up this directory when the script exits. TMPDIR=`m …
4
votes

Is it possible to have a PHP script authenticate users with their Linux user info?

To access Linux's authentication system directly, you could look at using the PAM module: http://pecl.php.net/package/PAM …
1
vote

linux shell: How to read command argument from a file?

kill -9 $(cat pid) or cat pid | xargs kill -9 will both work …