LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-09-2014, 08:10 PM   #16
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169

Quote:
Originally Posted by metaschima View Post
If you know C, you can use gtk2 or gtk3 to make GUI programs. You can make console programs using just gcc and glibc.
I am considering using a command line compiler and make some script files to automate the assembly.

Andy
 
Old 03-09-2014, 10:09 PM   #17
metaschima
Senior Member
 
Registered: Dec 2013
Distribution: Slackware
Posts: 1,982

Rep: Reputation: 492Reputation: 492Reputation: 492Reputation: 492Reputation: 492
If you use an IDE, it usually automates the build process. However, I usually use the command line and makefiles.
 
Old 03-10-2014, 05:03 AM   #18
Doc CPU
Senior Member
 
Registered: Jun 2011
Location: Stuttgart, Germany
Distribution: Mint, Debian, Gentoo, Win 2k/XP
Posts: 1,099

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
Hi there,

Quote:
Originally Posted by Fixit7 View Post
How is sudo going to work when I am running Thunar for example ?
you start launch the entire Thunar process in sudo mode, if that is what you mean (I'm not quite sure if I understood you right this time).
You can also assign a password to the root user and then log in to the desktop as root, as I said earlier. But this is usually not recommended.

Quote:
Originally Posted by Fixit7 View Post
Quote:
They may have thought you wanted to log in to the GUI and desktop as root, which is in fact impossible with the default configuration of those distros.
The above is exactly what I want and so far only Puppy let's me.
That should make you contemplate. ;-)

Quote:
Originally Posted by Fixit7 View Post
I don't mind entering a password once for a computer session.
But everytime I want to mount something, etc is time consuming.
I see your point. I suggested you a way to achieve what you want, but nobody will really appreciate your approach of running the entire system as root.

[X] Doc CPU
 
Old 03-10-2014, 03:11 PM   #19
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
Quote:
Originally Posted by Fixit7 View Post
I appreciate your good feedback. :-)

I have used Mint, Ubuntu, OpenSuse, and Debian.

When you say "feature packed" what do you mean.

Could you provide an example of something than another distro other than Puppy can do that Puppy can't ?

I know some have LibreOffice and Gimp that are already built-in, but package manager can easily install those program.

Take care,
Andy
When it comes to software, by default you'll have a limited range of only light weight applications. Of course, you can probably install more feature-rich applications but they may not be as nicely integrated with the system. In terms of hardware, because of its small size, it can't have drivers for a wide range of devices which can potentially be a problem when installing on some hardware (or adding new hardware). Obviously, if it recognises all your hardware, it's not a problem then. I don't use Puppy so can't really talk about specifics but I don't think it is even meant to compete with major distros on a desktop. Its focus is on speed, not features.

But then again, if you're happy with it, I'm not to going to tell you not to use it. I'd encourage you, though, to try distros such us Slackware or Arch where you won't get much hand-holding / restrictions. This, obviously, requires reading and following an ample amount of documentation to use it effectively and securely.
 
Old 03-10-2014, 05:42 PM   #20
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
Thanks, I install Slackware.
It did not include a menu entry for my Puppy 5.6.0.

Do you know what I need to add to lilo.conf so Puppy shows up as a pick on bootup?

I did not know if I needed to add a new "other" entry or something else.

Puppy is on sda5.

Thanks.

I think grub is much easier to use.

Code:
append=" vt.default_utf8=0"
boot = /dev/sda

#compact        # faster, but won't work on all systems.

# Boot BMP Image.
# Bitmap in BMP format: 640x480x8
  bitmap = /boot/slack.bmp
# Menu colors (foreground, background, shadow, highlighted
# foreground, highlighted background, highlighted shadow):
  bmp-colors = 255,0,255,0,255,0
# Location of the option table: location x, location y, number of
# columns, lines per column (max 15), "spill" (this is how many
# entries must be in the first column before the next begins to
# be used.  We don't specify it here, as there's just one column.
  bmp-table = 60,6,1,16
