SUSE Linux

névserver gond

Fórumok

Működtetek egy OpenSuSe 11.4 es servert benne egy névserverrel, ami azonban nem csinálja a reverse feloldást. Ezt mondja:

zone 2.168.192.in-addr.arpa/IN: NS '4.2.168.192.in-addr.arpa' has no address records (A or AAAA)
zone 2.168.192.in-addr.arpa/IN: not loaded due to errors.

A dig -x 192.168.2.4 @localhost ra nem talál semmit.
Az nslookup a microserver1.intranet.domainnev.hu -re kiadja a 192.168.2.4 es címet.

A BIND version: 9.7.6-P4

Yasttal lett beállíva minden, automatikusan csinálja a reverse zonát. A neveket föloldja, de fordítva nem működik.

Ezek a zonák:
$TTL 2d
@ IN SOA microserver1.intranet.domainnev.hu. postmaster.domainnev.hu. (
2014030710 ; serial
1d ; refresh
2h ; retry
4w ; expiry
1h ) ; minimum

intranet.domainnev.hu. IN NS microserver1.intranet.domainnev.hu.
intranet.domainnev.hu. IN MX 10 microserver1.intranet.domainnev.hu.
microserver1 IN A 192.168.2.4
wre54g IN A 192.168.2.51
switch IN A 192.168.2.50
router1 IN A 192.168.2.1
mail IN CNAME microserver1
smtp IN CNAME microserver1
expander IN CNAME wre54g
router IN CNAME router1
proxy IN CNAME microserver1
srv1 IN CNAME microserver1
ftp IN CNAME microserver1

a reverse zóna:

$TTL 2D
@ IN SOA microserver1.intranet.dominnev.hu. postmaster.dominnev.hu.
2014030712 ; serial
3H ; refresh
1H ; retry
1W ; expiry
1D ) ; minimum
2.168.192.in-addr.arpa. IN NS 4.2.168.192.in-addr.arpa.
4.2.168.192.in-addr.arpa. IN PTR microserver1.intranet.dominnev.hu.
51.2.168.192.in-addr.arpa. IN PTR wre54g.intranet.dominnev.hu.
50.2.168.192.in-addr.arpa. IN PTR switch.intranet.dominnev.hu.
1.2.168.192.in-addr.arpa. IN PTR router1.intranet.dominnev.hu.

a named.conf file (jogok root.named 640)

# Copyright (c) 2001-2004 SuSE Linux AG, Nuernberg, Germany.
# All rights reserved.
#
# Author: Frank Bodammer, Lars Mueller
#
# /etc/named.conf
#
# This is a sample configuration file for the name server BIND 9. It works as
# a caching only name server without modification.
#
# A sample configuration for setting up your own domain can be found in
# /usr/share/doc/packages/bind/sample-config.
#
# A description of all available options can be found in
# /usr/share/doc/packages/bind/misc/options.

options {

# The directory statement defines the name server's working directory

directory "/var/lib/named";

# Write dump and statistics file to the log subdirectory. The
# pathenames are relative to the chroot jail.

dump-file "/var/log/named_dump.db";
statistics-file "/var/log/named.stats";

# The forwarders record contains a list of servers to which queries
# should be forwarded. Enable this line and modify the IP address to
# your provider's name server. Up to three servers may be listed.

#forwarders { 192.0.2.1; 192.0.2.2; };

# Enable the next entry to prefer usage of the name server declared in
# the forwarders section.

#forward first;

# The listen-on record contains a list of local network interfaces to
# listen on. Optionally the port can be specified. Default is to
# listen on all interfaces found on your system. The default port is
# 53.

#listen-on port 53 { 127.0.0.1; };

# The listen-on-v6 record enables or disables listening on IPv6
# interfaces. Allowed values are 'any' and 'none' or a list of
# addresses.

listen-on-v6 { none; };

# The next three statements may be needed if a firewall stands between
# the local server and the internet.

#query-source address * port 53;
#transfer-source * port 53;
#notify-source * port 53;

# The allow-query record contains a list of networks or IP addresses
# to accept and deny queries from. The default is to allow queries
# from all hosts.

#allow-query { 127.0.0.1; };

# If notify is set to yes (default), notify messages are sent to other
# name servers when the the zone data is changed. Instead of setting
# a global 'notify' statement in the 'options' section, a separate
# 'notify' can be added to each zone definition.

notify no;
include "/etc/named.d/forwarders.conf";
};

# To configure named's logging remove the leading '#' characters of the
# following examples.
#logging {
# # Log queries to a file limited to a size of 100 MB.
# channel query_logging {
# file "/var/log/named_querylog"
# versions 3 size 100M;
# print-time yes; // timestamp log entries
# };
# category queries {
# query_logging;
# };
#
# # Or log this kind alternatively to syslog.
# channel syslog_queries {
# syslog user;
# severity info;
# };
# category queries { syslog_queries; };
#
# # Log general name server errors to syslog.
# channel syslog_errors {
# syslog user;
# severity error;
# };
# category default { syslog_errors; };
#
# # Don't log lame server messages.
# category lame-servers { null; };
#};

# The following zone definitions don't need any modification. The first one
# is the definition of the root name servers. The second one defines
# localhost while the third defines the reverse lookup for localhost.

zone "." in {
type hint;
file "root.hint";
};

zone "localhost" in {
type master;
file "localhost.zone";
};

zone "0.0.127.in-addr.arpa" in {
type master;
file "127.0.0.zone";
};

# Include the meta include file generated by createNamedConfInclude. This
# includes all files as configured in NAMED_CONF_INCLUDE_FILES from
# /etc/sysconfig/named

include "/etc/named.conf.include";
zone "intranet.domainnev.hu" in {
allow-transfer { any; };
file "master/intranet.domainnev.hu";
type master;
};
logging {
category queries { log_file; };
channel log_file { file "/var/lib/named/log/named.log" versions 5 size 15M; };
category default { log_file; };
};
zone "2.168.192.in-addr.arpa" in {
allow-transfer { any; };
file "master/2.168.192.in-addr.arpa";
type master;
};

# You can insert further zone records for your own domains below or create
# single files in /etc/named.d/ and add the file names to
# NAMED_CONF_INCLUDE_FILES.
# See /usr/share/doc/packages/bind/README.SUSE for more details.

még a resolv conf is fontos lehet:

### /etc/resolv.conf file autogenerated by netconfig!
#

# Before you change this file manually, consider to define the
# static DNS configuration using the following variables in the
# /etc/sysconfig/network/config file:
# NETCONFIG_DNS_STATIC_SEARCHLIST
# NETCONFIG_DNS_STATIC_SERVERS
# NETCONFIG_DNS_FORWARDER
# or disable DNS configuration updates via netconfig by setting:
# NETCONFIG_DNS_POLICY=''
#
# See also the netconfig(8) manual page and other documentation.
#
# Note: Manual change of this file disables netconfig too, but
# may get lost when this file contains comments or empty lines
# only, the netconfig settings are same with settings in this
# file and in case of a "netconfig update -f" call.
#
### Please remove (at least) this line when you modify the file!
search intranet.domainnev.hu
nameserver 127.0.0.1
nameserver 84.2.44.1
nameserver 84.2.46.1

Próbáltam körülnézni a neten, de semmi használhatót nem találtam. Tudna valaki segíteni? köszi.

[megoldva] OpenSUSE 11.2 helyreállítása

Fórumok

Sziasztok!

Rendbe kellene hoznom egy bekrepált OpenSUSE szervert.
Szoftveres RAID1 volt rajta, és kihalt az egyik HD.
A RAID-et sikerült helyreállítanom, megvan a boot partíció (mappa) is, de nem akar boot-olni, nem csinál semmit (villog a kurzor, és ennyi).
Egy OpenSUSE 13-ról boot-olva és chroot-olva a régi rendszerbe elindul a yast, ha nem értettem félre amit csinált, akkor konfigurálta a GRUB-ot, de nem akar boot-olni. A SUSE kimaradt az életemből eddig.
Ennek hétfőre mennie kell, igaz nem én vagyok akit ezért nagyon seggbe rúgnak, de nem akarom szarban hagyni az illetőt.

SLED 11 SP3 felfüggesztés és hibernálás nem működik, Gimp nem indul

Fórumok

Sziasztok!

Adott egy HP ProBook 4330s, amin gyárilag SUSE Linux Enterprise Desktop van. Tegnapelőtt megjött a Service Pack 3, felraktam, azóta a gépet nem lehet hibarnálni, ill. felfüggesztett állapotba kapcsolni, mert lefagy, képernyő elsötétül, a gép semmire nem reagál. Ugyanezen a gépen a Gimp nem indul, megjelenik a splash screen, kiírja, hogy "Adatfájlok keresése: Dokumentumok" és itt ácsorog időtlen időkig, Ez a Gimp probléma viszont már az SP2-nél is megvolt. Ezek mitől lehetnek?

bugreport 13.1 NETinstall iso

Fórumok

letölt, cd-re kiír, arról telepítés indít. partícionál egész hdd, nem kell külön home. kiválaszt xfce, indítsuk a telepítést.
ha utolsó lépés előtt még nem is, de a telepítés megkezdése után tuti hogy hiszti:
-3 GByte probléma, szerinte túl kicsi a 40-es hdd.

megismételtem, újra előjött. :/

a teljes dvd változatnál ilyen még nincs, az abból farigcsált pxe-boot install szintén nem hibázott még.

[Megoldva] openSUSE 13.1 amd64 - feltelepült, de nem indul!

Fórumok

Sziasztok!

Miután megsütöttem az alaplapom (GA-MA770-UD3) két rossz helyen lévő, figyelmen kívül hagyott távtartóval, amikor az új gépházba költöztettem, akkor előkotortam a szekrény mélyéről ezt a gépet:
ASUS A8N5X alaplap (s939)
AMD Athlon 64 3200+
896 MB DDR1 ram 266MHz-en, 256+256+256+128 felállásban. Memtesteltem egy kicsit és megy. A Windows Server 2008 R2 is működik vele, amit még a másik gép alól tettem fel. Épp azt használom ezen sorok írásához.
nVidia GeForce GT 610 1GB

Szóval a saját Ubuntu telepítésem egyszerűen nem működött ezzel a géppel, ráadásul valami módon még a / is korruptálódótt!

Kipróbáltam a SLAX-ot, a KDE-t elég gyorsnak ítéltem, így gondoltam, a legjobb KDE disztrót teszem fel, az openSUSE-t. Le is töltöttem a 13.1 -es amd64 DVD-t, fel is telepítettem, ám első bootnál ez fogadott:

http://www.kepfeltoltes.hu

Van valakinek ötlete, hogy mi lehet a probléma?

VNC bejelentkezés nem megy

Fórumok

Sziasztok!
Frissen telepített OpenSuse 13.1-en pár napig ment a bejelentkezés VNC-re.
Most nem megy, se Windows TightVNC-vel, se Linux Remina-val.
/var/log/messages fájl tartalma, miután be akarok lépni.
Multiple occurrences of section [General] in /usr/share/kde4/config/kdm/kdmrc. Consider merging them.
2013-12-06T19:53:42.912564+01:00 linux-otrs kdm_config[20921]: Multiple occurrences of section [Xdmcp] in /usr/share/kde4/config/kdm/kdmrc. Consider merging them.
2013-12-06T19:53:42.912701+01:00 linux-otrs kdm_config[20921]: Multiple occurrences of key 'Enable' in section [Xdmcp] of /usr/share/kde4/config/kdm/kdmrc
2013-12-06T19:53:42.912816+01:00 linux-otrs kdm_config[20921]: Multiple occurrences of section [X-*-Core] in /usr/share/kde4/config/kdm/kdmrc. Consider merging them.
2013-12-06T19:53:42.912933+01:00 linux-otrs kdm_config[20921]: Multiple occurrences of section [X-*-Greeter] in /usr/share/kde4/config/kdm/kdmrc. Consider merging them.
2013-12-06T19:53:42.913039+01:00 linux-otrs kdm_config[20921]: Multiple occurrences of section [X-:*-Core] in /usr/share/kde4/config/kdm/kdmrc. Consider merging them.
2013-12-06T19:53:42.913148+01:00 linux-otrs kdm_config[20921]: Multiple occurrences of section [X-:0-Core] in /usr/share/kde4/config/kdm/kdmrc. Consider merging them.
2013-12-06T19:53:43.138527+01:00 linux-otrs kdm: localhost:2[20927]: Abnormal termination of greeter for display localhost:2, code 1, signal 0
2013-12-06T19:53:43.143540+01:00 linux-otrs xinetd[629]: EXIT: vnc2 status=0 duration=1(sec)

Mi lehet a baj?

Játékok opensuse 13.1 x64 -en

Fórumok

Üdv mindenkinek, eladtam régi masinámat unokatestvéremnek, nagy gurunak érzi magát, ráadásul fejlett erkölcsi érzeke is van, ezért nála szóba sem jöhet a warez.
A gépet (CPU: Core2Quad q6700, 8GB DDR2 1066, GTX650OC) süsevel adtam át, nagyon meg is tetszett a hölgynek.
Kisebb probléma hogy a wine alatt elég kemény fps esés mutatkozik a játékok terén. Feltettem egy külön vinyóra a w8.1 ent x64 verziót azzal hasonlítottam össze.

Wow 5.4 w8.1 alatt 75-90fps átlag, wine alatt éppen megvan 30 de többször alatta mint felette.
A config.wtf módosítva: SET gxApi "opengl"

WoT alatt szintén 60% fps csökkenéssel "játszható".

A Heaven 4.0 benchmark eredménye: w8.1: DX11-606p DX9 -519p OpenGL -541p
suse 13.1: OpenGL -538p

Tehát az OpenGL teljesítmény szinte megegyező.
Hogyan lehetne rábírni a wine-t hogy nagyobb fps-el tudja futtatni a játékokat?

Csomagkészítés kérése

Fórumok

üdv.!

mivel ehhez kb annyi IQ-m van, mint a fotelom karfájának, így szeretnék megkérni valakit, aki vágja a témát, legyen olyan kedves az OpenSuse 13.1-hez farigcsáljon nekem egy OpenTTD 1.3.2 verziójú csomagot.

előre is köszönöm szépen.