Posts: 71
jtwdyp
Joined: 08 Apr 2012
#1
OK so antiX-11-686 looks purty durned good on my AMD_64 desktop...

Code: Select all

CPU:       Single core AMD Athlon 64 3800+ (-UP-) cache 512 KB flags (lm nx sse sse2 sse3) bmips 2003.91 clocked at 1000.00 MHz 
Graphics:  Card: nVidia C51 [GeForce 6150 LE] bus-ID: 00:05.0 X.Org 1.9.5 Res: 1024x768@0.0hz 
Though I had to tweak a few things.

I installed E17 (my favorite WM/DE) but for some reason the session selector in slim didn't pick it up. So since I prefer to boot to console and use startx when I want the gui anyway, I tried to use update-rc.d to stop slim from actually running...

IE:

Code: Select all

update-rc.d -f slim remove
update-rc.d slim stop 20 2 3 4 5 .
But it decined to actually do it. So I got stubborn and used a root mc session to manually replace all the S01slim links with K01slim links, rebooted to a pure console session, created my own simple ~/.xinitrc, and used startx to fire up E17... And things were looking pretty good...

But I also had to eliminate some garbage in /etc/default/keyboard XKBOPTIONS="" In order that I could asign/use key bindings that depend on <shift>+<alt> being a seperate modifier combo from just <alt> {Aside from my persional E17 bindings that affected the abillity to use <shift>+<alt>+<a> to insert the path of the directory displayed in the other pannel to midnight commanders commad line} It also for some reason I can't figgure, affected the behavior of the"v" key binding in less, preventing it from opening the current file with EDITOR exported from my .bashrc (in my case that's vim) Which I was pleasently surprized to notice started working upon the next boot after setting those XKBOPTIONS to"".

Antway once I did all that, antiX works well on my desktop.

I'm a little puzzeled though about the text in my sources.list:
# MEPIS 11 series.
# Uncomment all MEPIS repos shown here to install headers and linux-kbuild
# from MEPIS repo for latest MEPIS kernel (2.6.36). Then comment back once installed.
The antiX-11-686.iso already installed the 2.6.36 kernel... And I'm not sure I understand the logic of only uncommenting that long enough to update the kernel???

Also, while iceweasel is a great drop in replacement for firefox which I use for secure connections to specific sites (like my bank) after which I always close the browser completely.
For generic browsing with multiple tabs left open to several sites (each of which might be positioned where I left off reading. I prefer to use a seperate browser. And for that, I like opera. So I uncommented the opera repository.

Code: Select all

deb http://deb.opera.com/opera/ squeeze non-free
(Though I'm wondering if it should be testing rather than squeeze for the rolling release configuration????)
Anyway uncommenting that line led to"apt-get update" complaining that there was no public key available. Which inturn led to an"apt-get install opera" warning that:

Code: Select all

WARNING: The following packages cannot be authenticated!
  opera
Install these packages without verification [y/N]?
I poked around in my old xubuntu sources notes and found an instruction on importing the key for the medibuntu repo, and browsed the opera repo untill I found a gpg file for squeeze, but:

Code: Select all

wget -q http://deb.opera.com/opera/dists/squeeze/Release.gpg -O- | apt-key add - && sudo apt-get update
gpg: no valid OpenPGP data found. 
So I gotta ask, How do I import the gpg key for the opera repository????
Last edited by jtwdyp on 18 Apr 2012, 17:35, edited 1 time in total.
Posts: 279
afab4
Joined: 17 Oct 2009
#2
jtwdyp wrote: So I gotta ask, How do I import the gpg key for the opera repository????
From a root terminal:

Code: Select all

wget -O - http://deb.opera.com/archive.key | sudo apt-key add -
antiX 11 uses testing repo sources. Squeeze has gone stable. Opera is still in squeeze repo though.
Posts: 4,164
rokytnji
Joined: 20 Feb 2009
#3
The antiX-11-686.iso already installed the 2.6.36 kernel... And I'm not sure I understand the logic of only uncommenting that long enough to update the kernel???
Don't touch Mepis repos. AntiX 11 by default is now completely Debian Testing (Wheezy).
If wanting a newer kernel. Look at Liqourix repos in sources.list.

Also. Running smxi in init. 3 boot as root will give choices on kernel upgrades also.
Plus Anti has posted kernel debs also.
Posts: 71
jtwdyp
Joined: 08 Apr 2012
#4
afab4 wrote:
jtwdyp wrote: So I gotta ask, How do I import the gpg key for the opera repository????
From a root terminal:

Code: Select all

wget -O - http://deb.opera.com/archive.key | sudo apt-key add -
Thanks. And done...
antiX 11 uses testing repo sources. Squeeze has gone stable. Opera is still in squeeze repo though.
As long as it doesn't cause a conflict with the rest of the repos, I'm happy! Thanks again...

rokytnji wrote:
The antiX-11-686.iso already installed the 2.6.36 kernel... And I'm not sure I understand the logic of only uncommenting that long enough to update the kernel???
Don't touch Mepis repos. AntiX 11 by default is now completely Debian Testing (Wheezy).
If wanting a newer kernel. Look at Liqourix repos in sources.list.
And Thank You!
As it happens the Liquorix repos are already uncommented in my sources.list... Don't remember uncommenting them, but as long as they are the right ones, I can't see any reason to re-comment them...
Also. Running smxi in init. 3 boot as root will give choices on kernel upgrades also.
Plus Anti has posted kernel debs also.
Good to know! Thanks again.