LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Cucumber Linux
User Name
Password
Cucumber Linux This forum is for the discussion of Cucumber Linux.

Notices


Reply
  Search this Thread
Old 09-01-2017, 12:45 PM   #46
akus
Member
 
Registered: May 2006
Location: Netherlands
Distribution: Slackware64
Posts: 66

Rep: Reputation: 38

Darth Vader made an excellent point about moving this thread to another forum, and he made another good point in his P.S.
I absolutely agree.
 
3 members found this post helpful.
Old 09-01-2017, 12:49 PM   #47
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Quote:
Originally Posted by Darth Vader View Post
When you seen Patrick Volkerding recommending himself as The BDFL of Slackware ?!?
Here.
 
3 members found this post helpful.
Old 09-01-2017, 12:49 PM   #48
PROBLEMCHYLD
Senior Member
 
Registered: Apr 2015
Posts: 1,201

Rep: Reputation: Disabled
https://www.linuxquestions.org/quest...ber-linux-124/
 
Old 09-01-2017, 12:56 PM   #49
Darth Vader
Senior Member
 
Registered: May 2008
Location: Romania
Distribution: DARKSTAR Linux 2008.1
Posts: 2,727

Rep: Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247Reputation: 1247
Quote:
Originally Posted by Didier Spaier View Post
Yeah, BUT as a JOKE, I suppose. On very context with (some of) his tweets:

Quote:
Millions of illegals voted for Slackware! Sad.
Quote:
To provide a proper retro experience for the modern user, Slackware 14.2 will be shipped on three dozen 64MB USB flash drives.
Quote:
Given my weight, it will take 183.26 cans of Mountain Dew to kill me.

Last edited by Darth Vader; 09-01-2017 at 01:12 PM.
 
3 members found this post helpful.
Old 09-02-2017, 03:08 AM   #50
akus
Member
 
Registered: May 2006
Location: Netherlands
Distribution: Slackware64
Posts: 66

Rep: Reputation: 38
I think that the spirit of Darth Vader's remark about BDFL is quite simple: before giving yourself (or accepting) a big title, you must actually do things that justify this title. But I see that this thread was moved into the Cucumber linux forum; I have nothing to do here anymore.
 
2 members found this post helpful.
Old 09-03-2017, 04:20 PM   #51
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Tried in VMWare Workstation

I installed Cucumber 1.0 in VMWare Workstation as a guest with Slackware64-14.2 as host.
I did a full install.
The first time I installed I chose a GPT label and I could not get Grub to boot.
The second time I chose MBR and Grub booted successfully.
Networking worked for me after following the wiki.
Some icons are missing from the menu.
All mount points such as run, sys, etc., are shown on the XFCE4 Desktop.

I'm trying to install VMWare Tools in Cucumber guest, but that isn't working for me.
In contrast to Slackware, where the VMWare Tools ISO shows up under /run/media/$USER,
under Cucumber it doesn't show at all. Perhaps this is a limitation of VMWare, but it just works under
Slackware.

It occurred to me that perhaps VMWare Tools ISO was listed a block device.
Using blkid, I found the VMWare Tools ISO under /dev/sr0.
I was then able to install VMWare Tools.

After rebooting, I was unable to get Cucumber as a guest to use all the screen space using
VMWare's menu selection of "VM" and "Fit Guest Now".

https://imgur.com/a/KutM1

In the above screenshot, you can see where I ran dmesg and there is a vmtoolsd segfault.

Last edited by chytraeus; 09-03-2017 at 04:41 PM. Reason: using blkid, I found the VMWare Tools ISO under /dev/sr0
 
Old 09-05-2017, 09:03 AM   #52
Z5T1
Cucumber Benevolent Dictator for Life
 
Registered: Aug 2017
Distribution: Cucumber Linux
Posts: 22

Rep: Reputation: 28
Hello chytraeus,

As you have figured out, Cucumber Linux doesn't handle mounts automatically.

