Cruisers Forum
 


Reply
  This discussion is proudly sponsored by:
Please support our sponsors and let them know you heard about their products on Cruisers Forums. Advertise Here
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 23-05-2024, 07:11   #166
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

Never mind, I think I accomplished all the above. I intend to write a little tutorial for the missing pieces and commands I will post here.

That said it lightdm still fails and I am back to Ray.

The old file is removed and the modified file matches his instructions. I have done “sudo reboot” and a power off reboot.
hpeer is offline   Reply With Quote
Old 23-05-2024, 09:45   #167
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,766
Images: 2
Re: Recommended Cockpit Platform

Quote:
Originally Posted by hpeer View Post
Never mind, I think I accomplished all the above. I intend to write a little tutorial for the missing pieces and commands I will post here.

That said it lightdm still fails and I am back to Ray.

The old file is removed and the modified file matches his instructions. I have done “sudo reboot” and a power off reboot.

Would your writeup be appropriate for some section of the manual?
Perhaps under Supplementary Hardware? or...?
rgleason is offline   Reply With Quote
Old 23-05-2024, 10:04   #168
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

I don’t know. Maybe.

There really should be some intro to linux commands and syntax. I am having difficulty knowing what is a file vs command, basic actions, etc.

So maybe my write up would demonstrate where a stone dumb newbie will stumble? At least a small sample.

The language is, to me, a major stumbling block.

WTF is a “bash”? For example. I THINK it is a way to invoke an action but???

Someone says “remove” takes me an hour to figure out that is written as “rm”.

But keep in mind that my issues here are all Edatec monitor related. I think I see the advantage if buying a Pi5 with an integrated touch screen monitor, solves a bunch of issues. But the implementation is not smooth.

And that is a while ‘nother can of worms. Some other hardware supplier will have different mods?

Maybe a list of proven hardware and or necessary mods?

**** ton of work there to maintain that.
hpeer is offline   Reply With Quote
Old 23-05-2024, 10:54   #169
bcn
Registered User

Join Date: May 2011
Location: underway whenever possible
Boat: Rangeboat 39
Posts: 4,806
Re: Recommended Cockpit Platform

For me: not for a manual. This is a very specific issue. If somebody searches, this thread has the pointers.
bcn is offline   Reply With Quote
Old 23-05-2024, 11:00   #170
Registered User

Join Date: Mar 2011
Posts: 732
Re: Recommended Cockpit Platform

Sorry,

I just couldn't resist.

Perhaps this is what you are looking for.
stevead is offline   Reply With Quote
Old 23-05-2024, 11:26   #171
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

Well, I need a kindle book.
And Amazon next day delivery is 2 weeks for us here.

And I’ve bought 2 Raspberry Pi books already that have stuff about Python and other but not Linux.

I am having a tough time finding a Kindle Linux book.
hpeer is offline   Reply With Quote
Old 23-05-2024, 11:43   #172
Registered User
 
rgleason's Avatar

Join Date: Mar 2012
Location: Boston, MA
Boat: 1981 Bristol 32 Sloop
Posts: 17,766
Images: 2
Re: Recommended Cockpit Platform

bash started as the default linux shell program and there is a "bash " command prompt, you can run bash "scripts"
rgleason is offline   Reply With Quote
Old 23-05-2024, 13:06   #173
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

So, asking here, you have a “kernel” with the most basic instructions and just above that is a “shell” which runs scripts on the kernel?

So a “bash” command runs a script that works on the kernel to do something?

How many shells exist at one time? More than one?

In my mind “bash” is a noun, like a name. “Jeeves, bring me a G&T” of more succinctly “Bash, G&T.”
hpeer is offline   Reply With Quote
Old 23-05-2024, 14:21   #174
Registered User

Join Date: Mar 2016
Location: San Francisco
Boat: Morgan 382
Posts: 3,190
Re: Recommended Cockpit Platform

Quote:
Originally Posted by hpeer View Post
So, asking here, you have a “kernel” with the most basic instructions and just above that is a “shell” which runs scripts on the kernel?

So a “bash” command runs a script that works on the kernel to do something?

How many shells exist at one time? More than one?

In my mind “bash” is a noun, like a name. “Jeeves, bring me a G&T” of more succinctly “Bash, G&T.”
A "shell" is an interface where a human can type commands, run programs, etc. A "shell script" is a list of commands to run such that the human doesn't have to type them all, just the name of the script.

On windows, a Command Prompt is a shell, as is a PowerShell Prompt. In a command prompt window, a batch file (.bat) is a shell script, and a power shell script is a .ps1 file. So, on Windows, there are (at least) 2 types of shells that can be opened, and you can open as many of them as you need.

The same is true of Linux. Only more. There are dozens of shells to choose from on UNIX, each with a slightly different language. On UNIX, there was a shell named the Bourne shell. Since it wasn't open-source, when Linux came around an alternative was written, the Bourne again shell (bash). Bash is the default shell on Linux, but it can be changed. I used to work with an engineer who insisted on the ksh shell and all the systems he managed had ksh as the default.
__________________
-Warren
wholybee is online now   Reply With Quote
Old 23-05-2024, 22:37   #175
always in motion is the future
 
s/v Jedi's Avatar

Cruisers Forum Supporter

Join Date: Feb 2009
Location: in paradise
Boat: Sundeer 64
Posts: 19,323
Re: Recommended Cockpit Platform

