Troubleshooting the Linux Editor issues
Lists the known issues with the Linux Editor and their solutions.
Read time 2 minutesLast updated 12 days ago
This page lists the known issues for the Linux Unity Editor and provides tested solutions.
Unity Editor crashes with Pipe error ! message
Opening projects with large number of assets crashes the Editor and logs a message. The error message appears in the terminal if you opened the Editor via the terminal, otherwise it's logged in the file located in directory.
Pipe error !Editor.log~/.config/unity3dCause
The error message is logged when the project reaches the maximum number of open files limit.
Solution
Increase the maximum open file limit in the Unity Editor session in one of the following ways:
- Increasing the maximum open file limit in the current Editor session
- Increasing the maximum open file limit system wide
Increase the maximum open file limit current Editor session
If you're using a terminal to open the Editor, then you can increase the maximum open file limit in the current Editor session by following these steps:
-
In the terminal window, check the current maximum open file limit by using following command:ulimit -aThis increases the soft limit of the maximum number of open files and the value of the soft limit can't exceed the hard limit.
-
Check the hard limit to make sure you're not exceeding the hard limit by using the following command:ulimit -Hn
-
Once you know the hard limit, increase the soft limit using following command such that it doesn't exceed the hard limit:ulimit -n <desired maximum open files value>For example, to increase the soft limit to 4096, use the following command:ulimt -n 4096
-
Confirm the soft limit change by using eitheror
ulimit -acommand, and then use the same terminal to launch the Unity Editor.ulimit -Sn
Increase the maximum open file limit system wide
To increase the maximum open file limit system wide, follow these steps:
-
Locate the limits configuration file in the following location:.
/etc/security/limits.conf -
Modify the following line:[UserName] soft nofile [Desired soft open file limit]wherecan be the username of the desired user, root, or * to include all the users excluding root. You can also increase the hard limit in this file, but make sure that you don't exceed the hard limit set by the system.
[UserName]Following is an example of how thefile located inlimits.conflooks after adding the soft and hard limit values to increase the open file count./etc/security/limits.conf* soft nofile 4096* hard nofile 4096 -
Reboot the system.
-
Confirm that the values have actually changed by running the following commands.
- Soft open file limit:
ulimit -Sn- Hard open file limit:
ulimit -Hn -
Launch the Unity Editor.