| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 11 months |
| seen | 2 days ago | |
| stats | profile views | 21 |
|
Jan 16 |
comment |
Why does `ls` without any arguments (only flags) give me “no such file or directory”? What happens with "ls" --color=always? |
|
Jan 14 |
comment |
Parsing command line output delimited by underscore What do you mean with "parse out of the string"? Do you want to remove the token3_4_token4_2 part or do you want to extract it? |
|
Jan 7 |
comment |
How does “PROGRA~1” path notation work? It doesn't happen to me. If I open C:\progra~1 the full folder name is also shown instead of the abbreviation. Besides: What is the intention of your question? What do you want to achieve? |
|
Oct 31 |
comment |
Extracting final word in sentence through regular expression?\w is actually equal to [a-zA-Z0-9_] (note the underscore). Perhaps adding - (hyphen) might be useful for sentences like This has to be re-evaluated. |
|
Oct 29 |
comment |
Which RAID will be better for my use @m4573r Yes, using RAID 1 with more than 2 disks and no striping you would effectively mirror the same data over all disks. I modified my answer accordingly. |
|
Sep 16 |
comment |
Read / Write NTFS External Hard Disk In Mac Mountain Lion Has the drive been properly disconnected in Windows? If you didn't safely remove the drive before disconnecting it in Windows the drive may not be writeable in Mac OS X or Linux. |
|
Sep 10 |
comment |
Platform independent SSH client? After installing cygwin ssh you can run it from cmd.exe. |
|
Sep 10 |
comment |
cloning only the os (windows7)? One approach would be to backup your personal data to a different drive, then delete it from your HDD, shrink your OS partition to fit the size of your SSD, and then following my answer below. |
|
Sep 10 |
comment |
cloning only the os (windows7)? @Ramhound Yes, that's why I stated the same in the very first sentence. |
|
Sep 10 |
comment |
cloning only the os (windows7)? Is your OS on a separate partition which fits on the SSD (good) or do you have one big 1TB partition (not so good..)? |
|
Sep 9 |
comment |
How to access Steam chat logs? Giving a 3rd party your Steam login details (which are required to gain access to your conversations) is very bad. Don't even consider doing it. |
|
Sep 4 |
comment |
Apache2 Server configuration with subdomain @AntonRoth You have to use a specific or wildcard dynamic dns entry (this has to be set up with your dyndns provider). Otherwise you can't use subdomain-specific apache configurations. I updated my answer accordingly. |
|
Sep 3 |
comment |
How to split a text file into multiple text files This works with gawk but not with awk (at least the awk on a default Debian system). awk's match function only allows two parameters, so your example gives a syntax error with awk. |
|
Sep 3 |
comment |
How to split a text file into multiple text files @terdon No, if you use STDIN you cannot pass the text file as parameter. However, script.pl < test.txt is better than using cat - I updated my answer accordingly. |
|
Sep 3 |
comment |
Clone a 2TB WD Green internal drive with bad sectors to a 3TB partitioned external @ron This is correct: With -r 10 ddrescue will try up to 10 times reading bad sections of your hard disk. After the 10th try it will continue. Also see the last example which I added to my answer. |
|
Sep 2 |
comment |
Why is my system using port 4? TCPView (part of the free Sysinternals Suite) can be very helpful to find out what application is using/listening on which ports. |
|
Aug 30 |
comment |
When can authorized key user feature fail? Follow this answer and check if public key auth is working correctly with ssh -v. |
|
Aug 30 |
comment |
When can authorized key user feature fail? Does it ask for the password of your ssh user login or does it ask for the password of the private key file? Perhaps you just don't provide your private key correctly - are you using ssh-agent? |
|
Aug 30 |
comment |
Partition used and available size in bytes The actual size of what? Available file system space? Used file system space? Partition size? For partition size just use your parted /dev/sdd1 unit B print command, otherwise use df -B1 and don't sum up the used + available space but use the given total numbers instead. |
|
Aug 30 |
comment |
Partition used and available size in bytes No, I guess this is too much. But I don't know your setup, e.g. if your file system is using the maximum available size of your partition. So what is it that you actually want? |