Re: I have got a problem with keyboard (SPARC64)

2004-02-05 Thread Ilya Varlashkin
On Thu, Feb 05, 2004 at 10:56:10AM +0300,   wrote:
 Hello.
 I have got a problem with keybord of BLADE 100 (SPARC).
 I fail to choose the type of installation such as standart, express or 
 custom in the  setupprogramm.
 My model of keyboard - TYPE6 USB Sun MICROSYSTEMS.
 I try install FeeBSD 5.2. 
 Help me please!!!

I'm not familiar with your particular model, but freebsd-sparc64 does have
problem with terminal during installation. You have to either use serial
port as console, or use Ctrl-P/Ctrl-N to move cursor up/down and you have
to count how many times to press it (so you need to know content of the
installation menu). Once you done, just copy terminal definition from
Solaris, if you need to use console again.

/Ilya aka iL

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: True IMAP Trash Folder

2004-02-04 Thread Ilya Varlashkin
On Mon, Feb 02, 2004 at 11:42:37AM -0500, Louis LeBlanc wrote:
  
  I understand now.  Thanks.  So do you know of a mail client that 
  supports Deleting Items to a folder called Trash on the IMAP 
  server?  Right now I have evolution and if I delete mail it puts it into 
  a local trash folder, but I dont see an option to Copy deleted mail to 
  folder blah on mail server or something like that.
 
 I use mutt with an imap server.  I've tied macros to specific keys
 that save messages to INBOX.trash, which effectively deletes them from
 the current folder.  I go to the .trash folder and use 'D' to clean it
 out on a regular basis, sometimes finding one or two that I didn't
 want to delete.  It requires folder hooks to change the underlying
 behavior for the 'd', '^d' and 'D' keys based on the current folder,
 but it works like a charm.
 

Hi

Hope I'm not too late :-)

I'm using courier-imapd and have few users with whole bunch of various client
software on FreeBSD and Windows. Following lines in imapd config do magic:

IMAP_TRASHFOLDERNAME=Deleted Items
MAP_EMPTYTRASH=Deleted Items:90,Sent Items:365
IMAP_MOVE_EXPUNGE_TO_TRASH=1

This makes MS Outlook Express happy. For mutt client I just make symbolic
link trash - Deleted Items. Moreover, in case of mutt it's actually server
that moves messages to trash, and does this without any hooks or filters.

By the way, MSOE actually allows to specify names of both 'sent items' and
'deleted items' folders, but to avoid explaining Windows users how to do this
I just fix this on the server.

Just make sure you correctly specify namespace, otherwise your folders will
show up in the client either with dot in the front or/and as sub-folders of
your inbox (well, they're in fact, but I don't like that look). This actually
might be reason why your client stores Trash locally - it doesn't look for
it in proper place on the server because namespace specified incorrectly.

Hope this helps.

Kind regards,
Ilya Varlashkin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


custom release - how to install non-GENERIC kernel?

2003-12-15 Thread Ilya Varlashkin
Hi All,

I'm trying to make custom release of FreeBSD with some default parameters
changed to match our local needs. I can modify GENERIC kernel config file,
produce patch and then use it during 'make release'. At the end I have
installation CD with custom kernel. However, I'd like to use one custom
kernel during installation (without FIREWALL option) and another one
to be installed for actual use (with FIREWALL enabled). How can I achieve
this?

Kind regards,
Ilya Varlashkin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: strange scsi devices and isa problem

2003-11-24 Thread Ilya Varlashkin
On Mon, Nov 24, 2003 at 12:45:32PM +0100, Martin V??a wrote:
 Hi,
 I've got some strange things in my dmesg:
[...]
 config di bt0
 No such device: bt0
 Invalid command or syntax.  Type `?' for help.
 config di aic0
 No such device: aic0
 Invalid command or syntax.  Type `?' for help.
 config di aha0
 No such device: aha0
 Invalid command or syntax.  Type `?' for help.
 config di adv0
 No such device: adv0
 Invalid command or syntax.  Type `?' for help.
 config q
 
 bt, aic and others seems to be some scsi devices but I don't have scsi
 and I've even deleted all scsi lines from my kernel. 
 

During installation those devices exist in generic kernel so you disabled
them, your custom kernel doesn't include support for those devices. That's
why loader can't find them. Just remove respective lines from loader.conf.

 next thing is this:
 isa0: too many dependant configs (8)
 isa0: unexpected small tag 14
 pmtimer0 on isa0
 

sorry can't help here.

Kind regards,
Ilya Varlashkin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: newbie: use CR in RE?

2003-11-24 Thread Ilya Varlashkin
 - Original Message - 
 From: Zhang Weiwu [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Saturday, November 22, 2003 8:00 AM
 Subject: newbie: use CR in RE?
 
 
  Hello. Just want to know how to use special character in Regular
 Expression.
 
  I wish to remove all the carrier returns from a text file, I can use:
  tr -d \r  text_file  modified_text_file
  But if I do:
  sed -i s/\r//g text_file
  it actually removes all the character r from the file.
 
  This is also a problem in vi(1). Besides CR I wish to manipulate
  tabstops and line-feeds with RE too.
 

Depending on file size I use either vi in command mode :g/^M/s///g where
is result of pressing Ctrl-V then Ctrl-M. Or for big files: 

sed 's/^M//' myfile.txt

Hope this helps.

Kind regards,
Ilya Varlashkin

  ___
  [EMAIL PROTECTED] mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to
 [EMAIL PROTECTED]
 
 
 
 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Samba question

2003-11-22 Thread Ilya Varlashkin
On Sun, Nov 16, 2003 at 09:08:12PM -0500, Marty Landman wrote:
 
 No. Now I did  rebooted. Same symptom, i.e. windoz explorer tells me
 
 \\Swamisalami is not accessible. ... The account is not authorized to log 
 in from this station.
 

Martin, following line in your smb.conf should solve this problem:

encrypt passwords = yes

This is because newer Windows releases refuse to send unencrypted passwords
by default. You could tweak Windows to enable unencrypted passwords, but I
prefer enabling encrypted passwords in samba instead.

Have a look at /usr/local/share/doc/samba/htmldocs/ENCRYPTION.html for
more details.

Hope this helps.

Kind regards,
Ilya Varlashkin


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SNMP help

2003-10-31 Thread Ilya Varlashkin
On Thu, Oct 30, 2003 at 08:37:09PM -0500, Joe Marcus Clarke wrote:
 On Thu, 2003-10-30 at 17:59, Ronnie Clark wrote:
  Thanks all for the suggestions. I have the port
  installed, but how do I configure this beast to work
  with OpenView? I have looked at the online docs for
  the port, but it is all jibberish to this newbie.
  Anyone have a simple to follow doc or set of
  guidelines to setup net-snmp to be monitored by
  Openview?
 

There is nothing so special about HP OpenView - it's just an SNMP manager.
They will poll whater it's neccessary from daemon running on your FreeBSD
as long as you provide them with appropriate access level in your snmpd.conf.

Following could be reasonable start for your /usr/local/share/snmp/snmpd.conf:

#

syslocation Room X, Rack Y, second from the top
syscontact  Ronnie Clark your_email, your_telephone
sysservices 76

#
# ACL
#
#   name=   source  community
com2sec me  localhost   VerySecret
com2sec hpovaddress_of_ov Pass4HPOpenView
com2sec default default public

group   meROv1  me
group   meROv2c me
group   hpovRO  v1  hpov
group   hpovRO  v2c hpov
group   defaultRO   v1  default
group   defaultRO   v2c default

#   incl/excl   subtree mask
viewall included.1  80
viewcontact included.iso.org.dod.internet.mgmt.mib-2.system.sysContact

#   Gname   context model   level   prefix  readwrite   notif
access  meRO  any noauth  exact   all all none
access  hpovROany noauth  exact   all nonenone
access  defaultRO any noauth  exact   contact nonenone

#-- end 

Kind regards,
Ilya Varlashkin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Nokia 6610 via DKU-5 cable (usb) and fbsd-4.8. any chance?

2003-10-28 Thread Ilya Varlashkin
Hi all,

I'd like to use my Nokia 6610 with FreeBSD for eventual PPP tests
of our dial-in servers. I've got DKU-5 cable. It's USB and the only thing
I can get for this phone; ordering IR port is not an option.

I've compiled recompiled kernel (4.8-p13) with:

device  uhci# UHCI PCI-USB interface
device  usb # USB Bus (required)
device  ugen# Generic
device  ucom
device  uplcom
device  uvscom
device  uvisor
device  uftdi

device  umodem

device  uhid# Human Interface Devices

When I run 'usbd -d -v' I can see the system detects connected phone as:
usbd: device-attach event at 1067328676.392127000, Nokia Connectivity Cable DKU-5, 
vendor 0x0421:
  vndr=0x0421 prdct=0x0800 rlse=0x030a clss=0x00ff subclss=0x prtcl=0x00ff
device names: ugen0

I guess I should'n expect this to be good enough as:
# cu -l /dev/ugen0
Connected.
cu: Got hangup signal
Disconnected.

Basically the only thing I'm interested at the moment is to be able to say
'AT' to the modem. Is there any way to achieve this?

Kind regards,
Ilya Varlashkin

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]