I'm not quite sure what could be causing the problem with VMWare tools, and unfortunately I don't have any access to VMWare so I can't investigate it further. From the looks of it, it looks like there could be a dependency related issue (this is just a hunch though).

Have you considered giving open-vm-tools (https://sourceforge.net/projects/open-vm-tools/) a try?
 
Old 09-05-2017, 09:21 PM   #53
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Quote:
Originally Posted by Z5T1 View Post
Hello chytraeus,

As you have figured out, Cucumber Linux doesn't handle mounts automatically.

I'm not quite sure what could be causing the problem with VMWare tools, and unfortunately I don't have any access to VMWare so I can't investigate it further. From the looks of it, it looks like there could be a dependency related issue (this is just a hunch though).

Have you considered giving open-vm-tools (https://sourceforge.net/projects/open-vm-tools/) a try?
No, I hadn't considered open-vm-tools. I am trying to load the same kernel modules that Slackware needs when running in VMWare. These are mptbase, mptscshih, mptspi. When I do

Code:
modprobe mptbase
it seems to succeed but when I do

Code:
lsmod grep -i mptbase
mptbase is not among the loaded modules.

When I have more time I will try Cucumber in VirtualBox.
 
Old 09-05-2017, 09:36 PM   #54
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Hello,
Quote:
Originally Posted by chytraeus View Post
Code:
lsmod grep -i mptbase
mptbase is not among the loaded modules.
There is a typo either in your post or your command, that should be:
Code:
lsmod | grep -i mptbase
Also the module names are always lower case, IIRC, so just:
Code:
lsmod | grep mptbase
would give the same result.
 
Old 09-05-2017, 09:50 PM   #55
chytraeus
Member
 
Registered: Dec 2008
Distribution: slackware64 openbsd
Posts: 105

Rep: Reputation: 11
Quote:
Originally Posted by Didier Spaier View Post
Hello,
There is a typo either in your post or your command, that should be:
Code:
lsmod | grep -i mptbase
Also the module names are always lower case, IIRC, so just:
Code:
lsmod | grep mptbase
would give the same result.
Yes, I forgot the pipe "|" in my reply, but I did type it in the terminal in Cucumber.
 
Old 09-16-2017, 05:27 PM   #56
fixitmanarizona
Member
 
Registered: Aug 2017
Posts: 52

Rep: Reputation: Disabled
Pumpkin PI

Quote:
Originally Posted by jhsdcsjdcvbdj View Post
rofl, cucumber linux.

what's next, Pumpkin linux ?
It's been done:
That's EVIL!
https://null-byte.wonderhowto.com/ho...ocket-0177792/
 
Old 09-16-2017, 07:57 PM   #57
jsalpha2
LQ Newbie
 
Registered: May 2017
Posts: 8

Rep: Reputation: Disabled
Gparted please

I spent several days trying cfdisk and fdisk but could never get the partitions correct. I was using the 64bit version in VirtualBox. The live version was nice but could never get an install done. If a new ISO comes out I will try again. VBox is free so if you try it out and get it to work a step by step tutorial with pictures would be welcome.
 
Old 09-16-2017, 08:59 PM   #58
Z5T1
Cucumber Benevolent Dictator for Life
 
Registered: Aug 2017
Distribution: Cucumber Linux
Posts: 22

Rep: Reputation: 28
Quote:
Originally Posted by jsalpha2 View Post
I spent several days trying cfdisk and fdisk but could never get the partitions correct. I was using the 64bit version in VirtualBox. The live version was nice but could never get an install done. If a new ISO comes out I will try again. VBox is free so if you try it out and get it to work a step by step tutorial with pictures would be welcome.
Hi jsalpha,

I'm sorry you're having trouble installing Cucumber Linux. There is a guide explaining how to do the manual partitioning and the rest of the installation at https://z5t1.com/cucumber/wiki/install:guide. If I get a chance, I will create a guide with pictures.
 
  


Reply



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



LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Cucumber Linux

All times are GMT -5. The time now is 09:10 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration