Welcome to the Linux Foundation Forum!
Startup question?
rabidvillain
Posts: 8
in Command Line
Very simple question...how do I change the startup in Lubuntu? I am using 10.04.
"Sweep The Leg!"
0
Comments
-
Are you asking how lubuntu boots up?0
-
You have to be more specific than "startup", what is it that you really want to accomplish?
There is a lot of things going on on "startup".0 -
If you want to run some application when the computer starts up, then you can edit the /etc/rc.local script which is run by the OS after all the other drivers and servers are started. It is basically the Linux version of autoexec.bat.0
-
sorry for the late response, what I meant to say, I wanted to find out how to make a program or script accessible anywhere from the o/s. I figured it out. I created a symbolic link to from program directory to /bin, then chmod +x. I was taking a intro to programming class taught in processing. After extracting the file, I was tired of navigating to the files directory just to run it. Funny thing now is I am using Puppy Linux, like it much better.0
-
rabidvillain wrote:sorry for the late response, what I meant to say, I wanted to find out how to make a program or script accessible anywhere from the o/s. I figured it out. I created a symbolic link to from program directory to /bin, then chmod +x. I was taking a intro to programming class taught in processing. After extracting the file, I was tired of navigating to the files directory just to run it. Funny thing now is I am using Puppy Linux, like it much better.[/quote
To accomplish the same task with custom scripts and applications I have added an additional entry to my PATH variable that points to my scripts directory, then placed that entry into my .bashtrc file so it is only available to the single user.
So, to have a direct references to ~/scripts I added "export PATH=$PATH:~/scripts" into ~/.bashrc0 -
mfillpot wrote:
This is what I've done as well, and it's a lot easier to maintain between reinstalls since you don't wipe out /home without backups that often... Personally, I also keep my script folder in Dropbox, so that the scripts are automatically distributed to all my Linux computers.To accomplish the same task with custom scripts and applications I have added an additional entry to my PATH variable that points to my scripts directory, then placed that entry into my .bashrc file so it is only available to the single user
By the way, if you insist on symlinking your scripts into the system path, the conventional place is /usr/local/bin/
0 -
jabirali wrote:mfillpot wrote:
This is what I've done as well, and it's a lot easier to maintain between reinstalls since you don't wipe out /home without backups that often... Personally, I also keep my script folder in Dropbox, so that the scripts are automatically distributed to all my Linux computers.To accomplish the same task with custom scripts and applications I have added an additional entry to my PATH variable that points to my scripts directory, then placed that entry into my .bashrc file so it is only available to the single user
By the way, if you insist on symlinking your scripts into the system path, the conventional place is /usr/local/bin/
I rather sync the script folder to all the computer I work on (I find dropbox to be worse than a binary driver)0 -
What mfillpot said. Create a bin directory in your home ( "mkdir ~/bin" ) and put your scripts and applications there. Placing them in /bin, or even a link to them in /bin is VERY unsafe, and can compromise your system. You have to make them available to other users, then normally the scripts/application executables/libraries are installed into /usr/local/(bin | lib).0
Categories
- All Categories
- 177 LFX Mentorship
- 177 LFX Mentorship: Linux Kernel
- 769 Linux Foundation IT Professional Programs
- 379 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 102 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 5 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 14 Cloud & Containers Training
- 1 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 3 System Administration Training
- 1 System Engineering Training
- 2 Web & Application Development Training
- 796 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 95 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 91 Storage
- 771 Linux Distributions
- 81 Debian
- 68 Fedora
- 23 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 465 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 98 Linux Security
- 78 Network Management
- 101 System Management
- 46 Web Management
- 125 Mobile Computing
- 20 Android
- 90 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 396 Off Topic
- 121 Introductions
- 31 Study Material
- 1K Programming and Development
- 310 Kernel Development
- 703 Software Development
- 1K Software
- 406 Applications
- 182 Command Line
- 5 Compiling/Installing
- 70 Games
- 318 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)