Build Your Own Arcade Controls Forum

Main => Raspberry Pi & Dev Board => Topic started by: Alphastacker on August 18, 2017, 07:34:41 pm

Title: RGB Commander for beginner
Post by: Alphastacker on August 18, 2017, 07:34:41 pm
I am hoping someone can help me.  I am new to raspberry pi and have no command line experience.

I am able to access my pi from putty and get the the command line but the first step in the instructions is to "Extract the archive on the Raspberry Pi."  I have downloaded the file from the website but I am not sure the next steps.  I have tried a couple of things but really have no idea what I am doing.

Anyone able to help a complete beginner?

Thanks
Title: Re: RGB Commander for beginner
Post by: barrymossel on August 20, 2017, 06:25:55 am
Extract the zip (?) on your PC/Mac/whatever. Then use something like WinSCP to connect to your RPi and upload the extracted file(s) to your Pi. Remember the folder you put it in. Navigate to that folder with Putty (cd /my/folder or something). Then proceed with the next steps listed at http://users.telenet.be/rgbcommander/ (http://users.telenet.be/rgbcommander/) (so chmod and then run the setup etc.).

At least that's what I would do after reading the instructions.
Title: Re: RGB Commander for beginner
Post by: slickam on August 20, 2017, 03:44:53 pm
You can use this command in the directory where you downloaded the file to extract it:
Code: [Select]
tar xvzf RGBcommander_0403_beta1.tar.gz
"tar" is the program you need to extract .tar.gz or .tgz files in linux. "x" is the option to extract a file, "v" means "verbose" and will print the list of files it's extracting on screen, "z" will use gzip compression (the .gz in the file name), and "f" says that the next item on the command line is the file name to work with.