Many of my traditional blog post live on this site, but a great majority of my social-style posts can be found on my much-busier microbloging site at updates.passthejoe.net. It's busier because my BlogPoster "microblogging" script generates short, Twitter-style posts from the Linux or Windows (or anywhere you can run Ruby with too many Gems) command line, uploads them to the web server and send them out on my Twitter and Mastodon feeds.
I used to post to this blog via scripts and Unix/Linux utilities (curl and Unison) that helped me mirror the files locally and on the server. Since this site recently moved hosts, none of that is set up. I'm just using SFTP and SSH to write posts and manage the site.
Disqus comments are not live just yet because I'm not sure about what I'm going to do for the domain on this site. I'll probably restore the old domain at first just to have some continuity, but for now I like using the "free" domain from this site's new host, NearlyFreeSpeech.net.
Call it a reality check.
After installs of Debian Wheezy, an unsuccessful upgrade to Sid, and more installs -- Ubuntu 12.04 and 13.10 -- plus some Debian Sid-derived live-disc tests (Siduction, Aptosid), I've decided that Fedora is where I should be right now.
Probably due to my hardware being so new and Debian Stable being so relatively old, my idea about returning to Debian didn't work out as well as I could have hoped.
And then I had trouble with X in Siduction and Aptosid.
Onward, upward. Ubuntu 12.04 wouldn't boot after install, probably also due to its age relative to my HP Pavilion g6-2210us.
Ubuntu 13.04 with the proprietary fglrx driver ran well enough that I still have it on the test drive, a separate 320 MB disk that I swapped into the laptop.
But Unity isn't for me, and I don't see much of an advantage at this point in Ubuntu GNOME 13.10 vs. Fedora 19 with GNOME and Xfce, which is what I'm running once again.
I found GNOME 3.4 in Debian Wheezy much more responsive than GNOME 3.8 in Fedora 19, but the other problems with graphics I had in Debian canceled out that speed improvement.
And the way I have it set up, Xfce 4.10 in Fedora is probably the best desktop environment I've ever used. And I do still have GNOME 3.8 to test when I wish.
I continue to use the proprietary AMD Catalyst driver from RPM Fusion, just as I continually hope for the eventual return of working suspend/resume to this laptop.
That's all I'm really missing.
And the pace of Fedora, which makes even Debian Sid look extremely conservative, offers the best chance of getting there as quickly as possible.
And as I've said before, for all of its forward thinking and new kernels, Fedora 18 and 19 have been remarkably trouble free.
For new hardware, especially when using UEFI, extra especially when dual-booting with Windows 8, I recommend Fedora without reservation.
Amid all the talk about the Steam gaming platform coming to Linux, and more specifically Ubuntu, I just learned that Steam is waiting to enter the RPM Fusion repository for Fedora GNU/Linux users.
These things happen in predictable patterns. Due to hardware issues I land in Fedora, and after six months it's time for something else.
Not that Fedora 18 and now 19 haven't been great, because they have.
But I'm wary of my AMD APU-based HP laptop's trouble with suspend/resume and 3D acceleration. I had both working for a very short time during the AMD Catalyst 13.6 beta's brief run.
But before that I had neither, and now I have decent 3D with AMD Catalyst but seemingly no hope of working suspend/resume with this AMD A4-4300M APU and its AMD Radeon HD 7420G graphics.
And I'm getting tired of new kernels coming into Fedora, some with Catalyst support, some without. And it's past time that this AMD GPU (I think it's the Trinity family) get better support from the kernel and the free and proprietary drivers.
What I'm saying is that if the hardware support I need is not going to come soon, I'd like something more stable while I'm waiting.
So I started auditioning new Linux distributions yesterday.
And when Debian 7.1 and 7.2 Live DVDs both allowed me to successfully suspend/resume my HP Pavilion g6-2210us laptop, I was firmly pulled back into the Debian camp. To my "home" distro.
I thought you could take care of turning off suspend when the laptop lid is shut under GNOME 3 by using GNOME Tweak Tool. That doesn't work.
Automatic suspend when the lid is closed doesn't work for me because suspend/resume doesn't function on my HP hardware, and I'd like to close the damn lid every once in awhile without having to do a hard boot afterward.
It's the little things.
So I dug in a bit and found out in the Fedora Forum what you have to do (thanks to forum poster jvroig):
In a terminal:
su -
cd /etc/systemd/
gedit logind.conf
Once you're in logind.conf, uncomment (i.e. remove the #) on this line:
#HandleLidSwitch=suspend
Then change "suspend" to "lock"
It should now read like this:
HandleLidSwitch=lock
Save and close the logind.conf file.
Once you reboot, closing the lid should lock the screen and not suspend the laptop.
Note: Xfce doesn't suffer from the same inability as GNOME 3 to control what happens when you close the laptop lid.
Alternate instructions if you want to use vi and sudo:
Open a terminal and type:
$ sudo vi /etc/systemd/logind.conf
Change this line:
#HandleLidSwitch=suspend
to this (remove #, replace suspend with lock):
HandleLidSwitch=lock
Save and close the file in vi, then reboot.