Skip to content

Instantly share code, notes, and snippets.

@SalahAdDin
Last active March 6, 2016 02:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SalahAdDin/d60826eccec3d9953a41 to your computer and use it in GitHub Desktop.
Save SalahAdDin/d60826eccec3d9953a41 to your computer and use it in GitHub Desktop.
Many fixes for many problemas.
When did you installed contents for MODO 902 in alternative folder, not default folder, you can do this:
cd ~/modo/
export NEXUS_CONTENT=~/<Alternative Folder>/Content/
./modo
Note: This fix couldn't fixed this problem when you create a desktop launcher, so, is better install the content in the default repository.
If you try install the Foundry crack and RLM doesn't stop, kill rlm.foundry since System's Monitors.
If you doesn't know what put in the .lic file:
1. sudo /usr/local/foundry/LicensingTools7.0/FoundryLicenseUtility -d
2. You can see in the firts lines this info: System ID, Host Name, Ethernet Address(s), Web server starting on port or Using TCP/IP port.
System ID and Ethernet Address could be the same.
3. Put the info: HOST Host Name System ID Ethernet Address PORT.
Create a Desktop Launcher in Ubuntu: http://askubuntu.com/questions/64222/how-can-i-create-launchers-on-my-desktop
1. gksudo gedit /usr/share/applications/give-any-name.desktop
2.
[Desktop Entry]
Type=Application
Terminal=false
Icon=/path/to/icon/icon.png
Name=give-name-here
Exec=/path/to/file/executable
Categories=Utility;
If you want see Categories, see here: http://standards.freedesktop.org/menu-spec/latest/apa.html
If you install clang but ``` ./GenerateProjectFiles.sh ``` show you this error:
```bash
*** This version of the engine can only be compiled by clang - refusing to register the Linux toolchain.
Generating data for project indexing... 0%
UnrealBuildTool Exception: ERROR: GetPlatformToolChain: No tool chain found for Linux
```
You can use the next command for creat a symbolic link, when x is the minor number version:
sudo ln -s /usr/bin/clang-3.x /usr/bin/clang
sudo ln -s /usr/bin/clang++-3.x /usr/bin/clang++
Problems with OpenGL:
cd /usr/lib/x86_64-linux-gnu
ls -l libGL*
sudo ln -sf ../nvidia-358/libGL.so libGL.so
sudo ln -sf ../nvidia-358/libGLESv2.so libGLESv2.so
For some reason in Ubuntu 15.10, i see that with this, python3.5 packages are installed in local folder in home folder,
so, when you try user virtualenv for example terminal says that isn't installed.
1. Ensure that virtualenv program: locate virtualenv or use find / -name virtualenv
2. Once time you have the package bin location export his path: export PATH="$PATH:$HOME/.local/bin"
For put a custom nvidia settings using bumbleblee:
1. Use the commando for init settings:``` optirun -b none nvidia-settings -c :8 ```.
2. Do your changes and try save a new custom settings file.
3. Do click in show a preview button and copy these lines (enlarge the windows for better view).
4. Go to nvidia settings file: ``` sudo gedit /etc/bumblebee/xorg.conf.nvidia ``` (Will be better do a back up first).
5. Paste here your line settings, try to merge properly. Save it.
Now, when you do optirun command again finally can you see your settings.
When you install EasyTag the probably cause an error when you want init the folder viewer: EasyTag ever open whe you do click in folder.
For solve this:
1. sudo gedit /usr/share/applications/mimeinfo.cache
2. Search Easytag in these file and the search number 11 delete easytag: inode/directory=org.gnome.Nautilus.desktop;
These should be the new line.
If you have a problem with hour gap you can do:
1. Put the corre hour in settings -> Date&Hour
2. ``` sudo hwclock -w ``` for put the correct hour in BIOS's clock.
For install language dictionaries for Kingsoft:
1. Download dictionaries and put in folder:
cd .kingsoft/office6/dicts/
wget http://wps-community.org/download/dicts/es_ES.zip
wget http://wps-community.org/download/dicts/tr_TR.zip
unzip es_ES.zip
unzip tr_TR.zip
rm -rf es_ES.zip
rm -rf tr_TR.zip
2. Load and set Default: In WPS
Tools -> Options -> Spell check -> Custom dictionaries -> ADD -> Ctrl + H .kingsoft/office6/dicts/es_ES/main.aff -> open -> Set Default
Tools -> Options -> Spell check -> Custom dictionaries -> ADD -> Ctrl + H .kingsoft/office6/dicts/tr_TR/main.aff -> open
For install gui languages for Kingsoft:
1. Compiling language:
git clone https://github.com/wps-community/wps_i18n.git
cd wps_i18n/es_ES or cd wps_i18n/es
make && make install or make && sudo make install
2. Settings language: In WPS
right top icon A -> Spanish -> Ok
Reboot WPS
To convert FLT from systemv to systemd do:
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.
.....
@SalahAdDin
Copy link
Author

Some fixes about MongoDB:
https://wiki.archlinux.org/index.php/MongoDB
For problem starting with command mongod:
https://bbs.archlinux.org/viewtopic.php?id=160776

For the problem about localization settings:

sudo nano /etc/locale.gen
(uncommend en_US line and save)
sudo locale-gen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment