Template for brochure
- Roman Oliinyk
- Dec 11, 2023
- 2 min read
Your Company
123 Your Street
Your City, ST 12345
(123) 456 - 7890
Product Brochure
September 04, 20XX
Product Overview
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Lorem ipsum
Nam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Typi non habent claritatem insitam; est usus legentis in iis qui facit eorum claritatem.
Lorem ipsum
Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan.
Dolor sit
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
Details
If you are not the root user and do not have permission to modify system-wide directories like /usr/local/bin, you can still add the Helm executable to your $PATH by following these steps:
Create a directory in your home directory to store the Helm executable. For example:
mkdir ~/bin
Download the Helm binary file for Linux AMD64 from the official Helm GitHub repository. You can use the wget command:
wget https://get.helm.sh/helm-v3.6.3-linux-amd64.tar.gz Replace 3.6.3 with the desired version if necessary. This command will download the Helm binary file and package it in a tarball.
Extract the downloaded tarball using the tar command:
tar -zxvf helm-v3.6.3-linux-amd64.tar.gz Adjust the filename according to the version you downloaded.
Move the extracted helm binary file to the ~/bin directory:
mv linux-amd64/helm ~/bin/ This command moves the helm binary to the ~/bin directory in your home directory.
Make the helm binary file executable by changing its permissions:
chmod +x ~/bin/helm This command grants executable permissions to the helm binary.
Open your shell profile file (usually ~/.bashrc or ~/.bash_profile) using a text editor:
nano ~/.bashrc or
nano ~/.bash_profile
Add the following line at the end of the file:
export PATH="$PATH:$HOME/bin" This line appends the ~/bin directory to your $PATH.
Save the file and exit the text editor.
Reload the shell profile file to apply the changes:
source ~/.bashrc or
source ~/.bash_profile This will update the $PATH variable in your current shell session.
Now you should be able to use the Helm executable from any location on your machine. Note that these changes are specific to your user account and will not affect other users on the system. Let me know if you have any further questions!
Comments