Files
linux_system_tuning/profiles/development.json
mindesbunister 548dc1d0d3 Remove overlay filesystem functionality and add detection/removal capability
- Remove unused overlay filesystem configuration and references
- Remove overlayfs sections from all profile JSON files
- Remove OVERLAY_ENABLED/OVERLAY_PROTECT_CONFIGS from config
- Update documentation to focus on tmpfs optimization
- Add overlay detection and removal functionality for cleanup
- Add remove_overlays() function with safe unmounting
- Add overlay status reporting in final optimization summary
- Add test-overlay-detection.sh for testing detection logic
- Simplify codebase by removing complex unused features
- Focus on proven desktop optimizations (tmpfs, zram, kernel)
2025-09-23 12:35:45 +02:00

68 lines
1.7 KiB
JSON

{
"_comment": "Development Workstation Profile - Optimized for software development with large projects",
"profile_name": "development",
"description": "Development-focused optimization for IDEs and build tools",
"target_systems": [
"Development workstations",
"DevOps machines",
"CI/CD systems"
],
"requirements": {
"min_ram_gb": 8,
"recommended_ram_gb": 32
},
"optimizations": {
"zram": {
"enabled": true,
"size_formula": "min(ram_gb * 0.8, 16)G",
"compression_algorithm": "zstd"
},
"tmpfs": {
"build_cache": {
"enabled": true,
"size": "8G",
"paths": [
"/tmp/tmpfs-cache/build",
"/tmp/tmpfs-cache/ccache"
]
},
"ide_cache": {
"enabled": true,
"size": "4G",
"paths": [
"/tmp/tmpfs-cache/vscode",
"/tmp/tmpfs-cache/jetbrains",
"/tmp/tmpfs-cache/eclipse"
]
},
"package_cache": {
"enabled": true,
"size": "4G",
"bind_mounts": [
"/var/cache/apt",
"/var/cache/pacman/pkg",
"/root/.cache/pip"
]
},
"node_modules": {
"enabled": true,
"size": "6G",
"paths": ["/tmp/tmpfs-cache/node_modules"]
}
},
"kernel_parameters": {
"vm.swappiness": 5,
"vm.dirty_ratio": 10,
"vm.dirty_background_ratio": 5,
"vm.vfs_cache_pressure": 50,
"fs.file-max": 2097152,
"fs.inotify.max_user_watches": 524288,
"kernel.pid_max": 32768
}
},
"development_specific": {
"docker_optimization": true,
"git_optimization": true,
"compiler_cache": true
}
}