| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 10 months |
| seen | May 15 at 21:25 | |
| stats | profile views | 13 |
The user formerly know as user825518
|
May 4 |
comment |
Can I share /usr/local between multiple Linux distributions? If you're doing a bind mount of /boot, I don't believe that would affect the bootloader unless you try running grub-install or update-grub (depending on the version) and it reads from the newly mounted one. (see linux.die.net/man/8/grub-install). But overall, I believe I have gotten away with running one /boot partition. You will probably want to look at this guide: garron.me/en/linux/… or something similar for dual-booting two Linux installations. |
|
May 2 |
comment |
X.org: two 'Screens' on one 'Device' I haven't done this with AMD cards successfully, but I have used Nvidia's TwinView to get two separate x screens |
|
Apr 24 |
comment |
SSH login via IPv6 successfull while using IPv4 to the same host yields “Permission denied” Just curious, does this look any different if you use public key auth? |
|
Mar 28 |
comment |
Communication to device is lost when network starts on boot up? Does the problem persist when you go straight to ttyUSB0? I'm not quite sure of your use case. Can you give an example of how you're opening the socket on both sides - either with a code snippet or equivalent MWE (maybe something with socat and telnet)? |
|
Mar 28 |
comment |
SELinux: Can I disable copying of certain files? No worries, it's not easy to come up with all the possibilities on your own. That's why we have stackexchange :-) Let us know how it goes! |
|
Mar 26 |
comment |
SELinux: Can I disable copying of certain files? Not really an SELinux expert, but if I can read the file but not copy it, would cat file | ssh otherserver 'cat > stolenfile' still work? Are you using rbash or some sort of restricted environment? |
|
Jan 23 |
comment |
GRUB fails to install Can you post your partiton layout and the output of cat /boot/grub/device.map? |
|
Aug 28 |
comment |
Install another PHP version. Fedora 17 You will also need to run make and make install (not sure if you did that already). But jordanm's answer is where it should be. |
|
Apr 27 |
comment |
How can I get entries for a given time period from a 400MB+ log file? True, but this is about as simple as you can get without parsing the dates and figuring out when you've crossed. My assumption was that with a 400MB log files, rotation might not be an issue and there's probably events close to your area of interest. For the rotation problem at least, there's always cat, zcat, etc... |
|
Apr 7 |
comment |
autoconf save ./configure command line to config.h Thanks, exactly what I was looking for! |
|
Apr 7 |
comment |
Creating an HTTPS tunnel I was thinking mod_proxy would be helpful if you had something in a DMZ type environment, but it sounds like this is not possible. If there a http server running on the host you ssh in to? Have you asked your service provider if they can do anything, or do they just suggest ssh tunnels? |
|
Aug 24 |
comment |
Vim markers and macros This seems to have done the trick for what I was trying to do, thanks! (I was only using simple macros with predictable movement, so it works great!) |