|
May 5 |
awarded | Supporter |
|
Mar 22 |
answered | mdadm raid 1 grub only on sda |
|
Mar 22 |
comment |
Can statically linked binary require shared libraries? Would be nice if someone with a real grasp of linking would add a paragraph on how this stuff really works without all the "experimentation" |
|
Mar 21 |
revised |
Can statically linked binary require shared libraries? wrapped some lines, corrected "i" and "libs" |
|
Mar 21 |
answered | EC2 Ubuntu images for local usage |
|
Mar 21 |
awarded | Informed |
|
Mar 21 |
suggested | suggested edit on Can statically linked binary require shared libraries? |
|
Mar 21 |
answered | Can statically linked binary require shared libraries? |
|
Mar 21 |
answered | Best way for automated ban / throttle of aggressive clients on a Linux / Apache webserver for a period of time? |
|
Mar 21 |
awarded | Citizen Patrol |
|
Mar 21 |
revised |
How to Disable secondary drive from booting upon restart - Windows removed commanline bias |
|
Mar 21 |
awarded | Yearling |
|
Mar 21 |
revised |
TCP RST right after FIN/ACK shortned some sentences, removed some filler phrases, removed some redundant info. |
|
Mar 21 |
suggested | suggested edit on TCP RST right after FIN/ACK |
|
Mar 21 |
suggested | suggested edit on What do these disk errors in syslog mean? |
|
Oct 13 |
comment |
Scp only a specific folder rsync is pretty much the best there is, once you get used to it. I would suggest something better if I knew anything better ;) |
|
Oct 13 |
comment |
Scp only a specific folder I have never used this options, but there is --log-file=FILE for rsync which can be customized. You can look into that. .....The simple thing to do would be: rsync /source /destination -av 2>&1 > /tmp/rsync-out.txt . This will save all the output and errors into /tmp/rsync-out.txt |
|
Oct 13 |
comment |
Scp only a specific folder Then you need to copy from a higher level folder and use --exclude for what you don't need. |
|
Oct 13 |
comment |
I need to mount directory from one hdd to public_html folder you are making a "virtual copy" from one folder to another folder. ext3 is involved when you take a /dev/block-device (sda1,hde4,etc) to a folder. --bind does not mount anything, it only makes some folder visible in another place. |
|
Oct 13 |
answered | Secure copy uucp style |