Displaying 20 results from an estimated 2000 matches similar to: "Problems with MySQL"
2005 Apr 04
5
yum & proxy
Hi,
I've just installed a server with CentOS 4.
This server is behind a proxy.
I'm trying to import the RPM key.
Already set http_proxy variable to:
export "http_proxy"=http://proxy.xpto.com:3128
Truth is, command
# rpm --import http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-4
just leaves me hanged.
Any ideas ?
Warm Regards,
M?rio Gamito
2005 Apr 06
1
Question about joining a Samba server to a 2000 domain
Hi,
I have this Samba file server, that indeed is a client of a Windows 2000
Server PDC.
I am the Samba machine admin, but not the Windows one.
I have to join the Samba machine to the PDC on the 2000 server.
I ask the Windows 2000 server admin to come to my Samba machine and
insert his login and password to join my machine, but i always get the
same error (after my signature).
The Windows
2005 Apr 05
4
Error on compiling kernel :: CentOS 4
Hi,
I'm trying to recompile CentOS stock kernel, and after making my choices
(make menuconfig), i run "make" and imediatly get this error (after my
signature).
Yes, i have the kernel source installed :P
Any help would be apreciated.
Warm regards,
M?rio Gamito
[root at tux 2.6.9-5.0.3.EL-i686]# make
CHK include/linux/version.h
SPLIT include/linux/autoconf.h ->
2007 Mar 26
2
Problems with LDAP
Hi,
I'm making a schema for my company's co-workers, but i'm obviosuly doing
something wrong, because i get:
ldapadd -x -D "cn=admin,dc=telbit,dc=pt" -w secret -f people.ldif
adding new entry "dc=telbit,dc=pt"
ldapadd: no attributes to change or add (entry="cn=admin,dc=telbit,dc=pt")
My schema file (experimantel) is:
## objectclass definition for
2007 Mar 08
2
Problems with different mail clients
I use dovecot as my imap server, and everything is ok.
I used an IMAP client from Windows XP (Outlook Express) as well as Pocket PC (Windows Mobile 5) and webmail.
The problem is that I recently used Windows Vista and its imap client (Windows Mail), and problems began.
>From the Windows XP machine, all is ok, but from the Pocket PC a weird thing happens:
When I first configure the client,
2006 Feb 13
2
Alcatel 4200 series pbx
Hi,
Does anyone have any experience connecting asterisk to alcatel 4200
series pbx with bri cards?
Does it should work with asterisk bri in NT mode, and alcatel bri with
TE mode?
Cheers, Igor Neves.
2018 May 21
3
[Bug 106592] New: 2nd GPU / screen not detected after driver / xorg update
https://bugs.freedesktop.org/show_bug.cgi?id=106592
Bug ID: 106592
Summary: 2nd GPU / screen not detected after driver / xorg
update
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: blocker
Priority: medium
Component:
2016 Apr 26
0
From NUM to INT
Inline.
-- Bert
On Tue, Apr 26, 2016 at 2:25 PM, Andr? Luis Neves <andrluis at ualberta.ca> wrote:
> Ok. I`m trying to run a Poisson glmm with an observation-level random
> intercept. But I`m getting the following error for the 'Baci' variable:
>
> 'Error: (maxstephalfit) PIRLS step-halvings failed to reduce deviance in
> pwrssUpdate'. I guess this message
2017 Jun 20
0
Help with the plot function
1. Did you study the functions (esp. ?layout) to which I referred you?
2. Show us your code! -- "to no avail" is meaningless!
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Mon, Jun 19, 2017 at 7:01 PM, Andr? Luis Neves
2017 Jun 20
2
Help with the plot function
I'm trying to recreate a graph similar to the last one found on this link:
https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf
The difference is that I want budbreak on the top, and the temperatures at
the bottom.
I tried to set par before each graph and include lines, with no avail.
Thanks, Bert.
Andre
On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter
2006 Nov 17
5
configure a rails app for multiple databases
Hello Rails community
I cannot seem to find via Google what I had hoped would be
a simple issue
On a single DB system (currently, postgres 8.1.4),
I have two databases, each containing multiple tables.
I would like to configure my app and database.yml to recognize
these two databases.
What is the corrrect config for the database.yml ?
Is it something like:
> production:
> adapter:
2017 Jun 20
1
Help with the plot function
Dear all,
I found the last example of this link (
https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf)
very similar to the one I need to make for my paper, and I think I got what
I wanted by applying some of the suggestions of this mail list.
Here it is the code I devised (maybe there will be further improvements
from the list):
YEAR <- c(1996 ,
2017 Jun 20
2
Help with the plot function
Hi, Bert:
Yes, I studied the functions you suggested, but I didn't get to adapt it to
my example whose reproducible code I sent in my first email.
Here it is the code of the functions I studies:
## par
par(mfrow = c(2, 3))
par(cex = 0.6)
par(mar = c(3, 3, 0, 0), oma = c(1, 1, 1, 1))
for (i in 1:6) {
plot(1, 1, type = "n")
mtext(letters[i], side = 3, line = -1, adj = 0.1, cex =
2017 Jun 20
0
Help with the plot function
Hi
You are quite close. With slight modification of your code:
par(mfrow = c(2, 1))
par(cex = 0.6)
par(mar = c(0, 0, 0, 0), oma = c(4, 4, 0.5, 0.5))
par(tcl = -0.25)
par(mgp = c(2, 0.6, 0))
plot(BUD~YEAR, type="o", ann=F, axes=F, pch=19, ylim=c(60,100),data=g1)
axis(4, las=2)
mtext("Bud Break (Julian Day)", side=4, padj=4)
arrows(g1$YEAR,g1$BUD, g1$YEAR,g1$BUD + g1$BUD_SE,
2016 Apr 26
2
From NUM to INT
Ok. I`m trying to run a Poisson glmm with an observation-level random
intercept. But I`m getting the following error for the 'Baci' variable:
'Error: (maxstephalfit) PIRLS step-halvings failed to reduce deviance in
pwrssUpdate'. I guess this message is because the baci variable is not a
an integer, and cannot be transformed into an integer as R has a threshold
of
2x10^9 even in
2009 Oct 28
2
What's the simplest way to use ActiveResource in ruby (without rails)?
I would like to use this class in a standalone project, but I have
been unsuccessful thus far.
Also, how does this class exactly communicate with the web server?
Thank you.
class Person < ActiveResource::Base
self.site = "http://localhost:3000/"
end
2008 Mar 28
1
Strange behavior from grep
Hi,
It's been a long time since I've been noticing a strange behaviour
from CentOS grep command.
But today, I really need it.
I have a file that has the word gamito inside of it.
If I run
$ grep 'gamito' file
it returns nothing. Yet, if I run
$ grep -c 'gamito' file
It returns 1 which is right.
The mind boggles.
Does anyone ever had this problem or am I missing
2008 Mar 07
9
Colors in vi for user root
Hi,
How can I have vi with syntax hilghting for root ?
Regular users have it, but not root's.
I've seen the hidden files of a regular user home, but found nothing.
Thanks in advance.
Warm Regards,
M?rio Gamito
2008 Mar 28
1
Deleting file in /tmp directory
Hi,
This is a bit of-topic, but since it has to do with /tmp permissions
here it goes.
Anyway, I'm sorry in advance for posting this.
I have this PHP script (simplificated here), called delete_tmp.php
that basically calls external commands:
<?php
$session_file = '/tmp/sess_89765'
system(''rm -f' . ' ' . $session_file);
?>
delete_tmp.php file is owned by
2004 Jul 20
1
Question about permissions
Hi,
First of all, my apologies for the extension of this message, but it is
needeed for you to undertand my problem.
Straight to the point: i have this domain in my company running in Samba
3.0.2
My users are: hcoelho, jardim, gamito, yesenia, smatias, fqueiros,
faugusto, vamaro, peixinho, aragao, dina, pinho.
I have this shares with the users that can access them and the
correponding Linux