x86_64환경에서 hpasm(을)를 기동했을 때, 이하 메세지가 로그 됩니다만 무시해 주세요.이 메세지는 hpasm v7.80그리고 수정되었다고 아나운스 되고 있습니다만, 실제로는 v7.80의 다음으로 수정될 예정입니다.
kernel: warning: many lost ticks. kernel: Your time source seems to be instable or some driver is hogging interupts kernel: rip mwait_idle+0x56/0x7c
vlan_init rpm패키지 인스톨 직후, 및 chkconfig그리고vlan서비스의 재설정을 했을 경우,vlan_init의 스크립트 기동 번호가 잘못된 값이 됩니다.이 문제는 파일명을 올바른 기동 번호(S11vlan, K85vlan)(으)로 변경하는 것으로 회피해 주세요.
Fibre콘트롤러 장착시에,fibreutils rpm그리고 인스톨 된다 lssd/lssg/scsi_info커멘드를 사용할 수 없습니다.
RHEL4/U5의 경우,hpsmh에 액세스 하면 시스템 정보 취득 처리가 타임 아웃으로 에러가 됩니다.상세와 회피책은IMA의 기술 정보(을)를 봐 주세요.
When I try to install Windows XP or Windows (Server)
2003 as a fully virtualized guest under Red Hat Enterprise Linux 5
using Xen, I can start the installation using virt-manager, but Windows
installer is hung at "Setup is starting Windows" stage. How can I
proceed further?
Resolution:
The error "Setup is starting Windows" is a
symptom of the Windows
installer not recognizing the underlying HVM (hardware virtual
machine),
in particular the ACPI controller. However, these options don't work as
expected if the guest OS is the 64bit version of Window XP or Windows
Server 2003.
Currently, the version of XEN shipping with Red Hat Enterprise Linux 5
does not support 64bit installations of Windows XP and Windows Server
2003.
With 32 bit guests, either of the below will fix this issue:
The first option is during installation, when Windows says to press
F6 to install additional drivers, press F5 instead of F6. This will
then prompt the user to select the machine and ACPI controller type.
Then from the next dialog box select "Standard PC" and continue the
installation as usual.
The second method includes the known work around for Windows not
seeing cdrom after first reboot as well as getting past the earlier
error message.
Install Windows through virt-manager. When it starts installation of Windows, close the vnc console and run xm shutdown guest from a root console. In these examples, guest refers to the name of the guest in question.
Edit /etc/xen/guest and add the cdrom to the disk section. Change the following line:
disk = [ 'file:/var/lib/xen/images/guest,hda,w']
to
disk = ['file:/var/lib/xen/images/guest,hdx,w','phy:/dev/hdx,hdx:cdrom,r']
Replace /dev/hdx with the exact device of the system's cdrom or dvd drive. It can also be specified by file:/path/to/XP.iso for iso images.
Add boot = "d" under the disk section. Change acpi = 1 to acpi = 0. Lastly, run xm create guest.
After this, Windows XP should boot normally and not hang at "setup is starting Windows".
Remove the boot = "d" line from the configuration file before starting the machine on the first reboot.
Red Hat 의 system-config-samba 에서 사용자를 추가하면 리스트에 등록이 되어야 하지만
기본으로 하면 등록은 되지만 사용자 박스에 사용자가 등록이 되지 않는다.
그리고 다시 똑같은 사용자로 추가를 하려고 하면 존재하는 사용자라고 등록이 안 된다.
이 문제는 samba 의 smb.conf 에 passdb backend 설정이 기본 tdbsam 으로 되어 있기 때문이다.
이 옵션을 smbpasswd 으로 바꾸면 사용자 리스트에 사용자가 등록이 된다.
smb.conf 에 들어있는 주석 내용
# Security can be set to user, share(deprecated) or server(deprecated) # # Backend to store user information in. New installations should # use either tdbsam or ldapsam. smbpasswd is available for backwards # compatibility. tdbsam requires no further configuration.
이 부분에
passdb backend = tdbsam 를 passdb backend = smbpasswd 로 변경 하면 된다.
그러면 기존 passdb.tdb 형식으로 저장되던게 smbpasswd 파일로 바뀐다.
주의 할점은 tdbsam 에서 추가한 사용자는 smbpasswd 에서 콘트롤하기 힘들다는 것 이다. 그래서 tdbsam에서 추가한 사용자를 다 삭제하고 smbpasswd 에서 새로 추가를 해줘야 한다.