Search found 147 matches

by issinoho
Sun Jul 21, 2024 12:09 pm
Forum: General
Topic: Time
Replies: 0
Views: 122

Time

by issinoho
Wed Apr 20, 2022 8:26 pm
Forum: MySQL
Topic: Host is blocked
Replies: 0
Views: 7833

Host is blocked

Code: Select all

mysqladmin -u<user> -p<password> flush-hosts
by issinoho
Thu Mar 10, 2022 10:58 am
Forum: General
Topic: DECwindows
Replies: 4
Views: 8909

DECwindows

by issinoho
Wed Jun 02, 2021 4:32 pm
Forum: General
Topic: SMTP Mail
Replies: 1
Views: 5128

Re: SMTP Mail

$! $! Site defined SMTP options file. $! $! This file should be in : $! SYS$STARTUP:TCPIP$SMTP_SYSTARTUP.COM $! $! This includes logical names documented in the TCPIP 5.1 manual $! as well as one addition documented in the 5.3 release notes. $! $! By default, all commands are commented out. Only un...
by issinoho
Fri Mar 12, 2021 11:11 am
Forum: General
Topic: SMTP Mail
Replies: 1
Views: 5128

SMTP Mail

Enable SMTP in the TCPIP configuration tool. @sys$manager:tcpip$config Option 2 then Option 6 and accept all defaults. Enable proper logging by creating sys$startup:tcpip$smtp_systartup.com and adding the following entries. $ DEFINE/SYSTEM TCPIP$SMTP_RECV_TRACE 1 $ DEFINE/SYSTEM TCPIP$SMTP_LOG_LEVEL...
by issinoho
Mon Mar 01, 2021 10:19 am
Forum: ImageMagick
Topic: Link
Replies: 0
Views: 7948

Link

by issinoho
Thu Jan 28, 2021 11:31 am
Forum: General
Topic: Image Backup
Replies: 0
Views: 6810

Image Backup

Boot from DVD image and select option [8] to drop to DCL.

Mount the source disk.

Code: Select all

$$$ mount/over=id dka0:
Mount the destination disk.

Code: Select all

$$$ mount/for dka400:
Perform the backup.

Code: Select all

$$$ backup/image dka0: dka400:
Finally logout and reboot using new disk.
by issinoho
Thu Jan 21, 2021 2:43 pm
Forum: General
Topic: Minimum Boot
Replies: 0
Views: 6763

Minimum Boot

In order to recover from a system with a faulty setup that means that logging in after a normal boot is impossible (e.g. exhausted pagefile), a minimum boot can be executed which will bypass the SYSTARTUP_VMS.COM From the console, boot to SYSBOOT On VAX >>> b/e0000000 dua0 On Alpha >>> boot -flags 0...
by issinoho
Thu Jan 21, 2021 2:31 pm
Forum: General
Topic: Modify PAGEFILE & SWAPFILE
Replies: 0
Views: 6428

Modify PAGEFILE & SWAPFILE

Code: Select all

@sys$update:swapfiles
Remember 1 block == 512 bytes (one-half kilobyte)
by issinoho
Thu Jan 21, 2021 1:57 pm
Forum: General
Topic: AUTOGEN to modify parameters
Replies: 0
Views: 6717

AUTOGEN to modify parameters

In order to pick up parameter modifications from SYS$SYSTEM:MODPARAMS.DAT

Code: Select all

@sys$update:autogen getdata reboot nofeedback
by issinoho
Fri Jan 15, 2021 4:07 pm
Forum: General
Topic: Convert file formats (CR LF)
Replies: 0
Views: 6792

Convert file formats (CR LF)

BCK

Code: Select all

$ set file file.bck/attribute=(lrl:32256,rfm:fix)
SAV

Code: Select all

$ set file file.sav/attribute=(lrl:32256,rfm:fix)
PCSI

Code: Select all

$ set file file.pcsi/attribute=(lrl:8192,rfm:fix,rat:none)
TXT

Code: Select all

$ set file file.txt/attribute=(rfm:STM) or (rfm:STMLF)