So, no error when the user connects to https://google.com/, https://mybank.com/ etc., that have self signed certificates? How is the browser supposed to guess when the connection needs a correctly signed certificate or not?
I won't dispute your point, only remark that ntfsfix, as other ntfsprogs, tries very hard to be conservative, and bail out if unsupported metadata is found.
For my cases, it has worked correctly. One recurring problem is with a NTFS formated pen disk, that sees some hard shutdowns.
KVM is not an hypervisor. KVM is a kernel interface that provides user-mode access to CPU specific virtualization features. From the mandatory wikipedia entry:
"By itself, KVM does not perform any emulation..."
An hypervisor isn't an emulator. Xen, until recently, didn't support unmodified guests nor hardware emulation.
Only since the new processor features, Intel VT and AMD Pacifica (IIRC), did it start supporting running unmodified guests, and the emulation is also performed using a modified version of QEMU.
However, I agree that kvm isn't an hypervisor, as it runs under the host os, not above.
I think leopard. I had just installed it from scratch, with little data in my home partition, and decided to give FileVault a try.
Note that I wasn't able to mount my new, protected home, either with my password or the master one. So I couldn't even find a way to revert the change except with a reinstall.
FileVault didn't work for me. I keep my/Users in another partition, and FileVault successfully encrpyted my home, but OS X was afterwards unable to mount it.
I tried then to restore a backup of my home (not encrypted), but OS X kept trying, and failing, to mount a FileVault home, so I had to reinstall OS X.
The requests are for what is, at least for Duke's network, an invalid router address. Devices use the Address Resolution Protocol (ARP) to request the MAC address of the destination node, for which it already has the IP address. When it doesn't get an answer, the iPhone just keeps asking.
"I'm not exactly sure where the 'bad' router address is coming from," Miller says. One possibility: each offending iPhone may have been first connected to a home wireless router or gateway, and it may automatically and repeatedly be trying to reconnect to it again when something happens to the iPhone's initial connection on the Duke WLAN.
Don't even get me started about managing focus stealing in any kind of intelligent way.
I don't want *any* focus stealing. That's why I still prefer Linux with Metacity as WM. OS X is somewhat better than Windows on that respect, but not as good as I'd like. Is there any app or configuration option to tweak that?
You mean "If you can mount it, you can use it as a root partition, with the proper initrd/initramfs". The boot partition is where the initrd/initramfs is read from, so you can't rely on stuff in your initrd/initramfs for booting.
Yes, that's what I mean. Thanks for the correction.
Zope uses Basic Auth for its management interface, and includes a logout link that works in every browser I tested.
It works by always ignoring the authorization submited by the browser for that link and returns HTTP 401 with the same realm. This causes the browser to consider the login data invald and discard it, and rerequest it from the user.
I understand what you mean now. You're right, of course. As for my first comment, the "is empty" and "is set" means that it's undefined or defined to an empty/null value in the first case, and defined to a value different than null in the second case.
But not for the case you demonstrate: ${VAR+text} (or ${VAR-text}, etc.)
I'm not familiar with ${VAR[+-=]text} instead of ${VAR:[+-=]text}, I've been using bash from when I started using Unix. Both bash and ksh uses the form with '=', is the one without it from the original bourne shell?
(or, instead of init, telinit. It's the "correct" way)
BTW, if you can install the drivers without human intervention (in nvidia case, you need to extract the files from the package first), put something like this in/etc/rc.local (or/etc/rc.d/rc.local): modprobe -q module || script_to_install_driver
These two processors do not only differ in the manufacturing process: Changes to the memory controller have been made during the transition from 130 to 90 nm and SSE3 extensions were added. Opteron 248 was designed for HT800 (200 MHz bus), while the Opteron 275 is capable of running HT1000. Finally, the cache size per core is different as well.
My guess is the crashing programs are detecting SSE3 and when a thread that uses it runs in the single core processor, the application is killed for trying an "illegal instruction."
And you can enter only numbers, and the password input will look like pass code import, but with unlimited numbers.
Do region locks still apply?
How, in a legal way, am I supposed to acquire this art piece in the version the artists wanted me to appreciate?
So, no error when the user connects to https://google.com/, https://mybank.com/ etc., that have self signed certificates? How is the browser supposed to guess when the connection needs a correctly signed certificate or not?
I won't dispute your point, only remark that ntfsfix, as other ntfsprogs, tries very hard to be conservative, and bail out if unsupported metadata is found.
For my cases, it has worked correctly. One recurring problem is with a NTFS formated pen disk, that sees some hard shutdowns.
ntfsfix is the equivalent fsck.ntfs
It comes in the package ntfsprogs.
Enough cicky-clack to annoy your workmates, and a good feel to it.
Never had a Model M, though, so I can't give a comparison.
Also, I only have slight problems with the lack of key information w.r.t. the top row (numbers and symbols on top). YMMV, of course.
An hypervisor isn't an emulator. Xen, until recently, didn't support unmodified guests nor hardware emulation.
Only since the new processor features, Intel VT and AMD Pacifica (IIRC), did it start supporting running unmodified guests, and the emulation is also performed using a modified version of QEMU.
However, I agree that kvm isn't an hypervisor, as it runs under the host os, not above.
Note that I wasn't able to mount my new, protected home, either with my password or the master one. So I couldn't even find a way to revert the change except with a reinstall.
I tried then to restore a backup of my home (not encrypted), but OS X kept trying, and failing, to mount a FileVault home, so I had to reinstall OS X.
I don't want *any* focus stealing. That's why I still prefer Linux with Metacity as WM. OS X is somewhat better than Windows on that respect, but not as good as I'd like. Is there any app or configuration option to tweak that?
Yes, that's what I mean. Thanks for the correction.
As for the maintainer for sysvinit, the lsm tells you that. Or you could go with the maintainers of your distribution.
It works by always ignoring the authorization submited by the browser for that link and returns HTTP 401 with the same realm. This causes the browser to consider the login data invald and discard it, and rerequest it from the user.
Example:
I understand what you mean now. You're right, of course. As for my first comment, the "is empty" and "is set" means that it's undefined or defined to an empty/null value in the first case, and defined to a value different than null in the second case.
They are, for the uses I mentioned: :-, := and :+.
But not for the case you demonstrate: ${VAR+text} (or ${VAR-text}, etc.)
I'm not familiar with ${VAR[+-=]text} instead of ${VAR:[+-=]text}, I've been using bash from when I started using Unix. Both bash and ksh uses the form with '=', is the one without it from the original bourne shell?
- ${VAR:-text if $VAR is empty}
- ${VAR:=text if $VAR is empty and set VAR to this}
- ${VAR:+text if $VAR is set}
- ${#VAR} -> length of $VAR
- ${VAR#pattern} or ${VAR##pattern} -> remove match of pattern from beginning of $VAR (## -> longest match)
- ${VAR%pattern} or ${VAR%%pattern} -> remove match of pattern from end of $VAR (%% -> longest match)
There are other formats (see the man page), but these are the ones I use the most. Eg:http://www.google.com/ncr
I've seen this a couple of times, but I don't understand it. Could you please explain it? Thanks.
Hey, they even have albinos! :)
http://www.pledgebank.com/100laptop, and you're right, that movement was external to the project.
You don't need to reboot.
/etc/rc.local (or /etc/rc.d/rc.local):
1. init 1
2. install driver
3. init 5
(or, instead of init, telinit. It's the "correct" way)
BTW, if you can install the drivers without human intervention (in nvidia case, you need to extract the files from the package first), put something like this in
modprobe -q module || script_to_install_driver
These two processors do not only differ in the manufacturing process: Changes to the memory controller have been made during the transition from 130 to 90 nm and SSE3 extensions were added. Opteron 248 was designed for HT800 (200 MHz bus), while the Opteron 275 is capable of running HT1000. Finally, the cache size per core is different as well.
My guess is the crashing programs are detecting SSE3 and when a thread that uses it runs in the single core processor, the application is killed for trying an "illegal instruction."
Tested under Firefox as a bookmark.
(originally a ingle line, to make it shorter, but now with spaces for /.)
Oracle acquired Innobase, maker of InnoDB.