LINUX.ORG.RU

Сообщения mindsurfer

 

2 компа в локалке. ssh: No route to host

Всем привет!

2 компа соединил в локальную сеть по wi-fi ( в режиме ad-hoc ). Оба работают под Ubuntu 9.04.

Одному назначен адрес 192.168.2.1, другому 192.168.2.2 На первом крутится sshd, но при попытке доступа по ssh к нему выдается: ssh: connect to host 192.168.2.1 port 22: No route to host. Подскажите, в чем беда? ))

mindsurfer
()

Низкое разрешение Toshiba L40/Video Intel 945 GM

Всем привет!

На ноуте у меня разрешение 1280х800, хочу поставить еще больше? А то слишком все крупно на экране.

Система: Ubuntu 9.04 00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)

mindsurfer
()

Проблема с подключением 2-х компов по WiFi ( Ad-hoc )

Всем привет!

Хочу соединить 2 ноута ( оба под Ubuntu 9.04) в локальную сеть по WiFi ( точка-точка ) На одном ноуте стоит Atheros AR2425, на другом Intel ipw2200. Трудность в том что Atheros не поддерживает режим ad-hoc. Что делать подскажите?

mindsurfer
()

Проблема с подключением 2-х компов по WiFi ( Ad-hoc )

Всем привет!

Хочу соединить 2 ноута в локальную сеть по WiFi ( точка-точка )

На одном ноуте стоит Atheros AR2425, на другом Intel Трудность в том что у Atheros не поддерживает режим ad-hoc. Что делать подскажите?

mindsurfer
()

WiFi Intel ipw2200 под Ubuntu 9.04

Всем привет!

Запускаю wifi под Linux-2.6.28-13 ( Ubuntu 9.04 ).

lspci:

00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev d3)
00:1e.2 Multimedia audio controller: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03)
00:1e.3 Modem: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller (rev 03)
00:1f.0 ISA bridge: Intel Corporation 82801FBM (ICH6M) LPC Interface Bridge (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03)
02:04.0 Network controller: Intel Corporation PRO/Wireless 2200BG [Calexico2] Network Connection (rev 05)
02:06.0 CardBus bridge: Texas Instruments PCIxx21/x515 Cardbus Controller
02:06.3 Mass storage controller: Texas Instruments PCIxx21 Integrated FlashMedia Controller
02:06.4 SD Host controller: Texas Instruments PCI6411/6421/6611/6621/7411/7421/7611/7621 Secure Digital Controller
02:06.5 Communication controller: Texas Instruments PCI6411/6421/6611/6621/7411/7421/7611/7621 Smart Card Controller
10:00.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5751M Gigabit Ethernet PCI Express (rev 11)

Скачал драйвер с сайта Intel: intel_ipw2200_120

Пытаюсь скомпилировать - не получается. Причина - не подходят системные заголовки. Что делать, подскажите плиз.

mindsurfer
()

трабла с mktime

Всем привет!!

тачка: Linux 2.6.16.19-smp-MPPE #1 SMP Wed Oct 17 12:03:34 MSD 2007 i686 i686 i386 GNU/Linux

выдает ошибку при вызове mktime() Проверил - до 2057 года все ок! Что не так подскажите? Почему будущее время начиная с 2058 года не катит?

код:

#include <ctime>
#include <cstdio>
#include <cerrno>
#include <cstring>


int main()
{
    char* date = "2058-01-01 00:00:00";
    char* src_fmt = "%Y-%m-%d %H:%M:%S";
    tm time_moment;
    if( ::strptime( date, src_fmt, &time_moment ) == NULL )
    {
        printf( "Error in strptime: %s\n", strerror( errno ) );
    }

    time_t time_number;
    if( ::mktime( &time_moment ) == -1 )
    {
        printf( "Error in mktime: %s\n", strerror( errno ) );
    }
    return 0;
}

mindsurfer
()

Приложение с ncurses работает не так как ожидалось...

Привет всем!

Изучаю ncurses. Решил создать совою обертку чтобы лекго оперировать сущностями этой библиотеки используя ООП. Так вот создал я класс window и решил сделать анимацию, чтобы окошко передвигалось по верхнему краю экрана от левого края к правому, вот код класса:


class window
{

  WINDOW* m_handler;

public:

  window()
  {
     m_handler = newwin( LINES/2, COLS/2, 0, 0 );
  }

  window( int height, int width, int start_y, int start_x )
  {
     m_handler = newwin( height, width, start_y, start_x );
  }

  ~window()
  {
     wborder( m_handler, ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ');
     if( m_handler )
     {
        delwin( m_handler );
        wrefresh( m_handler );
     }
     m_handler = NULL;
  }

  void show()
  {
     if( m_handler )
     {
        box( m_handler, 0, 0 );
        wrefresh( m_handler );
     }

  }


};

void func( int i )
{
    window win;
    win.show( 10, 10, 0, i);
    
    usleep( 100000 );
}

int main()
{
   initscr();
   cbreak();

   for( int i = 0; i < COLS - 10; ++i )
   {
      func(i);
   }

   endwin();
}   


В итоге при запуске получаю Segmentation fault:

Program terminated with signal 11, Segmentation fault.
[New process 12960]
#0  0xb7cefe91 in ?? () from /lib/tls/i686/cmov/libc.so.6
(gdb) bt
#0  0xb7cefe91 in ?? () from /lib/tls/i686/cmov/libc.so.6
#1  0xb7cf1b8d in ?? () from /lib/tls/i686/cmov/libc.so.6
#2  0xb7cf39c5 in malloc () from /lib/tls/i686/cmov/libc.so.6
#3  0xb7f12075 in _nc_hash_map () from /lib/libncurses.so.5
#4  0xb7f11344 in _nc_scroll_optimize () from /lib/libncurses.so.5
#5  0xb7f26c6d in doupdate () from /lib/libncurses.so.5
#6  0xb7f1d9c3 in wrefresh () from /lib/libncurses.so.5
#7  0x08048d4f in ngui::window::~window ()
#8  0x08048ac4 in func ()
#9  0x08048b32 in main ()

Подскажите, что я делю не так ??

mindsurfer
()

Проблема с библиотекой libstdc++.so.6

привет всем!

Столкнулся с проблемой: компилирую код на машине 2.6.17.14 #1 Wed Nov 21 18:04:05 MSK 2007 i686 i686 i386 GNU/Linux с использованием библиотеки libstdc++.so.6 Затем пытаюсь запустить ее на другой 2.6.0 #18 Thu Jan 11 10:51:55 MSK 2007 i686 i686 i386 GNU/Linux

Пишу env LD_LIBRARY_PATH=<path_to_libstdc++.so.6> myprog

В ответ получаю:

error while loading shared libraries: libstdc++.so.6: cannot handle TLS data

В чем причина сбоя в загрузке библиотеки?

mindsurfer
()

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