Author Topic: LXDE 64-bit  (Read 3575 times)

Offline Neal ManBear

  • Administrator
  • Super Villain
  • *****
  • Posts: 15845
  • LXDE! Coffee, Bacon and Cheesecake!
LXDE 64-bit
« on: September 02, 2011, 03:49:53 PM »
As any of you who follow me on twitter will already know, I've started work on the 64-bit version of PCLinuxOS-LXDE-2011. The work is ongoing and progressing well. Some more packages need to be built and installed, but a test ISO should be available soon. I'll announce it on the testers mailing list, when it is ready.   
http://groups.google.com/group/pclinuxos-testers?pli=1     

Offline coffeetime

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 3426
  • Send me an Angel
Re: LXDE 64-bit
« Reply #1 on: September 02, 2011, 04:38:32 PM »





Thank you neal!!
PCLinuxOS e17 Club member/e17 video/Wifi problems?
those who complain rarely read. those who read rarely complain
 

Offline Sproggy

  • Hero Member
  • *****
  • Posts: 1484
Re: LXDE 64-bit
« Reply #2 on: September 02, 2011, 05:40:32 PM »
woooooohoooooooooooo .... lets hear for the Bear!!!

Offline Neal ManBear

  • Administrator
  • Super Villain
  • *****
  • Posts: 15845
  • LXDE! Coffee, Bacon and Cheesecake!
Re: LXDE 64-bit
« Reply #3 on: September 02, 2011, 05:51:04 PM »
woooooohoooooooooooo .... lets hear for the Bear!!!

 :D :D :D :D :D Thank you, Kori.     

Offline Ɗα√ϵς§

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 5524
  • PCLinuxOS: A revolution in personal computing
Re: LXDE 64-bit
« Reply #4 on: September 05, 2011, 02:04:15 AM »
Wow, if it goes any faster than 32-bit LXDE, I might have to chain my computer down in case it takes off! ;D
PCLinuxOS has no wealthy sponsors and can only survive with your donations! Don't wait it might be too late.

Running PCLOS on Athlon II/250 with 2Gb Ram using ASUS M2N68-AM Plus Mobo with Nvidia GF7600GT graphics, and Samsung NC10 Netbook

Offline Neal ManBear

  • Administrator
  • Super Villain
  • *****
  • Posts: 15845
  • LXDE! Coffee, Bacon and Cheesecake!
Re: LXDE 64-bit
« Reply #5 on: September 05, 2011, 06:37:55 AM »
Wow, if it goes any faster than 32-bit LXDE, I might have to chain my computer down in case it takes off! ;D

I've bolted mine to the floor. ;) ;D ;D     

Offline Crow

  • Hero Member
  • *****
  • Posts: 8758
  • OBJECTS IN MIRROR... ARE LOSING
Re: LXDE 64-bit
« Reply #6 on: September 05, 2011, 07:51:41 AM »
My time has ended  :-\ , I need to learn how to sync repos to have one at home with the latest 32 bit that is packaged and freeze it for my own and friends consumption (and maybe send it in DVD's to those that needs it)

I won't cry, I promise  :-\

Keep the good work Neal   ;D
I shall pass this way but once;
any good therefore that I can do,
or any kindness that I can show
let me not defer nor neglect it,
for I shall not pass this way again.

Linux User #330412

Offline Sproggy

  • Hero Member
  • *****
  • Posts: 1484
Re: LXDE 64-bit
« Reply #7 on: September 05, 2011, 09:55:14 AM »
My time has ended  :-\ , I need to learn how to sync repos to have one at home with the latest 32 bit that is packaged and freeze it for my own and friends consumption (and maybe send it in DVD's to those that needs it)

I won't cry, I promise  :-\

Keep the good work Neal   ;D

crow i have a script to build a home repo ... i will paste it in when i get home ;)

Offline Sproggy

  • Hero Member
  • *****
  • Posts: 1484
Re: LXDE 64-bit
« Reply #8 on: September 05, 2011, 11:36:18 AM »
here ya go Crow ...

copy this text to a txt file ... i saved mine as repobackup ...

Code: [Select]
#!/bin/bash

while [  "$localrepo" = "" ]; do
   echo -n "Type path for local repo (/home/kori/Downloads/repobackup/)" #path to repo
   read -e localrepo
done

for srpms in SRPMS.main SRPMS.nonfree SRPMS.games SRPMS.kde4 SRPMS.special SRPMS.testing SRPMS.updates SRPMS.xfce4 #add sub folders to local repo add/remove as you like
   do
mkdir -p $localrepo$srpms #creates local repo plus SRPMS sub folders

#rsync -av --delete rsync://ftp.heanet.ie/pub/pclinuxos/apt/pclinuxos/2010/$srpms/ $localrepo$rpms  # add rpms to local repo

rsync -av --delete rsync://ftp.heanet.ie/pub/pclinuxos/apt/pclinuxos/2010/$srpms/ $localrepo$srpms

done

for rpms in RPMS.main RPMS.nonfree RPMS.games RPMS.kde4 RPMS.special RPMS.testing RPMS.updates RPMS.xfce4 #add sub folders to local repo add/remove as you like
   do
mkdir -p $localrepo$rpms #creates local repo plus RPMS sub folders

#rsync -av --delete rsync://ftp.heanet.ie/pub/pclinuxos/apt/pclinuxos/2010/$rpms/ $localrepo$rpms  # add rpms to local repo

rsync -av --delete rsync://ftp.heanet.ie/pub/pclinuxos/apt/pclinuxos/2010/$rpms/ $localrepo$rpms

done

genbasedir --flat --bz2only --progress $localrepo kde4 main nonfree special testing updates xfce4 #create pkglist

exit 0

then find the file and change it's properties to make it executable ...

then go to it's folder ... open terminal and type in ./repomaker or whatever you called it ... it will ask you for a location you want your repo ... put in what you want ... i have mine in /home/kori/Downloads/repobackup/pclinuxos/2011/ ... you can put it anywhere as long as the location is valid ... then hit enter ... it will go off and download the whole repo ...

i also have 1 for the megagames ... just follow the same instructions as above by name it megagamesrepo ...

Code: [Select]
#!/bin/bash

while [  "$localrepo" = "" ]; do
   echo -n "Type path for local repo (/home/kori/Downloads/repobackup/)" #path to repo
   read -e localrepo
done

# add megagames SRPMS repo's to your backup

for srpms in SRPMS.megagames #add sub folders to local repo add/remove as you like
   do
mkdir -p $localrepo$srpms #creates local repo plus SRPMS sub folders

#rsync -av --delete rsync://distro.ibiblio.org/pclinuxos/megagames/apt/pclinuxos/2010/$srpms/ $localrepo$srpms  # add rpms to local repo

rsync -av --delete rsync://distro.ibiblio.org/pclinuxos/megagames/apt/pclinuxos/2010/$srpms/ $localrepo$srpms

done

# add megagames RPMS repo's to your backup

for rpms in RPMS.megagames #add sub folders to local repo add/remove as you like
   do
mkdir -p $localrepo$rpms #creates local repo plus RPMS sub folders

#rsync -av --delete rsync://distro.ibiblio.org/pclinuxos/megagames/apt/pclinuxos/2010/$rpms/ $localrepo$rpms  # add rpms to local repo

rsync -av --delete rsync://distro.ibiblio.org/pclinuxos/megagames/apt/pclinuxos/2010/$rpms/ $localrepo$rpms

done


genbasedir --flat --bz2only --progress $localrepo megagames #create pkglist

exit 0

Kori ;D ;D ;D

Offline Crow

  • Hero Member
  • *****
  • Posts: 8758
  • OBJECTS IN MIRROR... ARE LOSING
Re: LXDE 64-bit
« Reply #9 on: September 05, 2011, 11:51:05 AM »
Kori, you're an angel,


a Linux Angel.

Thank you, I will begin this night.

« Last Edit: September 07, 2011, 09:21:43 AM by Crow »
I shall pass this way but once;
any good therefore that I can do,
or any kindness that I can show
let me not defer nor neglect it,
for I shall not pass this way again.

Linux User #330412

Offline ltelmo

  • Full Member
  • ***
  • Posts: 163
Re: LXDE 64-bit
« Reply #10 on: September 05, 2011, 01:08:34 PM »
Thats cool Kori! I might have to try even!
Super,Junior,Beginner,n00b PcLinuxOs Linux user

Offline Vorteggs

  • Hero Member
  • *****
  • Posts: 2408
Re: LXDE 64-bit
« Reply #11 on: September 07, 2011, 04:31:39 AM »
I'd like to do testing but I won't register on Google.

Is there an alternative way for me to share my testing results?

Offline Sproggy

  • Hero Member
  • *****
  • Posts: 1484
Re: LXDE 64-bit
« Reply #12 on: September 07, 2011, 05:01:43 AM »
I'd like to do testing but I won't register on Google.

Is there an alternative way for me to share my testing results?

just register with fake details ... i did ... everyone does ... you been hanging round the paranoid lot too much ...

Offline Vorteggs

  • Hero Member
  • *****
  • Posts: 2408
Re: LXDE 64-bit
« Reply #13 on: September 07, 2011, 05:26:43 AM »
Well I'll do.

It's not about paranoia but it's somewhat unfair for me accusing them and at the same time using them.
But sometimes (rarely) I do unfair things if the other side is too big and strong. :(
There is a solution though - I'll stop accusing them if using them. ;)

Offline LKJ

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 1952
Re: LXDE 64-bit
« Reply #14 on: September 07, 2011, 03:48:36 PM »
I'm holding out for the 68bit version  :D ;D
Good things come in small packages. From small minds, not so much.

All walls by LKJ unless noted.
iMac 2.8 GHz Quad Core i7 12GB