Re: [OpenIndiana-discuss] error upgrading to hipster -- Action upgrade failed for 'etc/dfs/sharetab'

2021-03-08 Thread Geoff Nordli
Hi Tim. I saw that post (it is on the wiki) and tried to edit that file, but it doesn't seem to be editable. Not a big deal.  I thought there may be a quick fix for it. The server at some point is going to be EOL within the next year anyhow. thanks!! Geoff On 2021-03-08 12:13 p.m., Tim

Re: [OpenIndiana-discuss] error upgrading to hipster -- Action upgrade failed for 'etc/dfs/sharetab'

2021-03-08 Thread Tim Mooney via openindiana-discuss
In regard to: Re: [OpenIndiana-discuss] error upgrading to hipster --...: You are probably right, this server is on its last legs.  I was hoping there was a quick fix to get it upgraded. I did the conversion from oi151a9 to hipster on my workstation, but that was years ago. It may not even

Re: [OpenIndiana-discuss] error upgrading to hipster -- Action upgrade failed for 'etc/dfs/sharetab'

2021-03-08 Thread Aurélien Larcher
On Mon, Mar 8, 2021 at 8:38 PM Geoff Nordli wrote: > You are probably right, this server is on its last legs. I was hoping > there was a quick fix to get it upgraded. > A long long time ago Alexander posted some details on the mailing lists to circumvent this bug. > > On 2021-03-08 2:16

Re: [OpenIndiana-discuss] error upgrading to hipster -- Action upgrade failed for 'etc/dfs/sharetab'

2021-03-08 Thread Geoff Nordli
You are probably right, this server is on its last legs.  I was hoping there was a quick fix to get it upgraded. On 2021-03-08 2:16 a.m., Carl Brewer wrote: Sorry for top posting .. I gave up doing this and just built a new server, then moved everything I cared about across to it. On 8

Re: [OpenIndiana-discuss] Hipster 2020.10 text installer ISO Wow!!!!

2021-03-08 Thread Aurélien Larcher
On Fri, Mar 5, 2021 at 4:10 PM Reginald Beardsley via openindiana-discuss < openindiana-discuss@openindiana.org> wrote: > With this piece of utter nonsense I am going to depart from the > conversation in hopes that the actual subject can be addressed in a > sensible fashion at a later time. I

Re: [OpenIndiana-discuss] timeout display for input prompt

2021-03-08 Thread Thebest videos
excellent!. it works. thanks a lot On Mon, Mar 8, 2021 at 4:56 PM Richard L. Hamilton wrote: > > > > On Mar 8, 2021, at 06:11, Thebest videos > wrote: > > > > great! that works. but i have another problem. i'm using prompt in > secured > > way as "read -s -t 10" but I need to store the output

Re: [OpenIndiana-discuss] timeout display for input prompt

2021-03-08 Thread Richard L. Hamilton
> On Mar 8, 2021, at 06:11, Thebest videos wrote: > > great! that works. but i have another problem. i'm using prompt in secured > way as "read -s -t 10" but I need to store the output in one variable. as > below. but nothing is storing in $req variable > > #!/bin/csh > > set pass=`cat file

Re: [OpenIndiana-discuss] timeout display for input prompt

2021-03-08 Thread Thebest videos
great! that works. but i have another problem. i'm using prompt in secured way as "read -s -t 10" but I need to store the output in one variable. as below. but nothing is storing in $req variable #!/bin/csh set pass=`cat file | grep rootpw | grep -o '".*"' | sed 's/"//g'` if ( "$pass" ==

Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - /var/log/Xorg0.log

2021-03-08 Thread Stephan Althaus
On 03/08/21 11:49 AM, Apostolos Syropoulos via openindiana-discuss wrote: First of all I have to make a few things clear. The machine that reboots is located at a computer lab that I am using to teach Python programming to kids. I booted to single user mode and disabled lightdm and now the

Re: [OpenIndiana-discuss] Problems after updating to latest Hipster - /var/log/Xorg0.log

2021-03-08 Thread Apostolos Syropoulos via openindiana-discuss
First of all I have to make a few things clear. The machine that reboots is located at a computer lab that I am using to teach Python programming to kids. I booted to single user mode and disabled lightdm and now the system boots just fine. When I enter starx or Xorg, the screen gets black and

Re: [OpenIndiana-discuss] timeout display for input prompt

2021-03-08 Thread Richard L. Hamilton
If it has to be pure csh (without any helpers), you're probably out of luck, because csh is crippled when it comes to scripting. You could probably use a command substitution on a one-liner of your bash from the csh script: #! /bin/csh set myvar=`bash -c 'read -t 10 ;echo "${REPLY}"'` echo

Re: [OpenIndiana-discuss] error upgrading to hipster -- Action upgrade failed for 'etc/dfs/sharetab'

2021-03-08 Thread Carl Brewer
Sorry for top posting .. I gave up doing this and just built a new server, then moved everything I cared about across to it. On 8 March 2021 5:09:46 pm AEDT, Geoff Nordli wrote: >Hi. > >I am trying to upgrade the older version of OI (oi_151a9 May 2015) to >the hipster branch.   No search

[OpenIndiana-discuss] timeout display for input prompt

2021-03-08 Thread Thebest videos
hi Team, Im trying create a csh script. requirement: when i script runs it asks for user input. prompt should wait for 10secs. if not then exit the script. i have solution for bash script where i can use read -t 10 username. but i want same in csh ``` #!/bin/csh echo -n "username:" set req = $<