У вас большие запросы!
Точнее, от вашего браузера их поступает слишком много, и сервер VK забил тревогу.
Эта страница была загружена по HTTP, вместо безопасного HTTPS, а значит телепортации обратно не будет.
Обратитесь в поддержку сервиса.
Вы отключили сохранение Cookies, а они нужны, чтобы решить проблему.
Почему-то страница не получила всех данных, а без них она не работает.
Обратитесь в поддержку сервиса.
Вы вернётесь на предыдущую страницу через 5 секунд.
Вернуться назад
linux. Как установить .run файлы
Данный материал предоставлен сайтом PacificSky.Ru исключительно в ознакомительных целях. Администрация не несет ответственности за его содержимое.
Установка файлов с расширением «.run».
Для установки данный файл необходимо сделать исполняемым.
Установить такие файлы можно следующими способами:
- Графический способ установки
Найти данный файл. Щелкнуть по нему второй кнопкой мыши и выбрать пункт «Свойства» — («Properties»).
После чего откроется меню, где можно управлять свойствами. Необходимо выбрать вкладку «Права» — («Permissions»).
И отметить галочкой пункт — «Разрешить исполнять как программу» — («Allow executing file as program»).
После проведения перечисленных манипуляций можно запускать «.run» файл и производить установку.
Запуск файла осуществляется двойным щелчком мыши. - Терминальный способ установки
Если по каким-то причинам у вас не получилось установить приложение с помощью графического способа установки или же вас этот способ вас не устраивает, то можно произвести установку из терминала (консоли).
Первоначально нужно запустить терминал (Горячие клавиши ctrl + alt + t).
Далее перейти в каталог с «.run» приложением.
В моем случае приложение лежит в следующей директории:
cd /home/мой_пользователь/Загрузки
И делаем файл исполняемым (вместо my_program указывайте название вашего приложения):
sudo chmod +x my_program.run
И выполняем запуск данного приложения:
./my_program.run
Запуск приложения может вызвать сообщение об ошибке «permission denied». Это означает, то что вам не хватает прав доступа для запуска. Для этого данную команду необходимо выполнить под sudo с правами супер пользователя. Будьте осторожны при использовании sudo и запускайте только те приложения, которым вы доверяете, так как sudo дает полные права данному приложению на исполнение.
sudo ./my_program.run
How to Execute .RUN Files in Linux
wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, volunteer authors worked to edit and improve it over time.
This article has been viewed 77,480 times.
.RUN files usually contain program data and installation instructions for Linux programs. This wikiHow teaches you how to execute .RUN files in Linux using the Ubuntu terminal. Since RUN files install software, make sure it’s legitimate and won’t harm your computer before executing it. RUN files from suspicious links can contain malware and damage your computer.
Fair Use (screenshot)
\n»>"smallUrl":"https:\>
Press Ctrl + Alt + T to open a Terminal window and navigate to the folder where your .RUN file is. You can also search for Terminal in the «dash» bar on the left side of your screen by clicking the «All Applications» icon.
Fair Use (screenshot)
\n»>"smallUrl":"https:\>
Enter » chmod +x yourfilename.run » and press ↵ Enter . This will make your file executable.
Advertisement
Fair Use (screenshot)
\n»>"smallUrl":"https:\>
- If you get a «Permission denied» error during this process, add » sudo » to the beginning of the code so it will run with the appropriate permissions. [1] X Research source
Advertisement
Expert Q&A
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Advertisement
Tips
Submit a Tip
All tip submissions are carefully reviewed before being published
Thanks for submitting a tip for review!
You Might Also Like
Install Google Chrome Using Terminal on Linux
Can Linux Run .exe Files? How to Run Windows Software on Linux
Finding Linux Files: Complete Guide to Using Find Commands
Become Root in Linux
How to Tar a Directory and Subdirectories in Linux
Take a Screenshot in Linux
Add or Change the Default Gateway in Linux
Run Files in Linux
How to Run an INSTALL.sh Script on Linux in 4 Easy Steps
How to Install and Use Wine on Linux
How to Install Software on Linux: Packages, Compiling, & More
Use Ping in Linux: Tutorial, Examples, & Interpreting Results
How to Open Linux Firewall Ports: Ubuntu, Debian, & More
How to Mount Drives on Linux: Command Line & GUI
How do I install .run files?
My PC has both Ubuntu and Windows 7 installed. I have installed all my drivers in Windows like Nvidia graphics, motherboard etc. Shall I install them in Ubuntu too? I looked on the web for my Nvidia drivers and I have found a .run file. How could I install it on my Ubuntu?
67.5k 32 32 gold badges 178 178 silver badges 269 269 bronze badges
asked Dec 24, 2010 at 17:58
kostas kostas
7 Answers 7
Occasionally, some applications and games (eg. some from the Humble Indie Bundle) have .run installers. Before installing using these, check to see if:
- it is available from the Software Centre
- it is available as a .deb file, which will open in the Software Center
You can install .run files from the graphical interface, but using a terminal is more likely to give you useful feedback. To install a .run file you need to:
- make it executable.
- execute it
This is because .run files are just executable programs that do some unknown magic to install the program. This is similar to what .exe installers do on Windows and is different to the normal methods (at best, using the Software Centre, at worst using .deb files) in which applications are installed in a standard way and can be easily removed.
Graphical Method
- Right click on the file in the file manager and click ‘Properties’. Click the ‘Permissions’ tab and tick the box that says ‘Allow executing file as program’.
- Double click the file to execute it.
If this method doesn’t work, try using the terminal method.
Terminal Method
Assume the file is called some-app.run and is in the folder /home/user/Downloads . You will need to modify these instructions to fit your situation.
- Open a terminal (Applications->Accessories->Terminal).
- enter cd /home/user/Downloads
- enter chmod +x some-app.run
- enter ./some-app.run
- if step 4 fails with a message including ‘permission denied’, try entering sudo ./some-app.run (you will need to enter your password for this).
Notes
- Sometimes you will come across .bin files. These are similar to .run files from the user’s point of view.
- The method to install .run files can be used to execute any file (as long as it has some sort of executable code in it.
- Be careful using sudo and only use it when absolutely required. Translated into English, it means ‘Run this command but allow it to do anything it wants to my computer’. This is why you are prompted for your password.