Sponsored Content
The Lounge What is on Your Mind? What brand is your primary computer? Post 302809701 by alister on Monday 20th of May 2013 01:04:28 PM
Old 05-20-2013
dgcc has been available without xcode for many years through fink and macports (package managers for open source software).

Please don't misconstrue that as an Apple or OS X endorsement. To be clear, my experience with Apple laptop hardware was horrid. My white polycarbonate/fiberglass macbook ,within its first 2 years, suffered from a swollen battery, a/c adapter failure, cracks around the keyboard and display, a dead fan, a dead key, and several keys on the keyboard's home row whose letters wore off. Despite being a laptop, this machine never left my home and was always treated well. Note that none of these problems were unique to my machine; there are ample forum threads on the net about them. However, I do seem to have been particularly unfortunate in suffering from all of them.

To be fair, I must say that their customer service treated me well and attended to most of these issues. But, after the third year, when Applecare had expired and the machine began to refuse to charge, I took great joy in dropping it from a balcony, before running it over with my car, and slamming a sledgehammer upon it. My only lament is that I did not have thermite for the remains. In accordance with Apple's enviromentally-friendly policies, I properly disposed of the corpse.

I hear that the aluminum unibody designs are more robust. For those who invest them, I hope that's the case. I will steer clear.

A low-end Lenovo G570 that I bought 8 months ago just died last week. Consumer Electronics 101: it never bodes well when your computer releases its magic smoke. Very soon after the acrid smoke began to exit the vent, the machine shut down and has not shown any sign of life since. I suppose I should not have expected anything more when the manufacturer itself has little confidence in their product's quality: the machine shipped with a 6 month warranty (3 months for some parts, such as hinges).

I hope that the Thinkpad line hasn't suffered similarly. I owned a Thinkpad 486 that was still going strong 20 years after it was born. I only got rid of it because I had been accumulating too much disused hardware.

Since my Lenovo's passing, I will buy a new machine soon. Hopefully, after experiencing bad luck with my last two purchases, this next one will turn out well. Currently, I am dividing my time between a couple of laptops: a 7 yr old HP Compaq nx6325 (Windows XP/OpenBSD) and a 15 yr old Pentium II Compaq Armada 7800 (Debian). The open source unix systems run very well on both machines (I eschew elaborate desktop environments in favor of very lightweight tabbed window managers).

In an emergency, the Armada doubles as a heavy, devastingly lethal, blunt weapon (it weighs approx 9 lbs/4 kgs). [1980s Arnold Schwarzenegger]I will crush your puny ultrabook between my catastrophic, pumped up hinges![/1980s Arnold Schwarzenegger].

Since both of my current machines are related to Compaq, that's where I cast my vote.

Regards,
Alister

Last edited by alister; 05-20-2013 at 02:22 PM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Must they be installed in Primary partition?

Hi, there. I know FreeBSD must be installed in primary and Linux can be installed in extended. What about NetBSD, OpenBSD and Solaris for x86? They must be installed in primary, too? (4 Replies)
Discussion started by: HOUSCOUS
4 Replies

2. UNIX for Dummies Questions & Answers

Cable Modem, Unix, XP Computer Primary, need advice setup!

I have a XP computer which is my primary. I recently, well just today installed a old version of Mandrake Linux 6.5 I had laying on a self collecting dust on a old PII 233mhz that had to be vacummed out before I could use it. I have my XP computer connected by 10/100 NIC to a cable modem. My... (1 Reply)
Discussion started by: garfunkle
1 Replies

3. Linux

setting primary dns

Hi, I am running Fedora 7. I seem to remember there being a command to determine the primary dns. Can anyone help me find out what it is? Thanks! (2 Replies)
Discussion started by: user23
2 Replies

4. AIX

hacmp 5.3 primary and standby?

Hi All, How do I determine if a hacmp 5.3 server is a primary or a standby? Thanks in advance. (2 Replies)
Discussion started by: itik
2 Replies

5. Linux

primary partition size

hi I am trying to create primary,extended and logical partitions. when I try to create a primary partition, I can give it maximum 1027M (1gb). Why? (9 Replies)
Discussion started by: tjay83
9 Replies

6. Solaris

copying from mirror to primary

Hi Anybody, I have a primary disk and mirror disk They are not synced properly. Even though i attached the mirrors. Now i want to copy one directory which is in primary to mirror disk. Is that possible ,, kindly guide me Regards Rj (5 Replies)
Discussion started by: jegaraman
5 Replies

7. Linux

Secondary linux dist WITHIN primary one

Hi New here so forgive my ignorance and inability to express myself in an informative manner ;) I have a Fedora distribution installed on my development computer. The system we build is meant to run on a slackware dist which is all fine and well. But due to our flow of deployment I would have... (2 Replies)
Discussion started by: inquam
2 Replies

8. Ubuntu

primary group for user

HI I need to know what is the primary group name of a particular user. How to do this ? Maybe with groups cmd ? (first group name in line, is the primary group) thx for help. (2 Replies)
Discussion started by: presul
2 Replies

9. Solaris

DNS Primary and Secondary

hi there, i using salaris 10 as my DNS server. i have 2 dns server primary and secondary. if primary dns server i edit/update, the other secondary dns server must be sync too. How can i configure if dns server (primary) can sync the secondary? (1 Reply)
Discussion started by: tappetmus
1 Replies

10. UNIX for Beginners Questions & Answers

Primary group

Is it possible user without a primary group (3 Replies)
Discussion started by: lobsang
3 Replies
PCAP_GET_SELECTABLE_FD(3PCAP)											     PCAP_GET_SELECTABLE_FD(3PCAP)

NAME
pcap_get_selectable_fd - get a file descriptor on which a select() can be done for a live capture SYNOPSIS
#include <pcap/pcap.h> int pcap_get_selectable_fd(pcap_t *p); DESCRIPTION
pcap_get_selectable_fd() returns, on UNIX, a file descriptor number for a file descriptor on which one can do a select() or poll() to wait for it to be possible to read packets without blocking, if such a descriptor exists, or -1, if no such descriptor exists. Some network devices opened with pcap_create() and pcap_activate(), or with pcap_open_live(), do not support select() or poll() (for example, regular network devices on FreeBSD 4.3 and 4.4, and Endace DAG devices), so -1 is returned for those devices. Note that in: FreeBSD prior to FreeBSD 4.6; NetBSD prior to NetBSD 3.0; OpenBSD prior to OpenBSD 2.4; Mac OS X prior to Mac OS X 10.7; select() and poll() do not work correctly on BPF devices; pcap_get_selectable_fd() will return a file descriptor on most of those versions (the exceptions being FreeBSD 4.3 and 4.4), but a simple select() or poll() will not indicate that the descriptor is readable until a full buffer's worth of packets is received, even if the read timeout expires before then. To work around this, an application that uses select() or poll() to wait for packets to arrive must put the pcap_t in non-blocking mode, and must arrange that the select() or poll() have a timeout less than or equal to the read timeout, and must try to read packets after that timeout expires, regardless of whether select() or poll() indicated that the file descriptor for the pcap_t is ready to be read or not. (That workaround will not work in FreeBSD 4.3 and later; however, in FreeBSD 4.6 and later, select() and poll() work correctly on BPF devices, so the workaround isn't necessary, although it does no harm.) Note also that poll() doesn't work on character special files, including BPF devices, in Mac OS X 10.4 and 10.5, so, while select() can be used on the descriptor returned by pcap_get_selectable_fd(), poll() cannot be used on it those versions of Mac OS X. Kqueues also don't work on that descriptor. poll(), but not kqueues, work on that descriptor in Mac OS X releases prior to 10.4; poll() and kqueues work on that descriptor in Mac OS X 10.6 and later. pcap_get_selectable_fd() is not available on Windows. RETURN VALUE
A selectable file descriptor is returned if one exists; otherwise, -1 is returned. SEE ALSO
pcap(3PCAP), select(2), poll(2) 5 April 2008 PCAP_GET_SELECTABLE_FD(3PCAP)
All times are GMT -4. The time now is 05:48 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy