LINUX.ORG.RU

Сообщения hellysmile

 

загрузочная usb flash с кучей iso

итого: пробовал syslinux/memdisk, grub2, grub4dos у всех добился одинакового результата выбранный образ копируется в память загрузка граба из исо произошла я в грабе уже от исо выбрал че хотел и запускаю, загрузка идет до стадии маунта аля /dev/sr0 , ведь его то нет

можно брать конечно аля нетиснтал\минимал образы, которые явно спросят де брать основную систему - но тогда толку от моей затеи вообще не будет

можно и конкретно поуказывть ядра с параметрами, инитрамфс к каждому возможному варианту загрузки из всех образов, не дергая загрузчик самого образа, но както не универсальное решение выйдет да и не удобное, ну и всяких солярок с бздями и виндами(тут еще же ребут будет во время установки, который наверно никак не найдет же свой образ) тоже было б круто туда накидать...

ЗЫ: покупать юсб-сидиром не хочу ЗЫ2: map --hook заданные в grub4dos - grab от исо уже ж никак не волнуют =\

 , , , ,

hellysmile
()

проблемы c opensuse

поставил вообщем http://susestudio.com/a/Nf0Wcw/hellsuse что бы потом быстро в ес2 микро затулить добавил репозиторий http://download.opensuse.org/repositories/devel:/languages:/python/openSUSE_1... дабы от туда supervisor поставить

zypper in supervisor
Loading repository data...
Reading installed packages...
Resolving package dependencies...

Problem: supervisor-3.0a12-1.2.noarch requires python-elementtree, but this requirement cannot be provided
  uninstallable providers: python-elementtree-1.2.6-29.4.i586[openSUSE_12.1_1]
 Solution 1: do not install supervisor-3.0a12-1.2.noarch
 Solution 2: break supervisor-3.0a12-1.2.noarch by ignoring some of its dependencies

Choose from above solutions by number or cancel [1/2/c] (c):
zypper in python-elementtree
Loading repository data...
Reading installed packages...
Resolving package dependencies...

Problem: python-elementtree-1.2.6-29.4.i586 requires python = 2.7, but this requirement cannot be provided
  uninstallable providers: python-2.7.2-7.1.3.i586[openSUSE_12.1_OSS]
                   python-2.7.2-7.10.1.i586[openSUSE_12.1_Updates]
 Solution 1: do not install python-elementtree-1.2.6-29.4.i586
 Solution 2: break python-elementtree-1.2.6-29.4.i586 by ignoring some of its dependencies

Choose from above solutions by number or cancel [1/2/c] (c):

установка python, python-base, python-devel не помоагет

zypper lr -p
# | Alias                              | Name                               | Enabled | Refresh | Priority
--+------------------------------------+------------------------------------+---------+---------+---------
1 | Virtualization:Cloud:EC2_12.1      | Virtualization:Cloud:EC2_12.1      | Yes     | Yes     |   99
2 | openSUSE-12.1-NonOSS-Add-on_12.1-0 | openSUSE-12.1-NonOSS-Add-on 12.1-0 | Yes     | Yes     |   99
3 | openSUSE_12.1                      | openSUSE_12.1_Database             | Yes     | Yes     |   99
4 | openSUSE_12.1_1                    | openSUSE_12.1_Python_Dev           | Yes     | Yes     |   99
5 | openSUSE_12.1_OSS                  | openSUSE_12.1_OSS                  | Yes     | Yes     |   99
6 | openSUSE_12.1_Updates              | openSUSE_12.1_Updates              | Yes     | Yes     |   99

почему python 2.7 != python-2.7.*.*.*.*

еще

 zypper in python-elementtree
Loading repository data...
Reading installed packages...
Resolving package dependencies...

Problem: python-elementtree-1.2.6-29.4.i586 requires python = 2.7, but this requirement cannot be provided
  uninstallable providers: python-2.7.2-7.1.3.i586[openSUSE_12.1_OSS]
                   python-2.7.2-7.10.1.i586[openSUSE_12.1_Updates]
 Solution 1: do not install python-elementtree-1.2.6-29.4.i586
 Solution 2: break python-elementtree-1.2.6-29.4.i586 by ignoring some of its dependencies

Choose from above solutions by number or cancel [1/2/c] (c): 2
Resolving dependencies...
Resolving package dependencies...

Problem: python-2.7.2-7.17.1.i586 obsoletes python-elementtree provided by python-elementtree-1.2.6-29.4.i586
 Solution 1: Following actions will be done:
  deinstallation of python-2.7.2-7.17.1.i586
  deinstallation of pychecker-0.8.19-12.1.noarch
 Solution 2: do not install python-elementtree-1.2.6-29.4.i586

Choose from above solutions by number or cancel [1/2/c] (c): 

 ,

hellysmile
()

поругайте iptables

iptables -F
iptables -X
iptables -P INPUT DROP
iptables -P OUTPUT DROP
iptables -P FORWARD DROP
iptables -A INPUT -p all -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -p all -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT
iptables -A INPUT ! -i lo -d 127.0.0.0/8 -j REJECT
iptables -A INPUT -p tcp --syn --dport 443 -m connlimit --connlimit-above 48 --connlimit-mask 24 -j REJECT --reject-with tcp-reset
iptables -A INPUT -p tcp --syn --dport 443 -m connlimit --connlimit-above 16 -j REJECT --reject-with tcp-reset
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
iptables -A INPUT -p tcp --syn --dport 22 -m connlimit --connlimit-above 1 -j REJECT --reject-with tcp-reset
iptables -A INPUT -p tcp --syn --dport 22 -m connlimit --connlimit-above 2 --connlimit-mask 24 -j REJECT --reject-with tcp-reset
iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -A INPUT -p tcp --syn --dport 3389 -m connlimit --connlimit-above 1 -j REJECT --reject-with tcp-reset
iptables -A INPUT -p tcp --dport 3389 -j ACCEPT
iptables -I INPUT -m conntrack --ctstate NEW,INVALID -p tcp --tcp-flags SYN,ACK SYN,ACK -j REJECT --reject-with tcp-reset
iptables -A INPUT -p udp --dport 53 -m connlimit --connlimit-above 8 -j DROP
iptables -A INPUT -p udp --dport 53 -j ACCEPT
iptables -A INPUT -p icmp --icmp-type echo-request -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -p icmp --icmp-type echo-request -j DROP
iptables -A INPUT -p tcp --syn -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -p tcp --syn -j DROP
iptables -A INPUT -p tcp -i eth2 --tcp-flags SYN,ACK,FIN,RST RST -m limit --limit 1/s -j ACCEPT
iptables -A INPUT -p tcp -i eth2 --tcp-flags SYN,ACK,FIN,RST RST -j DROP
iptables -A INPUT  -j LOG --log-prefix "iptables denied: " --log-level debug

 

hellysmile
()

debian squeezy core i3 2100

трабл в том тчо ядро видит 4 ядра

root@debian:/home/hell# cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 42
model name      : Intel(R) Core(TM) i3-2100 CPU @ 3.10GHz
stepping        : 7
microcode       : 0x23
cpu MHz         : 1600.000
cache size      : 3072 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 0
initial apicid  : 0
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 popcnt tsc_deadline_timer xsave avx lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid
bogomips        : 6217.64
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 42
model name      : Intel(R) Core(TM) i3-2100 CPU @ 3.10GHz
stepping        : 7
microcode       : 0x23
cpu MHz         : 1600.000
cache size      : 3072 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 2
initial apicid  : 2
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 popcnt tsc_deadline_timer xsave avx lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid
bogomips        : 6218.14
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 42
model name      : Intel(R) Core(TM) i3-2100 CPU @ 3.10GHz
stepping        : 7
microcode       : 0x23
cpu MHz         : 3100.000
cache size      : 3072 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 2
apicid          : 1
initial apicid  : 1
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 popcnt tsc_deadline_timer xsave avx lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid
bogomips        : 6218.14
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 42
model name      : Intel(R) Core(TM) i3-2100 CPU @ 3.10GHz
stepping        : 7
microcode       : 0x23
cpu MHz         : 1600.000
cache size      : 3072 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 2
apicid          : 3
initial apicid  : 3
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx rdtscp lm constant_tsc arch_perfmon pebs bts xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 popcnt tsc_deadline_timer xsave avx lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi flexpriority ept vpid
bogomips        : 6218.14
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

работать то работает, но мне не нравится, ибо где-то, что-то не так определилось...

тестил на linux-image-686, linux-image-686-bigmem, linux-image-686-pae из backports, шас руками собераю 3,3,4 - мб там полегчает

hellysmile
()

nvidia-settigs в консоле

кат с помощью nvidia-settings с консоли задать разрешиения для опрделённого монитора

hellysmile
()

archlinux dbus ssh consolekit

вообщем был арч на 1ом компьютере рсинкнул его на другой(тоесть на момент рсинка трабл уже был), дальше оба жили своей жизью обживались настройками и софтом => переустанавливать нет желания.

сама проблема: по ssh+x что то не так с dbus и consolekit любая софтина которая хочет /tmp/dbus-* падает , это при коннекте между этими компами.

[code] [hell]$ gedit GConf Error: Failed to contact configuration server; some possible causes are that you need to enable TCP/IP networking for ORBit, or you have stale NFS locks due to a system crash. See http://projects.gnome.org/gconf/ for information. (Details - 1: Failed to get connection to session: Error connecting: Connection refused)

[hell]$ thunar Thunar: Failed to connect to the D-BUS session bus: Failed to connect to socket /tmp/dbus-rJp2EwVBHD: Connection refused

[hell]$ systemsettings systemsettings(32287): KUniqueApplication: Cannot find the D-Bus session server: «Failed to connect to socket /tmp/dbus-rJp2EwVBHD: Connection refused»

systemsettings(32286): KUniqueApplication: Pipe closed unexpectedly [/code]

сам дбас стартуется халом, хостнеймы на машинах разные, ссш ключи перегенирированы, env | grep dbus по ссш ничего не показывает .

с любой другой ос (даже винды с пути и мингом) все отлично. с еще одного арча в обе машины коннектится норм... под рутовым пользовтелем все ок.

данная проблема возникает при запуске ссш и в гноме и в кде в логине под гдм и кдм, если просто стартикс и там коннектися то все отлично.

консолекит во всех случаях в процессах висит и в логах не ругается.

hellysmile
()

debian pptpd

debian:~# tail /var/log/daemon.log 
Sep 14 22:24:53 debian pptpd[1586]: CTRL: Sent packet to client
Sep 14 22:24:53 debian pptpd[1587]: CTRL (PPPD Launcher): program binary = /usr/sbin/pppd
Sep 14 22:24:53 debian pptpd[1587]: CTRL (PPPD Launcher): local address = 10.1.0.1
Sep 14 22:24:53 debian pptpd[1587]: CTRL (PPPD Launcher): remote address = 10.1.0.2
Sep 14 22:24:53 debian pptpd[1586]: GRE: read(fd=6,buffer=8058640,len=8196) from PTY failed: status = -1 error = Input/output error, usually caused by unexpected termination of pppd, check option syntax and pppd logs
Sep 14 22:24:53 debian pptpd[1586]: CTRL: PTY read or GRE write failed (pty,gre)=(6,7)
Sep 14 22:24:53 debian pptpd[1586]: CTRL: Reaping child PPP[1587]
Sep 14 22:24:53 debian pptpd[1586]: CTRL: Client 94.179.8.208 control connection finished
Sep 14 22:24:53 debian pptpd[1586]: CTRL: Exiting now
Sep 14 22:24:53 debian pptpd[1585]: MGR: Reaped child 1586

debian:~# cat/etc/pptpd.conf 
ppp /usr/sbin/pppd
option /etc/ppp/pptpd-options
debug
stimeout 2
#noipparam
#logwtmp
localip 10.1.0.1
remoteip 10.1.0.2-245

debian:~# cat /etc/ppp/pptpd-options 
name pptpd
auth
refuse-pap
refuse-chap
refuse-mschap
require-mschap-v2
require-mppe
require-mppe-128
nobsdcomp
nodeflate
deflate 0
noccp
lock
kdebug 1
mtu 1400
mru 1400
proxyarp
#ms-dns 10.1.1.1
lcp-echo-failure 5
lcp-echo-interval 2
logfile /var/log/pptp.log

debian:~# cat /etc/ppp/chap-secrets 
user1 pptpd 1234 *
user2 pptpd 1234 *

iptables -A INPUT -p tcp --dport 1723 -j ACCEPT
iptables -A INPUT -p 47 -j ACCEPT

zcat /proc/config.gz http://pastebin.com/ZpCFk9V3

все это на дедике у linode.org, на этом же ядре только с арчем все было ок

hellysmile
()

RSS подписка на новые темы