* [sisyphus] LinNeighborhood
@ 2003-10-02 19:55 Sergey S. Skulachenko
2003-10-02 20:09 ` Alexei V. Mezin
2003-10-18 8:54 ` [sisyphus] LinNeighborhood Sergey S. Skulachenko
0 siblings, 2 replies; 10+ messages in thread
From: Sergey S. Skulachenko @ 2003-10-02 19:55 UTC (permalink / raw)
To: sisyphus
И с samba3-client-3.0-alt41 тоже не работает. С теми же внешними
признаками: диски уделенной машины видны (в том числе те, к
которым не давался! доступ - при нормальной работе такого не
наблюдалось), но не монтируются.
Жаль, что есть дела поважней. Всё-таки это удобная программа,
когда ни от Самбы ни от Виндов почти ничего не надо.
--
С уважением,
С.С.Скулаченко
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [sisyphus] LinNeighborhood
2003-10-02 19:55 [sisyphus] LinNeighborhood Sergey S. Skulachenko
@ 2003-10-02 20:09 ` Alexei V. Mezin
2003-10-03 9:47 ` [sisyphus] Master, updates, MPlayer Led
2003-10-03 11:16 ` [sisyphus] Re: LinNeighborhood Michael Shigorin
2003-10-18 8:54 ` [sisyphus] LinNeighborhood Sergey S. Skulachenko
1 sibling, 2 replies; 10+ messages in thread
From: Alexei V. Mezin @ 2003-10-02 20:09 UTC (permalink / raw)
To: sssku, sisyphus
Sergey S. Skulachenko wrote:
>И с samba3-client-3.0-alt41 тоже не работает. С теми же внешними
>признаками: диски уделенной машины видны (в том числе те, к
>которым не давался! доступ - при нормальной работе такого не
>наблюдалось), но не монтируются.
>Жаль, что есть дела поважней. Всё-таки это удобная программа,
>когда ни от Самбы ни от Виндов почти ничего не надо.
>
>
Обещали починить тогда, когда из Сизифа окончательно уберут samba-2.x.
Пока можно приделать "костыль" к LinN в виде вот такого патча (и
выставить в настройках LinN параметр "-E" для smbclient).
--- ../src/smbbrowse.c 2002-06-09 11:58:43 +0400
+++ ../src/smbbrowse.c 2003-09-20 17:18:37 +0400
@@ -465,7 +465,7 @@
if (browsedat->childpid ==0)
{
close(browsedat->fd[0]);
- dup2(browsedat->fd[1],STDOUT_FILENO);
+ dup2(browsedat->fd[1],STDERR_FILENO);
cArg[argcount++] = "smbclient";
cArg[argcount++] = "-L";
@@ -617,7 +617,7 @@
if (browsedat->childpid == 0)
{
close(browsedat->fd[0]);
- dup2(browsedat->fd[1],STDOUT_FILENO);
+ dup2(browsedat->fd[1],STDERR_FILENO);
cArg[argcount++] = "smbclient";
cArg[argcount++] = "-L";
@@ -749,7 +749,7 @@
if (!browsedat->childpid)
{
close(browsedat->fd[0]);
- dup2(browsedat->fd[1],STDOUT_FILENO);
+ dup2(browsedat->fd[1],STDERR_FILENO);
cArg[argcount++] = "smbclient";
cArg[argcount++] = "-L";
@@ -826,7 +826,7 @@
if (!browsedat->childpid)
{
close(browsedat->fd[0]);
- dup2(browsedat->fd[1],STDOUT_FILENO);
+ dup2(browsedat->fd[1],STDERR_FILENO);
cArg[argcount++] = "nmblookup";
if ( *wins_name )
@@ -1049,7 +1049,7 @@
if (!browsedat->childpid)
{
close(browsedat->fd[0]);
- dup2(browsedat->fd[1],STDOUT_FILENO);
+ dup2(browsedat->fd[1],STDERR_FILENO);
cArg[argcount++] = "smbclient";
cArg[argcount++] = "-L";
@@ -1124,7 +1124,7 @@
{
int linec;
char *posi1,*posi2,*posi3;
- char connectstr[]="Connecting to";
+ char connectstr[]=" Connecting to";
SHARECOMMENTTYPE_STRUCT *sharecommenttype;
GSList *sharecommenttypelist;
char share_str[5];
@@ -1315,7 +1315,7 @@
if (!browsedat->childpid)
{
close(browsedat->fd[0]);
- dup2(browsedat->fd[1],STDOUT_FILENO);
+ dup2(browsedat->fd[1],STDERR_FILENO);
execvp(pref_get_smbclient_exe(),argv);
_exit(0);
}
@@ -1475,7 +1475,7 @@
if (!lookupdat->childpid)
{
close(fd[0]);
- dup2(fd[1],STDOUT_FILENO);
+ dup2(fd[1],STDERR_FILENO);
cArg[argcount++] = "nmblookup";
if ( *wins_name )
@@ -1666,7 +1666,7 @@
if (!lookupdat->childpid)
{
close(fd[0]);
- dup2(fd[1],STDOUT_FILENO);
+ dup2(fd[1],STDERR_FILENO);
cArg[argcount++] = "nmblookup";
cArg[argcount++] = "-A";
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sisyphus] Master, updates, MPlayer
2003-10-02 20:09 ` Alexei V. Mezin
@ 2003-10-03 9:47 ` Led
2003-10-03 11:16 ` [sisyphus] Re: LinNeighborhood Michael Shigorin
1 sibling, 0 replies; 10+ messages in thread
From: Led @ 2003-10-03 9:47 UTC (permalink / raw)
To: sisyphus
Планируюся ли security updates к Мастеру MPlayer'а?
А то дырявая софтина в дистрибутиве - ИМХО нездОрово...
Led.
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sisyphus] Re: LinNeighborhood
2003-10-02 20:09 ` Alexei V. Mezin
2003-10-03 9:47 ` [sisyphus] Master, updates, MPlayer Led
@ 2003-10-03 11:16 ` Michael Shigorin
2003-10-03 13:33 ` Aleksandr Blokhin
1 sibling, 1 reply; 10+ messages in thread
From: Michael Shigorin @ 2003-10-03 11:16 UTC (permalink / raw)
To: sisyphus
On Fri, Oct 03, 2003 at 12:09:46AM +0400, Alexei V. Mezin wrote:
> Обещали починить тогда, когда из Сизифа окончательно уберут samba-2.x.
> Пока можно приделать "костыль" к LinN в виде вот такого патча (и
> выставить в настройках LinN параметр "-E" для smbclient).
Could you submit bugreport for LN?
--
---- WBR, Michael Shigorin <mike@altlinux.ru>
------ Linux.Kiev http://www.linux.kiev.ua/
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [sisyphus] Re: LinNeighborhood
2003-10-03 11:16 ` [sisyphus] Re: LinNeighborhood Michael Shigorin
@ 2003-10-03 13:33 ` Aleksandr Blokhin
2003-10-04 16:46 ` Andrey Brindeew
2003-10-06 18:30 ` Michael Shigorin
0 siblings, 2 replies; 10+ messages in thread
From: Aleksandr Blokhin @ 2003-10-03 13:33 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1: Type: text/plain, Size: 572 bytes --]
On Fri, Oct 03, 2003 at 02:16:28PM +0300, Michael Shigorin wrote:
> On Fri, Oct 03, 2003 at 12:09:46AM +0400, Alexei V. Mezin wrote:
> > Обещали починить тогда, когда из Сизифа окончательно уберут samba-2.x.
> > Пока можно приделать "костыль" к LinN в виде вот такого патча (и
> > выставить в настройках LinN параметр "-E" для smbclient).
>
> Could you submit bugreport for LN?
>
Михайл!
У меня скопилась уже целая пачка багрипортов на эту тему, так что больше
не стоит.
--
Best regards
AB
--
... In nomine Altli, et Ctrli, et Spititus Deli, Reset!
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [sisyphus] Re: LinNeighborhood
2003-10-03 13:33 ` Aleksandr Blokhin
@ 2003-10-04 16:46 ` Andrey Brindeew
2003-10-06 18:30 ` Michael Shigorin
1 sibling, 0 replies; 10+ messages in thread
From: Andrey Brindeew @ 2003-10-04 16:46 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1: Type: text/plain, Size: 292 bytes --]
On Fri, Oct 03, 2003 at 04:33:41PM +0300, Aleksandr Blokhin wrote:
> У меня скопилась уже целая пачка багрипортов на эту тему, так что больше
> не стоит.
Ну так вы их отмечайте как duplicate!
--
WBR, Andrey Brindeew.
"No one person can understand Perl culture completely"
(C) Larry Wall.
[-- Attachment #2: Type: application/pgp-signature, Size: 245 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sisyphus] Re: LinNeighborhood
2003-10-03 13:33 ` Aleksandr Blokhin
2003-10-04 16:46 ` Andrey Brindeew
@ 2003-10-06 18:30 ` Michael Shigorin
2003-10-07 7:36 ` Aleksandr Blokhin
1 sibling, 1 reply; 10+ messages in thread
From: Michael Shigorin @ 2003-10-06 18:30 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1: Type: text/plain, Size: 304 bytes --]
On Fri, Oct 03, 2003 at 04:33:41PM +0300, Aleksandr Blokhin wrote:
> > Could you submit bugreport for LN?
> У меня скопилась уже целая пачка багрипортов на эту тему, так
> что больше не стоит.
Виноват :(
--
---- WBR, Michael Shigorin <mike@altlinux.ru>
------ Linux.Kiev http://www.linux.kiev.ua/
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [sisyphus] Re: LinNeighborhood
2003-10-06 18:30 ` Michael Shigorin
@ 2003-10-07 7:36 ` Aleksandr Blokhin
2003-10-07 8:10 ` Michael Shigorin
0 siblings, 1 reply; 10+ messages in thread
From: Aleksandr Blokhin @ 2003-10-07 7:36 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
On Mon, Oct 06, 2003 at 09:30:08PM +0300, Michael Shigorin wrote:
> On Fri, Oct 03, 2003 at 04:33:41PM +0300, Aleksandr Blokhin wrote:
> > > Could you submit bugreport for LN?
> > У меня скопилась уже целая пачка багрипортов на эту тему, так
> > что больше не стоит.
>
> Виноват :(
>
Ой! Ну только не расстраивайся, только не плачь!
Ну если хочешь, то запости парочку багрипортов, только не расстраивайся
:)))
--
Best regards
AB
--
... In nomine Altli, et Ctrli, et Spititus Deli, Reset!
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [sisyphus] Re: LinNeighborhood
2003-10-07 7:36 ` Aleksandr Blokhin
@ 2003-10-07 8:10 ` Michael Shigorin
0 siblings, 0 replies; 10+ messages in thread
From: Michael Shigorin @ 2003-10-07 8:10 UTC (permalink / raw)
To: sisyphus
[-- Attachment #1: Type: text/plain, Size: 460 bytes --]
On Tue, Oct 07, 2003 at 10:36:02AM +0300, Aleksandr Blokhin wrote:
> > > > Could you submit bugreport for LN?
> > > У меня скопилась уже целая пачка багрипортов на эту тему, так
> > Виноват :(
> Ой! Ну только не расстраивайся, только не плачь! Ну если
> хочешь, то запости парочку багрипортов, только не расстраивайся
> :)))
Запостил на #3040. Полегчало :-))
--
---- WBR, Michael Shigorin <mike@altlinux.ru>
------ Linux.Kiev http://www.linux.kiev.ua/
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [sisyphus] LinNeighborhood
2003-10-02 19:55 [sisyphus] LinNeighborhood Sergey S. Skulachenko
2003-10-02 20:09 ` Alexei V. Mezin
@ 2003-10-18 8:54 ` Sergey S. Skulachenko
1 sibling, 0 replies; 10+ messages in thread
From: Sergey S. Skulachenko @ 2003-10-18 8:54 UTC (permalink / raw)
To: sisyphus
On Thu, 2 Oct 2003 23:55:24 +0400
"Sergey S. Skulachenko" <sssku@online.ru> wrote:
> И с samba3-client-3.0-alt41 тоже не работает.
И с samba3-client-3.0-alt42 тоже не работает.
--
С уважением,
С.С.Скулаченко
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2003-10-18 8:54 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-02 19:55 [sisyphus] LinNeighborhood Sergey S. Skulachenko
2003-10-02 20:09 ` Alexei V. Mezin
2003-10-03 9:47 ` [sisyphus] Master, updates, MPlayer Led
2003-10-03 11:16 ` [sisyphus] Re: LinNeighborhood Michael Shigorin
2003-10-03 13:33 ` Aleksandr Blokhin
2003-10-04 16:46 ` Andrey Brindeew
2003-10-06 18:30 ` Michael Shigorin
2003-10-07 7:36 ` Aleksandr Blokhin
2003-10-07 8:10 ` Michael Shigorin
2003-10-18 8:54 ` [sisyphus] LinNeighborhood Sergey S. Skulachenko
ALT Linux Sisyphus discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
public-inbox-index sisyphus
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.sisyphus
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git