Search found 851 matches

by rdmelin
Tue Aug 17, 2010 1:55 pm
Forum: ZoneMinder Distributions
Topic: Big problem, updated openssl on ZMLArch, now broke.
Replies: 5
Views: 5333

I've let the hosting site go. jameswilson has put the iso up here: http://www.thesecurityinstaller.co.uk/community/files/file/246-zoneminder-zm-larch-live-cd/ Curtis Hall also made his sourceforge hosting available but I havent been able to upload the file through their web browser only interface. I...
by rdmelin
Mon Aug 16, 2010 7:04 pm
Forum: ZoneMinder Distributions
Topic: Big problem, updated openssl on ZMLArch, now broke.
Replies: 5
Views: 5333

You can get the src package from here:
http://www.archlinux.org/packages/extra/i686/xawtv/
Extract it, cd to the xawtv folder, and run "makepkg"
This will build the package against the libjpeg installed on the system. Install it with pacman -U ...
by rdmelin
Sat Aug 14, 2010 7:55 pm
Forum: ZoneMinder Distributions
Topic: Big problem, updated openssl on ZMLArch, now broke.
Replies: 5
Views: 5333

Sorry about the slow reply. If you haven't given up already:
Boot up the livecd.
Run "bacman" openssl.
Copy the recreated package to your hard drive installation.
Reboot from the harddrive.
Install the package with "pacman -U" <package_file>
by rdmelin
Tue Jun 15, 2010 2:43 am
Forum: ZoneMinder 1.24.x
Topic: Need some help configuring remote access for zmviewer
Replies: 16
Views: 12918

You might take a look at this thread, especially the last few posts.
http://www.zoneminder.com/forums/viewto ... sc&start=0
by rdmelin
Tue Jun 15, 2010 1:42 am
Forum: ZoneMinder Distributions
Topic: ZMLarch hosting will expire soon
Replies: 11
Views: 11548

Hi James,
If you would like to grab a copy of the iso and put it up with a link that would be fine. When the hosting I have paid for expires I'll just let it go.

Thanks
by rdmelin
Tue Jun 08, 2010 2:13 pm
Forum: ZoneMinder Distributions
Topic: ZMLarch hosting will expire soon
Replies: 11
Views: 11548

@ curtishall Thanks for providing this option. I can login using the account you setup, however have not been able to successfully upload the iso using the web interface. The upload starts, and pretty much ties up my internet connection for several hours and then fails leaving no useful error messag...
by rdmelin
Tue Jun 08, 2010 12:20 am
Forum: ZoneMinder Distributions
Topic: Change desktop background in ZMLarch
Replies: 8
Views: 6354

Sorry I've been absent for awhile :(

The desktop background is set by pcmanfm (the file manager) so click on the house icon in the upper left, and then Edit --> Preferences --> Desktop
by rdmelin
Wed Apr 21, 2010 4:56 am
Forum: ZoneMinder Distributions
Topic: ZMLarch hosting will expire soon
Replies: 11
Views: 11548

Sourceforge may be a good solution. Are you hosting an ISO image there?

I started looking into that some time back and don't remember why I didn't pursue it.
by rdmelin
Wed Apr 21, 2010 12:51 am
Forum: ZoneMinder Distributions
Topic: ZMLarch hosting will expire soon
Replies: 11
Views: 11548

ZMLarch hosting will expire soon

The hosting site for the ZMLarch iso image and some related things is www.isentrix.com. It was initially set up with 2 years paid up. It has served out an average of 55GB per month, almost exclusively downloads of the ZMLarch iso. In about one month the account will need to be renewed. I do not have...
by rdmelin
Wed Apr 21, 2010 12:34 am
Forum: ZoneMinder Distributions
Topic: ZMLarch 1.24.2-1 how to start and stop from command line?
Replies: 3
Views: 12401

On Archlinux the equivalent command is "/etc/rc.d/zm start" In the user account I have an alias set. "rczm" is aliased to "sudo /etc/rc.d/zm" so you can use "rczm start" You can control the web server with "/etc/rc.d/httpd" or the alias "rchttpd...
by rdmelin
Tue Mar 09, 2010 2:01 am
Forum: ZoneMinder Distributions
Topic: ZMLarch MySQL root password?
Replies: 18
Views: 17135

I can confirm here that running from the live CD and making these changes I can connect to mysql as root from another host 1. Set a root password 2. Edit /etc/my.cnf and comment out skip-networking 3. In mysql mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' > IDENTIFIED BY 'password' WITH GRANT OPT...
by rdmelin
Mon Mar 08, 2010 4:12 pm
Forum: ZoneMinder Distributions
Topic: ZMLarch MySQL root password?
Replies: 18
Views: 17135

Try this in a mysql commandline:
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'
> IDENTIFIED BY 'password' WITH GRANT OPTION;
mysql> FLUSH PRIVILEGES;
Replace 'password' with your chosen password.
by rdmelin
Mon Mar 08, 2010 5:52 am
Forum: ZoneMinder Distributions
Topic: ZMLarch MySQL root password?
Replies: 18
Views: 17135

You wrote: running this as root, I get: mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'root'@'localhost' (using password: YES)' You are passing the -p switch when no password is set (using password: YES) To set the password the first time you must enter the comma...
by rdmelin
Sun Mar 07, 2010 3:44 pm
Forum: ZoneMinder Distributions
Topic: ZMLarch MySQL root password?
Replies: 18
Views: 17135

You may be bit by a bug in the hostname setup on installed systems. Edit both /etc/rc.conf and /etc/hosts and make sure the hostname in both is the same. The zmhost_nn(n)_nn(n) from the livecd network setup needs to either be changed to match the /etc/rc.conf hostname or vice versa. Of course you ca...
by rdmelin
Sat Mar 06, 2010 3:41 pm
Forum: ZoneMinder Distributions
Topic: ZMLarch MySQL root password?
Replies: 18
Views: 17135

"mysqladmin -u root password <newpassword>"

Then check by running "mysql -u root -p"