# Timer location x, timer location y, foreground color,
# background color, shadow color.
  bmp-timer = 65,27,0,255

# Standard menu.
# Or, you can comment out the bitmap menu above and 
# use a boot message with the standard menu:
#message = /boot/boot_message.txt

# Wait until the timeout to boot (if commented out, boot the
# first entry immediately):
prompt
# Timeout before the first entry boots.
# This is given in tenths of a second, so 600 for every minute:
timeout = 600
# Override dangerous defaults that rewrite the partition table:
change-rules
  reset
# Normal VGA console
vga = normal
# Ask for video mode at boot (time out to normal in 30s)
#vga = ask
# VESA framebuffer console @ 1024x768x64k
#vga=791
# VESA framebuffer console @ 1024x768x32k
#vga=790
# VESA framebuffer console @ 1024x768x256
#vga=773
# VESA framebuffer console @ 800x600x64k
#vga=788
# VESA framebuffer console @ 800x600x32k
#vga=787
# VESA framebuffer console @ 800x600x256
#vga=771
# VESA framebuffer console @ 640x480x64k
#vga=785
# VESA framebuffer console @ 640x480x32k
#vga=784
# VESA framebuffer console @ 640x480x256
#vga=769
# End LILO global section
# Windows bootable partition config begins
other = /dev/sda1
  label = Windows XP
  table = /dev/sda
# Windows bootable partition config ends
# Linux bootable partition config begins
image = /boot/vmlinuz
  root = /dev/sda6
  label = Linux Slackware
  read-only
# Linux bootable partition config ends
 
Old 03-10-2014, 05:54 PM   #21
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
Yes, another "other" entry should do.

Once you've edited /etc/lilo.conf make sure you run the 'lilo' command (as root) which will update the bootloader.
 
Old 03-10-2014, 05:57 PM   #22
sycamorex
LQ Veteran
 
Registered: Nov 2005
Location: London
Distribution: Slackware64-current
Posts: 5,836
Blog Entries: 1

Rep: Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251Reputation: 1251
A few other things: Try to uncomment the 'compact' option from the lilo.conf file. It'll make the boot process quicker.

Have a look at a Slackware Documentation Project from my signature - you'll see a lot of info on how to configure and maintain Slackware.
 
Old 03-10-2014, 07:34 PM   #23
Fixit7
Senior Member
 
Registered: Mar 2014
Location: El Lago, Texas
Distribution: Ubuntu_Mate 16.04
Posts: 1,374

Original Poster
Rep: Reputation: 169Reputation: 169
This did not work, there was not even a menu entry for Puppy on bootup ?

image = /boot/vmlinuz
root = /dev/sda5
label = Linux Puppy
read-only
 
Old 03-10-2014, 07:55 PM   #24
astrogeek
Moderator
 
Registered: Oct 2008
Distribution: Slackware [64]-X.{0|1|2|37|-current} ::12<=X<=15, FreeBSD_12{.0|.1}
Posts: 6,264
Blog Entries: 24

Rep: Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194Reputation: 4194
Quote:
Originally Posted by Fixit7 View Post
This did not work, there was not even a menu entry for Puppy on bootup ?

image = /boot/vmlinuz
root = /dev/sda5
label = Linux Puppy
read-only
Did you run lilo again after making the change in lilo.conf?

Also, I don't think that you can have spaces in the label, try "Linux_Puppy".

Last edited by astrogeek; 03-10-2014 at 08:04 PM.
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Programming Languages: Recommendations unihiekka Programming 15 11-29-2008 11:52 PM
Joining a Linux programming project - recommendations needed. wdli Programming 7 10-22-2008 11:42 AM
recommendations of ides, text editors, programming languages conanm4 Programming 2 05-17-2008 09:44 PM
Programming Book recommendations? pdgardin Programming 7 08-01-2006 09:31 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:19 AM.

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