Re: /var/www/tmp permission

2018-12-13 Thread Manolis Tzanidakis
Hello, you can create a new dir under /var/www, eg. /var/www/mytmp, set the permissions to 1700 and ownership to your php user and then add the following in /etc/php-fpm.conf to use it: env[TMP] = /mytmp env[TMPDIR] = /mytmp env[TEMP] = /mytmp php_admin_value[upload_tmp_dir] = /mytmp I usually

Re: Is Intel PRO/1000 CT Desktop Adapter supported on amd64?

2018-06-28 Thread Manolis Tzanidakis
On Wed (27/06/18), Vijay Sankar wrote: > > Quoting John Long : > > I found a lot of PRO/1000 adapters listed in the em driver man page but > > CT version is not included. > > Since the CT version uses the Intel 82574L Controller, I think it will work. Indeed. I've got a couple of those and work

Re: Errors with Php and curl under OpenBSD 6.3

2018-04-24 Thread Manolis Tzanidakis
Oops, forgot a sub-directory. Try this, instead: # mkdir -p /var/www/etc/ssl; cp /etc/ssl/cert.pem /var/www/etc/ssl On Tue (24/04/18), Manolis Tzanidakis wrote: > Hello, > try copying cert.pem to the www chroot: > > # mkdir -p /var/www/etc; cp /etc/ssl/cert.pem /var/www/etc/ssl >

Re: Errors with Php and curl under OpenBSD 6.3

2018-04-24 Thread Manolis Tzanidakis
Hello, try copying cert.pem to the www chroot: # mkdir -p /var/www/etc; cp /etc/ssl/cert.pem /var/www/etc/ssl and restart php-fpm. On Tue (24/04/18), C. L. Martinez wrote: > Hi all, > > Since this morning my OpenBSD 6.3 host (with tt-rss installed) returns > the following error when I try to

Re: OpenBSD and you

2017-05-10 Thread Manolis Tzanidakis
On Wed (10/05/17), Peter N. M. Hansteen wrote: > That was the first option that came to mind, and the one I may go for as > a supplemental format *if* I can find a way to generate PDFs from this > source format *and* get the page breaks right. The print preview is > available browsers does not

Re: Problem booting OpenBSD-current AMD64

2014-04-29 Thread Manolis Tzanidakis
On Mon (28/04/14), Martijn Rijkeboer wrote: I've installed OpenBSD-current AMD64 on my new computer without problems, but as soon as I reboot the system, it freezes in the post. The only way to go past the post is wiping the first few megabytes of the harddisk using another computer and than

Re: My VPS is acting slow (KVM)

2013-10-06 Thread Manolis Tzanidakis
On Sun (06/10/13), openda...@hushmail.com wrote: Good point. I'm doing asset precompilation in this Ruby on Rails app - a process that should only take a couple of minutes if not seconds, but ends up taking over 1 hour on my VPS. I asked around and it seems to be a very I/O intensive

Re: My VPS is acting slow (KVM)

2013-10-06 Thread Manolis Tzanidakis
On Sun (06/10/13), openda...@hushmail.com wrote: On 6. oktober 2013 at 10:18 AM, Manolis Tzanidakis mtzanida...@gmail.com wrote: virtio(4) can make a big difference. Looks awesome! I just load this into my kernel? OpenBSD 5.3 (GENERIC) #53: Tue Mar 12 18:15:44 MDT 2013 First, upgrade

Re: open bsd router

2013-10-04 Thread Manolis Tzanidakis
On Fri (04/10/13), alexey.kurin...@gmail.com wrote: Question is - what boards succesfully used by members of misc@openbsd.org list? I glad to read members IMHO about used boards. I can also highly recommend ALIX boards. I've installed a few 2d3 and 2d13 in various small to medium sized

Re: in current: chrootdirectory in ssh (cannot stat /usr/libexec/sftp-server)

2013-04-08 Thread Manolis Tzanidakis
) Subsystem sftp/usr/libexec/sftp-server You should change this line to: Subsystem sftp internal-sftp and it should work. -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

DMA errors with wd(4) on KVM guest (5.2)

2013-01-28 Thread Manolis Tzanidakis
the days of crappy promise IDE controllers and faulty IDE cables. I'm guessing vioblk(4) should eliminate such problems. Should I do something about it till then, though? -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: SSHD doesn't honor login.conf's setenv

2012-12-11 Thread Manolis Tzanidakis
-application and via the login command does work. Am I somehow missing a setting in sshd_config that ignores these settings or do I need to report this as a bug? Check 'AcceptEnv' and 'PermitUserEnvironment'in sshd_config(5). They're both set to off, by default. -- Manolis Tzanidakis http

Re: SSHD doesn't honor login.conf's setenv

2012-12-11 Thread Manolis Tzanidakis
On Tue (11/12/12), Otto Moerbeek wrote: On Tue, Dec 11, 2012 at 05:39:08PM +0200, Manolis Tzanidakis wrote: Check 'AcceptEnv' and 'PermitUserEnvironment'in sshd_config(5). They're both set to off, by default. These options apply to different mechanisms than login.conf. Otto is right

Strangle behaviour for pfctl -T show on kern.securelevel=2

2012-11-27 Thread Manolis Tzanidakis
for forbidding '-T show' ? -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: Can I change ssh port forwardings on a active connection *non-interactively* ?

2012-11-18 Thread Manolis Tzanidakis
On Sun (18/11/12), Darren Tucker wrote: On Fri, Nov 16, 2012 at 12:10:19AM +0200, Manolis Tzanidakis wrote: Hello all, I want to send the '~C' escape to ssh followed by ie. '-L 1024:localhost:1024' from the active ssh connection's shell, non-interactively from a script. Is it possible

Re: Can I change ssh port forwardings on a active connection *non-interactively* ?

2012-11-16 Thread Manolis Tzanidakis
On Thu (15/11/12), Alexander Hall wrote: On 11/15/12 23:10, Manolis Tzanidakis wrote: Hello all, I want to send the '~C' escape to ssh followed by ie. '-L 1024:localhost:1024' from the active ssh connection's shell, non-interactively from a script. Is it possible? Or is there a better way

Can I change ssh port forwardings on a active connection *non-interactively* ?

2012-11-15 Thread Manolis Tzanidakis
to allow them create a couple of tunnels to local services (on different ports), on demand. The script needs to run a bunch of other stuff after adding the tunnels, so I can't just tell them to pass '-L etc.' to the client.. -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

[SOLVED] Re: How can I send SMS from a umsm(4) usb stick?

2012-07-19 Thread Manolis Tzanidakis
On Tue (10/07/12), Stuart Henderson wrote: On Tue, Jul 10, 2012 at 3:59 PM, Manolis Tzanidakis mtzanida...@gmail.com wrote: Hello, I'd like to setup a monitoring system that sends SMS messages when something is wrong. I'm looking for the simplest possible way to send a message from cli

Re: [SOLVED] Re: How can I send SMS from a umsm(4) usb stick?

2012-07-19 Thread Manolis Tzanidakis
Just installed the package in another system and saw that the install-message already mentions the permissions fix. Sorry for the noise :). -- Manolis Tzanidakis mtzanidakis [at] gmail [dot] com http://mtzanidakis.com/ On Thursday, July 19, 2012 at 4:22 PM, Manolis Tzanidakis wrote: On Tue

Re: load now over 1.00 all the time (i386, MP)

2012-07-10 Thread Manolis Tzanidakis
to the latest snap: OpenBSD 5.2-beta (GENERIC.MP) #345: Sun Jul 8 14:48:27 MDT 2012 and the load is back to = 0.1. -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

How can I send SMS from a umsm(4) usb stick?

2012-07-10 Thread Manolis Tzanidakis
/0.00 addr 2 And I plan to use that with a prepaid mobile card. If it could also receive messages and check their content it'd be great. Any suggestions? -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: How can I send SMS from a umsm(4) usb stick?

2012-07-10 Thread Manolis Tzanidakis
post back. Thanks a lot -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: ASUS E35M1-M PRO Fusion AMD E-350 APU

2012-06-22 Thread Manolis Tzanidakis
is shared with the on-chip graphics card. On my system: real mem = 8167038976 (7788MB) avail mem = 7935467520 (7567MB) -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: AMD Zacate E350 (ASUS E35M1-M) dmesg/experiences?

2012-06-01 Thread Manolis Tzanidakis
. -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: AMD Zacate E350 (ASUS E35M1-M) dmesg/experiences?

2012-06-01 Thread Manolis Tzanidakis
On Fri (01/06/12), Eugene Yunak wrote: On 1 June 2012 13:49, Manolis Tzanidakis mtzanida...@gmail.com wrote: Nowadays it does. My server's / is on a softraid(4) RAID-1 array. The basic idea is to have a small 'a' slice for the kernel on each disk and a 'd' (or whatever) for the raid

Re: AMD Zacate E350 (ASUS E35M1-M) dmesg/experiences?

2012-06-01 Thread Manolis Tzanidakis
On Fri (01/06/12), Stuart Henderson wrote: On 2012-06-01, Manolis Tzanidakis mtzanida...@gmail.com wrote: The basic idea is to have a small 'a' slice for the kernel on each disk and a 'd' (or whatever) for the raid. installboot(8) does the right thing automatically these days. At least

Re: AMD Zacate E350 (ASUS E35M1-M) dmesg/experiences?

2012-05-31 Thread Manolis Tzanidakis
) should support raid 1 with USB drives/sticks. I don't think it's a good idea though. -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: AMD Zacate E350 (ASUS E35M1-M) dmesg/experiences?

2012-05-30 Thread Manolis Tzanidakis
on sd3b -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: Ftpd chroot in a user folder name

2012-05-07 Thread Manolis Tzanidakis
. [shameless plug: you could read my article about it, here: http://olex.openlogic.com/wazi/2011/stop-using-ftp-how-to-transfer-files-securely/ it's linux-based due to that site's restrictions, but the configuration is the same. sshd_config(5) offers the complete documentation btw.] -- Manolis

AMD Zacate E350 (ASUS E35M1-M) dmesg/experiences?

2012-05-04 Thread Manolis Tzanidakis
Hello all, I'm thinking of replacing my noisy and energy-hungry SOHO server with an AMD Zacate E350-based solution; specifically ASUS E35M1-M. Any experiences with this APU? A dmesg would be preferred. -- Manolis Tzanidakis http://mtzanidakis.com/ mtzanidakis[at]gmail[dot]com

Re: Sandybridge will not poweroff

2012-04-28 Thread Manolis Tzanidakis
Hey there On Sat, 28 Apr 2012 10:28:02 +0100, Laurence Rochfort wrote: However, I cannot switch from X to console or shutdown from X, both just give a blank screen. I can reboot from X and shutdown if booted to console however. Check this thread for more info:

Re: Any progress on WPA/WPA2 support ?

2007-01-07 Thread Manolis Tzanidakis
;-). -- Manolis Tzanidakis [EMAIL PROTECTED]

Any progress on WPA/WPA2 support ?

2007-01-06 Thread Manolis Tzanidakis
/WPA support. Has there been any progress on WPA/WPA2 support yet ? P.S.: I know that an IPSEC/OpenVPN-based solution is way more secure than WPA, so please don't bother trolling about it. Best, -- Manolis Tzanidakis [EMAIL PROTECTED]