Quote:
Originally Posted by wholybee View Post
A "shell" is an interface where a human can type commands, run programs, etc. A "shell script" is a list of commands to run such that the human doesn't have to type them all, just the name of the script.

On windows, a Command Prompt is a shell, as is a PowerShell Prompt. In a command prompt window, a batch file (.bat) is a shell script, and a power shell script is a .ps1 file. So, on Windows, there are (at least) 2 types of shells that can be opened, and you can open as many of them as you need.

The same is true of Linux. Only more. There are dozens of shells to choose from on UNIX, each with a slightly different language. On UNIX, there was a shell named the Bourne shell. Since it wasn't open-source, when Linux came around an alternative was written, the Bourne again shell (bash). Bash is the default shell on Linux, but it can be changed. I used to work with an engineer who insisted on the ksh shell and all the systems he managed had ksh as the default.
The original Unix shell was “sh”. I believe everyone now uses bash. What many don’t know is that the heart of MacOS is actually BSD Unix. Apple is the keeper of BSD Unix (and it’s why their OS is superior ) and as my company always used FreeBSD in the data centers, a terminal window on the Mac still feels like a familiar home
__________________
“It’s a trap!” - Admiral Ackbar.

s/v Jedi is online now   Reply With Quote
Old 24-05-2024, 08:14   #176
Registered User

Join Date: Jun 2017
Posts: 469
Re: Recommended Cockpit Platform

Quote:
Originally Posted by hpeer View Post
Well, I need a kindle book.
And Amazon next day delivery is 2 weeks for us here.

And I’ve bought 2 Raspberry Pi books already that have stuff about Python and other but not Linux.

I am having a tough time finding a Kindle Linux book.
You can just download whole offline Wikipedia for Kindle.

When you install BBN OS you can also put offline Wikipedia on it too if you have enough disk space (SSD).
mgrouch is offline   Reply With Quote
Old 24-05-2024, 10:20   #177
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

I did just find The Linux Command Line on Kindle, that appears a good start anyway.
hpeer is offline   Reply With Quote
Old 27-05-2024, 12:23   #178
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

I now have BBN up and running. I really struggle with getting the code correct, no matter how hard I try.

I am still struggling with screen orientation and the touch screen.

I go to System Tools/Screen Configuration but that does not seem to work. I have tried orientation and touchscreens together and independently.

Also looking at Budgie Control Center/Displays.
Select Single Display. But all options (e.g. Orientation) remain greyed out.

A fellow on another thread with Pi4 had some trouble missing xorg??

Do I need to annoy Ray at Edatec again?
hpeer is offline   Reply With Quote
Old 27-05-2024, 13:31   #179
Moderator
 
hpeer's Avatar

Cruisers Forum Supporter

Join Date: Dec 2008
Location: Between Caribbean and Canada
Boat: Murray 33-Chouette & Pape Steelmaid-44-Safara-both steel cutters
Posts: 8,765
Re: Recommended Cockpit Platform

Quote:
Originally Posted by rgleason View Post
Would your writeup be appropriate for some section of the manual?
Perhaps under Supplementary Hardware? or...?

Shoot me a email to Public At Hpeer with the usual suffix and I will send you what I have written to date. Word if that works.

It is a primer for a complete Linux idiot to install OCPN on a Edatec Pi5.

Surely not for everyone. But for me, with ZERO linux, this is what I struggled with. Well, that and my typing. AND the insanely tiny font on the LXTerminal. I think that had a fair bit to do with my difficulties.

I would be curious how you view it.
hpeer is offline   Reply With Quote
Old 28-05-2024, 05:05   #180
Registered User

Join Date: Jun 2017
Posts: 469
Re: Recommended Cockpit Platform

Quote:
Originally Posted by hpeer View Post
I now have BBN up and running. I really struggle with getting the code correct, no matter how hard I try.

I am still struggling with screen orientation and the touch screen.

I go to System Tools/Screen Configuration but that does not seem to work. I have tried orientation and touchscreens together and independently.

Also looking at Budgie Control Center/Displays.
Select Single Display. But all options (e.g. Orientation) remain greyed out.

A fellow on another thread with Pi4 had some trouble missing xorg??

Do I need to annoy Ray at Edatec again?
The last I’ve received from Edatech was:
“The latest update, now we have normal touch functionality”.

So you would want to hear it straight from the horse's mouth and contact Edatec support again.
mgrouch is offline   Reply With Quote
Reply

Tags
cockpit, men


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Center Cockpit vs Aft Cockpit MaDouleur Monohull Sailboats 48 12-08-2017 05:56
Centre Cockpit V Aft Cockpit Nostrodamus Monohull Sailboats 3 22-06-2012 03:22
Iron wood swim platform (what glue is recommended?) tsl Construction, Maintenance & Refit 7 25-12-2011 18:25
Center cockpit vrs aft cockpit Panamajames Monohull Sailboats 54 24-03-2009 15:00
Morgan swim platform neilj36 Auxiliary Equipment & Dinghy 3 12-08-2008 05:07

Advertise Here


All times are GMT -7. The time now is 08:49.


Google+
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Social Knowledge Networks
Powered by vBulletin® Version 3.8.8 Beta 1
Copyright ©2000 - 2024, vBulletin Solutions, Inc.

ShowCase vBulletin Plugins by Drive Thru Online, Inc.