| bio | website | |
|---|---|---|
| location | Chicago, IL | |
| age | ||
| visits | member for | 3 years, 9 months |
| seen | 4 hours ago | |
| stats | profile views | 315 |
I've hit both 1337 and 6502 on superuser, yay
|
Dec 7 |
revised |
A linux version of cygwin? edited body |
|
Dec 7 |
comment |
What are some options for connecting one Linux host's filesystem to the other? I'd suggest looking at setting up NFS for automount as well. Mounts from automount will play less havoc with your setup if the volume you're mounting is unavailable. |
|
Dec 7 |
revised |
DVD/CD burning .zip: is it more reliable, faster, longer lasting to burn a zip of files rather than the files as a folder? added 296 characters in body |
|
Dec 7 |
revised |
DVD/CD burning .zip: is it more reliable, faster, longer lasting to burn a zip of files rather than the files as a folder? edited body |
|
Dec 7 |
answered | change directory (cd) in unix based on a prior action |
|
Dec 7 |
answered | DVD/CD burning .zip: is it more reliable, faster, longer lasting to burn a zip of files rather than the files as a folder? |
|
Dec 7 |
answered | Passing parameters to a shell script running as a cronjob |
|
Dec 7 |
comment |
On unencrypted public wifi, what kind of real danger am I in? RE: Q3, yes, https is secure, but many times it's just the login data (username/password) is encrypted, but the token (cookie) is not. Firesheep works by stealing this cookie. |
|
Dec 7 |
answered | How to use LDAP to store sudoer information |
|
Dec 2 |
answered | The best LDAP browser in Linux? |
|
Nov 30 |
comment |
Linux Device Files I know what you mean, but I think you mean more like 'Device files have special formatting'. As how they work, they're pretty similar internally, just the formatting is different. |
|
Nov 30 |
answered | Linux Device Files |
|
Nov 24 |
revised |
Are .docx or .pdf files potentially dangerous? added 160 characters in body |
|
Nov 24 |
answered | How does a free-up RAM utility free up RAM? |
|
Nov 22 |
answered | Are .docx or .pdf files potentially dangerous? |
|
Nov 20 |
answered | Linux Man command help |
|
Nov 17 |
revised |
Is there anything like jigdo? edited tags |
|
Nov 17 |
comment |
Will a Mac help me learn Linux? I see your point, but since you have the ability to add a huge chunk of the UNIX toolkit, and it uses UNIX paths for these, you can still do a big chunk of UNIX things in cygwin. Granted, it does break down if you try to do Windows'y things. Our workloads differ obviously, i find it incredibly useful. |
|
Nov 16 |
answered | Will a Mac help me learn Linux? |
|
Nov 12 |
comment |
bash . moving files except files with a given suffix You can't use xargs here - xargs adds parameters to the end, you need after mv.
Remember that find allows both positive and negative patterns as well. Maybe something like:
find $INCDIR -name 'HDR_10_*' ! -name '*.gz' -exec mv {} $BACKUPDIR \; |