| ID |
Date |
Author |
Type |
Category |
Subject |
|
6
|
Mon Sep 21 11:04:12 2015 |
Stefan Ritt | Routine | Software | Rectangle commands for EMACS |
- Set mark at current cursor position:
Ctrl-Space
- Define opposite corner of rectangle:
Move cursor to position
- Fill current rectangle with blanks:
Ctrl-X,R,O (open rectangle)
- Erase current rectangle:
Ctrl-X,R,K (kill rectangle)
- Copy current rectangle into internal buffer:
Ctrl-X,R,R (register rectangle)
- Paste (yank back) rectangle from internal buffer:
Ctrl-X,R,Y (yank rectangle) |
|
3
|
Mon Sep 21 11:02:53 2015 |
Stefan Ritt | Configuration | Network | Port forwarding |
- obtain
http://www.compsoc.net/~steve/portfw-2.2.html
- Install RPM:
rpm -i ipmasqadm-0.4.2-3.i386.rpm
- Example fast/telnet -> node1/telnet
modprobe ip_masq_portfw.o
ipmasqadm portfw -f
ipmasqadm portfw -a -P tcp -L 129.129.25.207 23 -R 10.0.0.1 23
hmmmm |
|
27
|
Wed Feb 12 14:12:49 2025 |
Tomasz | Software Installation | Hardware | No subject |
Bold
Italics
Underline
Przekreślone
Indeks dolny123
Indeks górny123
fformatowanie
- ads
- asda
- da
To jest quote
To jest french
A to jest anchor

§paragraf
Obecny timestamp: Wed Feb 12 14:27:35 2025
uPLOAD: testfile.txt |
| Attachment 1: testfile.txt
|
saaSD
|
| Attachment 2: testfile.txt
|
saaSD
|
|
370
|
Mon Jun 2 10:22:10 2025 |
Ich | Problem Fixed | Hardware | Nix |
Blablabla! Hhehehe! |
|
2
|
Mon Sep 21 11:01:52 2015 |
Stefan Ritt | Configuration | Network | NIS |
! Note: at least two user entries in passwd file necessary !
Server
======
- authconfig: enable NIS, domain "fast", server "fast", use shadow, MD5
- /etc/rc.d/init.d/ypserv start
/etc/rc.d/init.d/ypbind start
- /var/yp/Makefile:
# shadow -> shadow #
netgrp -> # netgrp
- /var/yp/secureent:
255.255.255.0 10.0.0.0
- /usr/lib/yp/ypinit -m
- Test: ypcat passwd
ypwhich
ypmatch stefan passwd
Client
======
- remove users from passwd/shadow
- [brsh] authconfig --enablenis --nisdomain fast --nisserver fast \
--useshadow --enablemd5 --kickstart
Update (after useradd)
======================
cd /var/yp; make |
|
601
|
Tue Jul 15 10:09:14 2025 |
Rene | Routine | Slow Controls | My Test Message |
This is message text |
|
602
|
Tue Jul 15 11:03:36 2025 |
Clement | Routine | Slow Controls | Morning Checklist |
Everything is fine |
|
594
|
Mon Jul 7 10:45:41 2025 |
awesome dudu | Software Installation | Maintenance | Maintening stuff |
Mon Jul 7 10:46:29 2025 Mon Jul 7 10:46:29 2025
I tried hard and it worked |
| Attachment 1: voig3.png
|
|
|
4
|
Mon Sep 21 11:03:22 2015 |
Stefan Ritt | Configuration | Network | Full Duplex |
/etc/conf.modules:
alias eth0 eepro100
options eepro100 options=0x30
See parameters at http://www.scyld.com/network/eepro100.html
And for 3c59x (PSI stock):
alias eth0 3c59x
options eth0 options=20 full_duplex=1
see: http://www.scyld.com/network/vortex.html |
|
14
|
Fri Jan 17 18:09:20 2025 |
Stefan Ritt | Configuration | Network | Full Duplex |
> /etc/conf.modules:
>
> alias eth0 eepro100
> options eepro100 options=0x30
>
> See parameters at http://www.scyld.com/network/eepro100.html
>
> And for 3c59x (PSI stock):
>
> alias eth0 3c59x
> options eth0 options=20 full_duplex=1
>
> see: http://www.scyld.com/network/vortex.html
fgfgdfg |
|
15
|
Fri Jan 17 18:09:42 2025 |
Stefan Ritt | Configuration | Network | Full Duplex |
> > /etc/conf.modules:
> >
> > alias eth0 eepro100
> > options eepro100 options=0x30
> >
> > See parameters at http://www.scyld.com/network/eepro100.html
> >
> > And for 3c59x (PSI stock):
> >
> > alias eth0 3c59x
> > options eth0 options=20 full_duplex=1
> >
> > see: http://www.scyld.com/network/vortex.html
>
> fgfgdfg
tester |
|
Draft
|
Fri Jan 17 18:12:37 2025 |
Stefan Ritt | Configuration | General | Full Duplex |
<p>> > > /etc/conf.modules: > > > > > > alias eth0 eepro100 > > > options eepro100 options=0x30 > > > > > > See parameters at
http://www.scyld.com/network/eepro100.html > > > > > > And for 3c59x (PSI stock): > > > > > > alias eth0 3c59x > > > options eth0 options=20 full_duplex=1 >
> > > > > see: http://www.scyld.com/network/vortex.html > > > > fgfgdfg > > tester</p> |
|
300
|
Mon May 19 09:15:10 2025 |
user | Configuration | | Elog test |
This is the test content. |
|
221
|
Tue May 13 07:28:31 2025 |
user | Configuration | | Elog Test |
This is the content |
|
1000
|
Tue Oct 28 12:43:40 2025 |
AB | Routine | | CDAM representation error |
The QML representation of the CDAM does not always match with its real status. The CDAM seemed to be closed as was represented but in reality it was opened, this caused problems during pass 832 |
|
5
|
Mon Sep 21 11:03:40 2015 |
Stefan Ritt | Configuration | Other | Apache restricted access |
- create user/password file:
htpasswd -c /etc/httpd/conf/users pibeta
<passwd>
- configure Apache in access.conf:
#
# Restrict access to pibeta for "resstricted" directory
#
<Directory /home/pibeta/WWW/restricted>
AuthName "restricted"
AuthType Basic
AuthUserFile /etc/httpd/conf/users
require valid-user
</Directory>
- restart Apache
killall -HUP httpd |
|
Draft
|
Mon Mar 24 09:19:51 2025 |
lvm | Other | deployment | AEsensor chain |

Type the title here
Type the text here |
|
98
|
Wed Apr 2 17:25:59 2025 |
,mlmlm | Routine | Hardware | ,, l, |
|
|
8
|
Tue Jan 7 12:50:17 2025 |
AB | Routine | | |
This message text is new |
|
10
|
Tue Jan 7 12:50:38 2025 |
AB | Routine | | |
This message text is new |