Forgot your password?

typodupeerror

Comment: Re:Doesn't sound like a flaw to me (Score 1) 184

What system do you use which trashes all its buffer cache from time to time, just for fun?

Usually, a filesystem is fully synced only when it is unmounted, and that cannot happen while a process still holds a reference to a file on it.

Instead of "sync" or "echo 3 > /proc/sys/vm/drop_caches" you can start some memory-hungry program, which will quickly eat up all your memory and force all buffers to disk (either in swap or in the filesystem). Problem solved ;-)

Comment: Re:How is this *really* a problem? (Score 1) 184

If you are using a persistent /tmp, 'root' is anybody who mounts the HDD...

And in other news, the contents of memory may persist through reboots. It's not like the BIOS or the OS fill it with zeros on each reboot. You'll have to also unplug the power cord, yank the battery, etc.

Comment: Re:Doesn't sound like a flaw to me (Score 1) 184

Having your terminal session stored on disk mean that everything you see is suddenly on your filesystem, and staying on it if your /tmp is backed by the harddrive.

No. If you open(O_CREAT) a file than immediately unlink it, and use the opened handle to store temporary data, that data has no more chance to hit the disk than regular memory being swapped out.

Try to learn a bit about buffer cache and such stuff.

This "bug" is about someone ignorant about security and how an OS works having his naive assumptions contradicted by reality.

Comment: Re:Determining the best turd (Score 1) 228

by Anonymuous Coward (#38422374) Attached to: Examining the Usability of Gnome, Unity and KDE

There are dozens of ways to transfer files between computers. NTFS-formatted flash drives happen to be a stupid one, as that filesystem is only 100% safe to write to on windows

Besides, flash drives are "optimized" for FAT and will be much slower when used with another fs -- their firmware makes assumptions about the position of the FAT table, and treats writes to those addresses specially.

You can even break them badly by repartitioning them with some general purpose tool, eg start the first partition at 63*512 as usual on hds.

It's pretty depressing.

Comment: Re:Wow (Score 1) 753

by Anonymuous Coward (#38379792) Attached to: Firefox Too Big To Link On 32-bit Windows

but am unsure how I would properly connect the 32-bit system to the 64-bit one for X apps

That's trivial -- you just have to mount /home and /tmp (either as normal partitions or with --bind) inside the chroot, and they will find the X11 socket and the .Xauthority file just fine.

But you don't really need a chroot for that. You can install the 32bit libraries and ld-linux.so somewhere and then starting them with a script like LD_LIBRARY_PATH=/32libs /32libs/ld-linux.so "$@".

So this it it. We're going to die.

Working...