freestylers slackware repository

Here is a place for your projects which are not officially supported by the Porteus Team. For example: your own kernel patched with extra features; desktops not included in the standard ISO like Gnome; base modules that are different than the standard ISO, etc...
User avatar
freestyler
Contributor
Contributor
Posts: 384
Joined: 17 Oct 2013, 14:21
Distribution: Porteus XFCE

Re: freestylers slackware repository

Post#16 by freestyler » 16 May 2014, 03:29

cheers brokenman :)

Edit: Just checked, rsync is not supported on my server, its a shared host so I cant install it :(
I sent ya details the other day for ftp access if that will help.
Last edited by freestyler on 16 May 2014, 07:10, edited 1 time in total.
https://www.porteus-apps.org

cttan
Shogun
Shogun
Posts: 333
Joined: 26 Jan 2011, 16:15
Distribution: Porteus 3.2 and 4.0 64bit KDE
Location: Malaysia

Re: freestylers slackware repository

Post#17 by cttan » 16 May 2014, 04:24

Hi freestyler,

Thank you for the ultra fast response.
It seems like you have put nagios-plugins in both folder.

Code: Select all

drwxr-xr-x   2 0 0      4096 2014-05-16 03:26 ./network/nagios
-rw-r--r--   1 0 0        96 2014-05-14 14:28 ./network/nagios/.revision
-rw-r--r--   1 0 0      5210 2014-05-16 03:21 ./network/nagios/nagios-plugins-2.0-x86_64-1_fs.lst
-rw-r--r--   1 0 0       927 2014-05-16 03:21 ./network/nagios/nagios-plugins-2.0-x86_64-1_fs.meta
-rw-r--r--   1 0 0    886866 2014-05-16 03:16 ./network/nagios/nagios-plugins-2.0-x86_64-1_fs.tgz
-rw-r--r--   1 0 0        69 2014-05-16 03:21 ./network/nagios/nagios-plugins-2.0-x86_64-1_fs.tgz.md5
-rw-r--r--   1 0 0       665 2014-05-16 03:21 ./network/nagios/nagios-plugins-2.0-x86_64-1_fs.txt

drwxr-xr-x 2 0 0      4096 2014-05-16 03:27 ./system/nagios-plugins
-rw-r--r-- 1 0 0      5217 2014-05-16 03:21 ./system/nagios-plugins/nagios-plugins-2.0-x86_64-1_fs.lst
-rw-r--r-- 1 0 0       934 2014-05-16 03:21 ./system/nagios-plugins/nagios-plugins-2.0-x86_64-1_fs.meta
-rw-r--r-- 1 0 0    886866 2014-05-16 03:16 ./system/nagios-plugins/nagios-plugins-2.0-x86_64-1_fs.tgz
-rw-r--r-- 1 0 0        69 2014-05-16 03:21 ./system/nagios-plugins/nagios-plugins-2.0-x86_64-1_fs.tgz.md5
-rw-r--r-- 1 0 0       665 2014-05-16 03:21 ./system/nagios-plugins/nagios-plugins-2.0-x86_64-1_fs.txt

User avatar
freestyler
Contributor
Contributor
Posts: 384
Joined: 17 Oct 2013, 14:21
Distribution: Porteus XFCE

Re: freestylers slackware repository

Post#18 by freestyler » 16 May 2014, 04:48

hehe oops :P
Thanks for picking that up.
Not sure I'll have time to fix it today. I fly tonight and still got heaps to organize. I'll see how I go.
https://www.porteus-apps.org

cttan
Shogun
Shogun
Posts: 333
Joined: 26 Jan 2011, 16:15
Distribution: Porteus 3.2 and 4.0 64bit KDE
Location: Malaysia

Re: freestylers slackware repository

Post#19 by cttan » 16 May 2014, 06:26

No problem. Take your time.
Enjoy your trip.

User avatar
freestyler
Contributor
Contributor
Posts: 384
Joined: 17 Oct 2013, 14:21
Distribution: Porteus XFCE

Re: freestylers slackware repository

Post#20 by freestyler » 16 May 2014, 06:47

Thanks cttan, I just fixed the repo.
https://www.porteus-apps.org

cttan
Shogun
Shogun
Posts: 333
Joined: 26 Jan 2011, 16:15
Distribution: Porteus 3.2 and 4.0 64bit KDE
Location: Malaysia

Re: freestylers slackware repository

Post#21 by cttan » 16 May 2014, 16:38

Hi freestyler,

You are simply amazing! :good:

My script to run Nagios:-

Code: Select all

#!/bin/bash
activate /mnt/sdb1/nagios/nagios-4.0.6-x86_64-1_fs.xzm
activate /mnt/sdb1/nagios/nagios-plugins-2.0-x86_64-1_fs.xzm
sleep 2
groupadd -g 213 nagios
useradd -u 213 -d /dev/null -s /bin/false -g nagios nagios
usermod -G nagios www-data
ln -s /usr/libexec/nagios/ /tmp/cgi-bin          
ln -s /tmp/cgi-bin /var/www/htdocs/nagios
chown -R www-data.www-data /var/www
nagios -v /etc/nagios/nagios.cfg
cp -a /mnt/sdb1/nagios/nagios.conf /etc/httpd/extra/.
echo "" >> /etc/httpd/httpd.conf
echo "# Nagios Config" >> /etc/httpd/httpd.conf
echo "Include /etc/httpd/extra/nagios.conf" >> /etc/httpd/httpd.conf
htpasswd -b -c /etc/nagios/htpasswd.users nagiosadmin 123
chmod +x /etc/rc.d/rc.nagios
/etc/rc.d/rc.nagios start
sleep 2
while (true); do
  /etc/rc.d/rc.httpd restart
  if ps ax | grep -v grep | grep httpd > /dev/nul
  then 
    echo "httpd started."
    break
  else
    echo "httpd not running ..."
  fi
done
opera http://localhost/nagios &
# login using nagiosadmin and password is 123 you specified earlier
exit
FYI. Certain plugin will also require Nagios Plugin perl package downloadable using
cpan -i Nagios:Plugin

User avatar
Obosan
Samurai
Samurai
Posts: 114
Joined: 28 Mar 2014, 17:02
Distribution: Porteus v5.01 MATE
Location: JAPAN

Re: freestylers slackware repository

Post#22 by Obosan » 26 May 2014, 14:42

freestyler wrote:Updated:
32 bit:freemind 1.0.1
Thanks for updating freemind. :Rose: I use it on daily basis to sort my brain cells.:wink: ARGATO, freestyler!

User avatar
freestyler
Contributor
Contributor
Posts: 384
Joined: 17 Oct 2013, 14:21
Distribution: Porteus XFCE

Re: freestylers slackware repository

Post#23 by freestyler » 29 May 2014, 06:15

cheers cttan and Obosan,

Ive never tried those mind mapper programs. I think if i mapped my mind it would it would be somewhere between a cheech and chong movie plot and the sitemap for pornhub.com
https://www.porteus-apps.org

User avatar
brokenman
Site Admin
Site Admin
Posts: 6105
Joined: 27 Dec 2010, 03:50
Distribution: Porteus v4 all desktops
Location: Brazil

Re: freestylers slackware repository

Post#24 by brokenman » 29 May 2014, 14:08

:ROFL: I've seen every Cheech & Chong movie. Tommy Chong still gets around doing tours.
How do i become super user?
Wear your underpants on the outside and put on a cape.

amigo
White ninja
White ninja
Posts: 15
Joined: 26 Aug 2013, 14:14
Distribution: KISS
Location: Dreieich

Re: freestylers slackware repository

Post#25 by amigo » 29 May 2014, 16:00

It's me Dave -I got the stuff!

User avatar
Obosan
Samurai
Samurai
Posts: 114
Joined: 28 Mar 2014, 17:02
Distribution: Porteus v5.01 MATE
Location: JAPAN

Re: freestylers slackware repository

Post#26 by Obosan » 29 May 2014, 16:13

Cheech & Chong :ROFL: Enjoy puffing in the arms of angel! :angel:

User avatar
freestyler
Contributor
Contributor
Posts: 384
Joined: 17 Oct 2013, 14:21
Distribution: Porteus XFCE

Re: freestylers slackware repository

Post#27 by freestyler » 30 May 2014, 00:17

:D
https://www.porteus-apps.org

User avatar
brokenman
Site Admin
Site Admin
Posts: 6105
Joined: 27 Dec 2010, 03:50
Distribution: Porteus v4 all desktops
Location: Brazil

Re: freestylers slackware repository

Post#28 by brokenman » 30 May 2014, 23:53

lcms26-2.6-x86_64-2_fs.txz looks empty.
How do i become super user?
Wear your underpants on the outside and put on a cape.

User avatar
freestyler
Contributor
Contributor
Posts: 384
Joined: 17 Oct 2013, 14:21
Distribution: Porteus XFCE

Re: freestylers slackware repository

Post#29 by freestyler » 01 Jun 2014, 01:19

Not sure what happened there. ill check it out.
https://www.porteus-apps.org

User avatar
brokenman
Site Admin
Site Admin
Posts: 6105
Joined: 27 Dec 2010, 03:50
Distribution: Porteus v4 all desktops
Location: Brazil

Re: freestylers slackware repository

Post#30 by brokenman » 19 Jul 2014, 01:05

The repo disappeared?
How do i become super user?
Wear your underpants on the outside and put on a cape.

Post Reply