| bio | website | |
|---|---|---|
| location | Austria | |
| age | ||
| visits | member for | 2 years |
| seen | Mar 8 at 7:45 | |
| stats | profile views | 10 |
|
Nov 26 |
comment |
What kind of notification is Firefox sending when a download has finished? this helped me a lot already though. I'll try to figure this out. Or maybe others have a clue? |
|
Nov 26 |
comment |
What kind of notification is Firefox sending when a download has finished? it works almost perfectly, thanks! The audible bell in screen, however, works only if it is triggered from the visible screen-tab... |
|
Nov 26 |
comment |
What kind of notification is Firefox sending when a download has finished? yes sir! tput bel and xterm*bellIsUrgent: true is exactly what I was looking for. |
|
Sep 11 |
comment |
Is there a simple command for outputting tab-delimited columns in bash? great! thanks a lot! It was already installed on my machine. |
|
May 4 |
comment |
Why can't ld find this library? pastebin.com/SCx1Vz5b shows the output when omitting the librefblas.a from the -L option. It's fishy that all these errors are related to mpi.... @Mat, thanks for this hint! I've got, /usr/lib/openmpi/libmpi.so available. |
|
May 4 |
comment |
Why can't ld find this library?set | grep scala returns nothing. how can I add this path? |
|
Apr 5 |
comment |
What is an effective method for installing up-to-date software on an out-dated production machine? I found this mirror and managed to get something working (mirror.centos.org/centos/5/os/x86_64/CentOS) . For the moment the gentoo prefix seems to be a less complicated alternative. |
|
Apr 3 |
comment |
What is an effective method for installing up-to-date software on an out-dated production machine? I'm going to test this, it sounds interesting! |
|
Apr 2 |
comment |
What is an effective method for installing up-to-date software on an out-dated production machine? no, because I want to use it for high performance calculations (using MPI etc). |
|
Apr 2 |
comment |
What is an effective method for installing up-to-date software on an out-dated production machine? Yes just for me. I'm currently using ./configure --prefix ...; make; make install but I'm looking for a way that simplifies the dependency resolution. |
|
Apr 2 |
comment |
What is an effective method for installing up-to-date software on an out-dated production machine? thanks for this answer. I'm not familiar with CentOS that much. Can I install (in other than /) using yum and the packages from a web repository? thanks |
|
Jan 31 |
comment |
How can I retain the console input in mplayer when reading from stdin? thanks for the links, these are interesting pieces of software. |
|
Jan 31 |
comment |
How can I retain the console input in mplayer when reading from stdin? wow, this works! I don't fully understand what's going on, though. |
|
Jan 13 |
comment |
Why are there no -dev packages in Arch Linux? Hello thanks for your answer. I think you are right, because I noticed on Arch Linux I can compile packages right away (no need to install -dev packages). Could you include one reference? |
|
Jan 10 |
comment |
Changing the UID of files in /proc excellent info about /proc. I didn't realize these were process IDs. So that means it is pointless to change the uid. |
|
Jun 10 |
comment |
Remote for-loop over SSH look also at GNU Parallel's --sshlogin option. |
|
Jun 10 |
comment |
Use convert to grab a specific page from a PDF file? I was about to recommend pdftk as well. You will want to use it. |
|
Jun 2 |
comment |
What is a better way to deal with server disconnects of sshfs mounts? any solution using maintained software? |
|
May 5 |
comment |
Why does “ls *” take so much longer than “ls”? On the other hand, ls uses getdents64 and not (l)stat64 (as ls * is doing). getdents64 doesn't have a file name argument. On GPFL, ls -l uses another function called readlink, which may be faster than stat64. thanks a lot! |
|
May 5 |
comment |
Why does “ls *” take so much longer than “ls”? nice! You're right, I'm not seeing this difference on a local file system. Anyway, strace reveals that ls -l * is using lstat64 and getxattr, whereas ls * is just using stat64 and lstat64. |