Personal computing discussed

Search found 15 matches

by zamb
Thu Nov 05, 2020 9:55 am
Forum: General Software
Topic: Issue deleting a directoryish (Linux)
Replies: 12
Views: 6781

Re: Issue deleting a directoryish (Linux)

Maybe a corrupt filesystem? I seldom see this kind of behaviour without there being a corrupt filesystem. It won’t harm you to run “****” on the volume, if for no other reason than to be at ease of mind. Sorry if I was a bad news bearer. Hope that helps. Ziyad. EDIT: The forum software censored the ...
by zamb
Mon Sep 29, 2014 11:05 pm
Forum: Graphics
Topic: Reference card brands
Replies: 11
Views: 3267

Re: Reference card brands

Outside of the three Tier1 board manufacturers (Asus, Gigabyte, MSI) who all make decent quality stuff you actually have limited choice from only two other manufacturers, at least that's the case with Nvidia: ⋅ Palit also sells under the KFA/Galaxy/Gainward labels. These are generally the...
by zamb
Mon Sep 08, 2014 5:42 am
Forum: Windows
Topic: How to stop videos from automatically launching?
Replies: 7
Views: 4119

Re: How to stop videos from automatically launching?

If it’s not Flash, but plain HTML5 video (Ogg/Ogm/MP4), then you could disable the auto–play feature from “about:config” then searching for “media.autoplay.enabled” and setting it to false. Wont lose anything for trying (you could, and should, revert the setting to its default value if it didn’t hel...
by zamb
Sun Mar 31, 2013 8:49 am
Forum: Developer's Den
Topic: Calling atoi() from within NASM
Replies: 7
Views: 7416

Re: Calling atoi() from within NASM

Try:
ld -o hello helloworld.o -lc
(Note the -lc!)

Hope that helps.
by zamb
Fri Mar 08, 2013 12:06 am
Forum: General Software
Topic: Can't open TS files from USB (Warning OKI TV's)
Replies: 42
Views: 22798

Almost–up–to–date MPlayer2 & FFmpeg on Gentoo Linux…

For what it’s worth: It didn’t work on an–almost–up–to–date MPlayer2 (a fork of MPlayer), with FFmpeg that was just compiled yesterday from Git (revision N-50552-g8cc5481) (FFmpeg is the important part here). Here’s what it outputs: MPlayer2 2.0-712-gd3c5801 (C) 2000-2012 MPlayer Team Cannot open fi...
by zamb
Tue Jun 05, 2012 9:42 am
Forum: General Software
Topic: Open source compression program
Replies: 6
Views: 1924

7zip…

http://www.7-zip.org/ Open source, Free (as in freedom), and free (as in cheap). Also available for Linux/*BSDs and other operating systems. From their website: ⋅ Supported formats: ⋅ Packing/unpacking: 7z, XZ, BZIP2, GZIP, TAR, ZIP and WIM ⋅ Unpacking only: ARJ, CAB, ...
by zamb
Wed May 16, 2012 11:28 pm
Forum: General Software
Topic: what constitutes incompressible data?
Replies: 7
Views: 3312

Nitpick…

Game_boy wrote:
…jpeg and mp3, but not png or wav…

Actually, hi–quality JPEGs are compress–able (using general purpose, loss–less algorithms, like the ones used in ZIP, RAR, and 7zip files); PNG are not compress–able (unless they were created using a lousy application/library).

Try it for yourself.
Ziyad.
by zamb
Sun May 06, 2012 10:16 pm
Forum: Overclocking, Tweaking, & Cooling
Topic: Cooler master 812 looks like a gem
Replies: 13
Views: 7293

Thanks…

DPete27 wrote:
FYI if anyone is interested in the different types of heatpipe wicks.

Thank you for the link.
Ziyad.
by zamb
Fri Jan 21, 2011 2:50 am
Forum: Echo Vale
Topic: The best way to backup lossless audio data?
Replies: 20
Views: 6094

Re: Slightly off-topic (sorry)…

The reason I sorted the list is so that you can subsequently use the "diff" command to compare the hash lists for two directory hierarchies, to instantly identify all files that differ or have been added/removed. Good point. Being "diff"-friendly is also the reason for the "...
by zamb
Thu Jan 20, 2011 5:09 am
Forum: Echo Vale
Topic: The best way to backup lossless audio data?
Replies: 20
Views: 6094

Slightly off-topic (sorry)…

#!/bin/bash find . -xdev -type f -or -type l | sort | xargs --delimiter=\\n md5sum -b Why not: find . -xdev -type f -or -type l -print0 | xargs -0 md5sum -b That’s much more robust and elegant. (I ignored the “sort” command as it’s not really needed.) By the way: The “-b” parameter to “md5sum” is n...
by zamb
Sun Nov 28, 2010 2:25 pm
Forum: Linux, Unix, and Assorted Madness
Topic: rsyncd.conf exclude examples please
Replies: 2
Views: 15522

Re: rsyncd.conf exclude examples please

(I never used “rsyncd”, so be warned…) You’re, most likely, better off using “exclude from” rule and putting everything in that file. For example: [path_to_share] path = /mnt/samba/path_to_share exclude from = /var/lib/rsyncd/my_exclude_rules in “/var/lib/rsyncd/my_exclude_rules” you have something ...
by zamb
Sat Nov 20, 2010 3:35 pm
Forum: Visual Haven
Topic: Monitor explanations
Replies: 3
Views: 1422

Re: Monitor explanations

Don’t know if it’s accurate… but thank you!

I learned new things from that PDF file (the size is about 7.5MiB, for the curios).

Ziyad.
by zamb
Fri Mar 05, 2010 8:33 am
Forum: Linux, Unix, and Assorted Madness
Topic: Ubuntu 9.10 Server, Wine, and "nice"
Replies: 5
Views: 4114

Re: Ubuntu 9.10 Server, Wine, and "nice"

The problem is that nice can only raise priority of a process if you have administrator privilege, and wine apparently gets upset if it is not running as the user who owns the directory where its config files are kept. Both of these are sensible security measures, but they're getting in the way of ...
by zamb
Sat Jul 04, 2009 7:00 pm
Forum: General Hardware
Topic: Random Freeze - please help
Replies: 23
Views: 3221

Re: Random Freeze - please help

CPU overheating?

Try running a CPU‑intensive application right after a clean boot (while the CPU is still cool) and see if that happens always and faster. (You could try installing the software that came with your main‑board to monitor the CPU’s temperature.)

Hope that helps.
Ziyad.
by zamb
Wed Nov 26, 2008 9:46 am
Forum: Linux, Unix, and Assorted Madness
Topic: External HDD with Ubuntu
Replies: 9
Views: 3594

Re: External HDD with Ubuntu

If you want to give your current user full access to the drive you need to do (in a terminal): sudo chown username:username /PATH/TO/USBDRIVE (Where username is the login name you use to log-in to your system, and /PATH/TO/USBDRIVE is where your USB drive is mounted. Here's an example from my system...
GZIP: On