to improve DB solid performance, solid.ini file need to edit
there are 4 parameters that can be edit to improve solid DB performance:
1. CacheSize
2. Threads
3. LogEnabled
4. ForceThreadToSystemScope
edit those for parameters accordingly:
CacheSize = 512MB
Threads = (2 * number of processor) + 1
LogEnabled = Yes
ForceThreadToSystemScope = Yes
Modifying the solid.ini File
To modify the solid.ini file, complete the following steps.
1. Stop all the processes by running the following command at a command prompt:
ovstop -c
2. Move to the directory where the solid.ini file is located:
cd $OV_DB/analysis/default
3. Create a backup copy of the solid.ini file:
cp solid.ini solid.ini.org
4. Open the solid.ini file for editing and make your changes.
5. Save your changes and close the file.
6. Start the ovdbcheck process:
ovstart -c ovdbcheck
7. Start the remaining processes:
ovstart –c
To check the discovery improvements that result from these solid configuration file changes, restart the
discovery by running the following command: etrestart.ovpl -disco
There are severals ways to mount samba share folders into OSMC. the first step is to turn on the SSH Services in your OSMC go to setting OSMC and choose services by default OSMC SSH will use osmc as its default user and osmc as its default password. second step is to share the folder(s) you want to share to osmc to do this just do a share configuration in windows, there are many links to provide this tutorial. third step is to mount the shares folder(s) to the OSMC. forth step is to make sure that the cifs-util module are loaded to the osmc fifth step is to mount them you can use the mount command or you can mapped the samba folders through fstab to do manual mount type in: mount -t cifs -o username=Administrator,password=Password // / /mnt/ or you can edit the /etc/fstab //source_ip/share_folder /target_directory cifs username=YOURUSERNAME,password=YOURPASSWORD,iocharset=utf8,file_mode=0777,dir_mode=0777 That's it but when osmc rebooted, you might want to ...
Comments